diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 01a05bd..0f5a3dc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -54,7 +54,7 @@ jobs: uses: actions/upload-artifact@v4 with: # Artifact name - name: telecord-${{ matrix.arch }}-linux.build + name: yui-${{ matrix.arch }}-linux.build path: tmp/build build-windows: @@ -108,7 +108,7 @@ jobs: uses: actions/upload-artifact@v4 with: # Artifact name - name: telecord-${{ matrix.arch }}-win32.build + name: yui-${{ matrix.arch }}-win32.build path: tmp/build upload: @@ -146,6 +146,7 @@ jobs: chmod +x pyuploadtool-x86_64.AppImage ./pyuploadtool-x86_64.AppImage \ **build/*.node + **build/*.dll - name: Release uses: softprops/action-gh-release@v1 @@ -156,4 +157,5 @@ jobs: name: ${{ steps.tag.outputs.name }} tag_name: ${{ steps.tag.outputs.tag }} files: | - **build/*.node \ No newline at end of file + **build/*.node + **build/*.dll \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index a086c53..eb955a9 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "cmake.sourceDirectory": "${workspaceFolder}", - "clangd.path": "clangd-19", + "clangd.path": "clangd", "clangd.arguments": [ // 让 Clangd 生成更详细的日志 // "--log=verbose", diff --git a/CMakeLists.txt b/CMakeLists.txt index 386e3e4..9c0c26a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,8 +27,6 @@ message("LD_LIBRARY_PATH:" ${LD_LIBRARY_PATH}) find_package(Protobuf CONFIG REQUIRED) find_package(spdlog CONFIG REQUIRED) -find_package(PkgConfig REQUIRED) -pkg_check_modules(GNUTLS REQUIRED IMPORTED_TARGET gnutls) find_program(PNPM_EXECUTABLE pnpm) if(NOT PNPM_EXECUTABLE) @@ -67,7 +65,24 @@ execute_process(COMMAND OUTPUT_VARIABLE CMAKE_JS_INC OUTPUT_STRIP_TRAILING_WHITESPACE ) -# string(REPLACE ";" "\;" CMAKE_JS_INC "${CMAKE_JS_INC}") +execute_process(COMMAND + ${PNPM_EXECUTABLE} cmake-js print-cmakejs-lib --silent -l error + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} + OUTPUT_VARIABLE CMAKE_JS_LIB + OUTPUT_STRIP_TRAILING_WHITESPACE +) + +if(NOT EXISTS ${CMAKE_JS_LIB}) + execute_process(COMMAND + node tools/windows/download_lib.js + WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} + RESULT_VARIABLE ret + ) + if(ret EQUAL "1") + message( FATAL_ERROR "Bad exit status") + endif() +endif() + message("CMAKE_JS_INC:" ${CMAKE_JS_INC}) foreach(item IN LISTS CMAKE_JS_INC) message("include: ${item}") @@ -113,21 +128,6 @@ add_library(${MODULE_NAME} src/install/hook_msf.cc ${CMAKE_JS_SRC} ) -if (WIN32) - message("生成 QQ.lib") - execute_process(COMMAND - ${CMAKE_AR} /def:QQ.def /out:QQ.lib /machine:x86 ${CMAKE_STATIC_LINKER_FLAGS} - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/thirds/external - COMMAND_ERROR_IS_FATAL ANY - ) - execute_process(COMMAND - ${CMAKE_AR} /def:QQ64.def /out:QQ64.lib /machine:x64 ${CMAKE_STATIC_LINKER_FLAGS} - WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}/thirds/external - COMMAND_ERROR_IS_FATAL ANY - ) - target_link_libraries(${MODULE_NAME} ${PROJECT_SOURCE_DIR}/thirds/external/QQ.lib) - target_link_libraries(${MODULE_NAME} ${PROJECT_SOURCE_DIR}/thirds/external/QQ64.lib) -endif() if (WIN32) target_link_libraries(${MODULE_NAME} subhook) @@ -143,18 +143,11 @@ target_link_libraries(${MODULE_NAME} ${CMAKE_JS_LIB}) target_compile_definitions(${MODULE_NAME} PRIVATE $<$:NATIVE_DEBUG=1>) set_target_properties(${MODULE_NAME} PROPERTIES PREFIX "" SUFFIX ".node") -################preload############### - -add_library(preload - SHARED - src/preload.cc - ${CMAKE_JS_SRC} - ) -target_link_libraries(preload PRIVATE spdlog::spdlog) -target_link_libraries(preload PRIVATE PkgConfig::GNUTLS) -target_include_directories(preload PRIVATE ${GNUTLS_INCLUDE_DIRS}) -set_target_properties(preload PROPERTIES PREFIX "" SUFFIX ".node") - +if (WIN32) + add_subdirectory(src/qqnt) +else() + add_subdirectory(src/preload) +endif() ################test################## diff --git a/src/preload/CMakeLists.txt b/src/preload/CMakeLists.txt new file mode 100644 index 0000000..060762e --- /dev/null +++ b/src/preload/CMakeLists.txt @@ -0,0 +1,19 @@ + +################preload############### + +find_package(PkgConfig REQUIRED) +pkg_check_modules(GNUTLS REQUIRED IMPORTED_TARGET gnutls) + +add_library(preload + SHARED + ./preload.cc + ${CMAKE_JS_SRC} + ) + +target_link_libraries(preload PRIVATE spdlog::spdlog) +target_link_libraries(preload PRIVATE PkgConfig::GNUTLS) +target_include_directories(preload PRIVATE ${GNUTLS_INCLUDE_DIRS}) +# Ensure we also link with cmake-js / node libs on non-Windows +target_link_libraries(preload PRIVATE ${CMAKE_JS_LIB}) +set_target_properties(preload PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) +set_target_properties(preload PROPERTIES PREFIX "" SUFFIX ".node") diff --git a/src/preload.cc b/src/preload/preload.cc similarity index 98% rename from src/preload.cc rename to src/preload/preload.cc index eeee881..5040757 100644 --- a/src/preload.cc +++ b/src/preload/preload.cc @@ -4,19 +4,20 @@ #include #include -#if defined(__linux__) || defined(__APPLE__) extern "C" { // Keep the existing registration helper void qq_magic_napi_register(napi_module *m) { spdlog::info("call qq_magic_napi_register"); napi_module_register(m); } + +#if defined(__linux__) || defined(__APPLE__) // Ensure gnutls_xxx is linked in void * _force_gnutls_global_init __attribute__((used)) = (void *)gnutls_global_init; -} +#else #endif - +} static Napi::Object Init(Napi::Env env, Napi::Object exports) { diff --git a/src/qqnt/CMakeLists.txt b/src/qqnt/CMakeLists.txt new file mode 100644 index 0000000..9c3a2ea --- /dev/null +++ b/src/qqnt/CMakeLists.txt @@ -0,0 +1,25 @@ + +################QQNT############### + +add_library(QQNT + SHARED + ./qqnt.cc +) + +target_link_libraries(QQNT PRIVATE spdlog::spdlog) +# Also link the project's QQ64 import library which contains many Cr_z_* exports +# (generated earlier via ${CMAKE_AR}). If present, link it so QQNT resolves zlib wrappers. +target_link_libraries(QQNT PRIVATE ${CMAKE_JS_LIB}) +set(QQNT_DEF ${PROJECT_SOURCE_DIR}/src/qqnt/qqnt.def) +if(EXISTS ${QQNT_DEF}) + if(MSVC) + set_target_properties(QQNT PROPERTIES LINK_FLAGS "/DEF:${QQNT_DEF}") + else() + target_link_options(QQNT PRIVATE "-Wl,--input-def=${QQNT_DEF}") + endif() +else() + message(FATAL_ERROR "QQNT.def not found") +endif() +# set_target_properties(QQNT PROPERTIES RUNTIME_OUTPUT_DIRECTORY "D:/Program Files/Tencent/QQNT/versions/9.9.21-39038/resources/app") +set_target_properties(QQNT PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}) +set_target_properties(QQNT PROPERTIES PREFIX "" SUFFIX ".dll") diff --git a/src/qqnt/qqnt.cc b/src/qqnt/qqnt.cc new file mode 100644 index 0000000..f9c4230 --- /dev/null +++ b/src/qqnt/qqnt.cc @@ -0,0 +1,233 @@ +// Minimal QQNT DLL used to forward/export symbols. Some exports are +// implemented as local wrappers that log and then forward the call to +// QQNT_original.dll via GetProcAddress so the linker can resolve them. + +#include "node_api.h" +#include +#include + +BOOL APIENTRY DllMain(HMODULE hModule, + DWORD ul_reason_for_call, + LPVOID lpReserved) +{ + switch (ul_reason_for_call) + { + case DLL_PROCESS_ATTACH: + spdlog::info("QQNT DLL_PROCESS_ATTACH"); + break; + case DLL_THREAD_ATTACH: + case DLL_THREAD_DETACH: + case DLL_PROCESS_DETACH: + break; + } + return TRUE; +} + +// 这个函数,node没有自带 +// Wrapper for mangled C++ symbol: ?IsEnvironmentStopping@node@@YA_NPEAVIsolate@v8@@@Z +// Original signature: bool IsEnvironmentStopping(node::Isolate*) (approx) +extern "C"{ + __declspec(dllexport) int My_IsEnvironmentStopping_node(void* isolate) + { + spdlog::info("My_IsEnvironmentStopping_node called"); + return 0; + } + + __declspec(dllexport) void My_QQMain() + { + spdlog::info("My_QQMain called"); + // You can add additional logic here if needed + } + + __declspec(dllexport) void My_PerfTrace() + { + spdlog::info("My_PerfTrace called"); + // You can add additional logic here if needed + } + + __declspec(dllexport) void My_sqlite3_dbdata_init() + { + spdlog::info("My_sqlite3_dbdata_init called"); + // You can add additional logic here if needed + } + + __declspec(dllexport) void My_Cr_z_adler32() + { + spdlog::info("My_Cr_z_adler32 called"); + } + + __declspec(dllexport) void My_Cr_z_adler32_combine() + { + spdlog::info("My_Cr_z_adler32_combine called"); + } + + __declspec(dllexport) void My_Cr_z_adler32_z() + { + spdlog::info("My_Cr_z_adler32_z called"); + } + + __declspec(dllexport) void My_Cr_z_compress() + { + spdlog::info("My_Cr_z_compress called"); + } + + __declspec(dllexport) void My_Cr_z_compress2() + { + spdlog::info("My_Cr_z_compress2 called"); + } + + __declspec(dllexport) void My_Cr_z_compressBound() + { + spdlog::info("My_Cr_z_compressBound called"); + } + + __declspec(dllexport) void My_Cr_z_crc32() + { + spdlog::info("My_Cr_z_crc32 called"); + } + + __declspec(dllexport) void My_Cr_z_crc32_combine() + { + spdlog::info("My_Cr_z_crc32_combine called"); + } + + __declspec(dllexport) void My_Cr_z_crc32_combine_gen() + { + spdlog::info("My_Cr_z_crc32_combine_gen called"); + } + + __declspec(dllexport) void My_Cr_z_crc32_combine_op() + { + spdlog::info("My_Cr_z_crc32_combine_op called"); + } + + __declspec(dllexport) void My_Cr_z_crc32_z() + { + spdlog::info("My_Cr_z_crc32_z called"); + } + + __declspec(dllexport) void My_Cr_z_deflate() + { + spdlog::info("My_Cr_z_deflate called"); + } + + __declspec(dllexport) void My_Cr_z_deflateBound() + { + spdlog::info("My_Cr_z_deflateBound called"); + } + + __declspec(dllexport) void My_Cr_z_deflateCopy() + { + spdlog::info("My_Cr_z_deflateCopy called"); + } + + __declspec(dllexport) void My_Cr_z_deflateEnd() + { + spdlog::info("My_Cr_z_deflateEnd called"); + } + + __declspec(dllexport) void My_Cr_z_deflateGetDictionary() + { + spdlog::info("My_Cr_z_deflateGetDictionary called"); + } + + __declspec(dllexport) void My_Cr_z_deflateInit2_() + { + spdlog::info("My_Cr_z_deflateInit2_ called"); + } + + __declspec(dllexport) void My_Cr_z_deflateInit_() + { + spdlog::info("My_Cr_z_deflateInit_ called"); + } + + __declspec(dllexport) void My_Cr_z_deflateParams() + { + spdlog::info("My_Cr_z_deflateParams called"); + } + + __declspec(dllexport) void My_Cr_z_deflatePending() + { + spdlog::info("My_Cr_z_deflatePending called"); + } + + __declspec(dllexport) void My_Cr_z_deflatePrime() + { + spdlog::info("My_Cr_z_deflatePrime called"); + } + + __declspec(dllexport) void My_Cr_z_deflateReset() + { + spdlog::info("My_Cr_z_deflateReset called"); + } + + __declspec(dllexport) void My_Cr_z_deflateResetKeep() + { + spdlog::info("My_Cr_z_deflateResetKeep called"); + } + + __declspec(dllexport) void My_Cr_z_deflateSetDictionary() + { + spdlog::info("My_Cr_z_deflateSetDictionary called"); + } + + __declspec(dllexport) void My_Cr_z_deflateSetHeader() + { + spdlog::info("My_Cr_z_deflateSetHeader called"); + } + + __declspec(dllexport) void My_Cr_z_deflateTune() + { + spdlog::info("My_Cr_z_deflateTune called"); + } + + __declspec(dllexport) void My_Cr_z_get_crc_table() + { + spdlog::info("My_Cr_z_get_crc_table called"); + } + + __declspec(dllexport) void My_Cr_z_uncompress() + { + spdlog::info("My_Cr_z_uncompress called"); + } + + __declspec(dllexport) void My_Cr_z_uncompress2() + { + spdlog::info("My_Cr_z_uncompress2 called"); + } + + __declspec(dllexport) void My_Cr_z_zError() + { + spdlog::info("My_Cr_z_zError called"); + } + + __declspec(dllexport) void My_Cr_z_zlibCompileFlags() + { + spdlog::info("My_Cr_z_zlibCompileFlags called"); + } + + __declspec(dllexport) void My_Cr_z_zlibVersion() + { + spdlog::info("My_Cr_z_zlibVersion called"); + } + + __declspec(dllexport) void My_ExportedContentMain() + { + spdlog::info("My_ExportedContentMain called"); + } + + __declspec(dllexport) void My_GetHandleVerifier() + { + spdlog::info("My_GetHandleVerifier called"); + } + + __declspec(dllexport) void My_IsSandboxedProcess() + { + spdlog::info("My_IsSandboxedProcess called"); + } + + __declspec(dllexport) void My_NodeContextifyContextMetrics1() + { + spdlog::info("My_NodeContextifyContextMetrics1 called"); + } +} diff --git a/src/qqnt/qqnt.def b/src/qqnt/qqnt.def new file mode 100644 index 0000000..46feccf --- /dev/null +++ b/src/qqnt/qqnt.def @@ -0,0 +1,3212 @@ +; +; 理论上可以使用gendef生成后处理 +; +LIBRARY "QQNT.dll" +EXPORTS + ??$TryToCopyAndConvertArrayToCppBuffer@$0DAAAA@H@v8@@YA_NV?$Local@VArray@v8@@@0@PEAHI@Z=node.exe.??$TryToCopyAndConvertArrayToCppBuffer@$0DAAAA@H@v8@@YA_NV?$Local@VArray@v8@@@0@PEAHI@Z + ??$TryToCopyAndConvertArrayToCppBuffer@$0EAAAA@I@v8@@YA_NV?$Local@VArray@v8@@@0@PEAII@Z=node.exe.??$TryToCopyAndConvertArrayToCppBuffer@$0EAAAA@I@v8@@YA_NV?$Local@VArray@v8@@@0@PEAII@Z + ??$TryToCopyAndConvertArrayToCppBuffer@$0HAAAA@M@v8@@YA_NV?$Local@VArray@v8@@@0@PEAMI@Z=node.exe.??$TryToCopyAndConvertArrayToCppBuffer@$0HAAAA@M@v8@@YA_NV?$Local@VArray@v8@@@0@PEAMI@Z + ??$TryToCopyAndConvertArrayToCppBuffer@$0IAAAA@N@v8@@YA_NV?$Local@VArray@v8@@@0@PEANI@Z=node.exe.??$TryToCopyAndConvertArrayToCppBuffer@$0IAAAA@N@v8@@YA_NV?$Local@VArray@v8@@@0@PEANI@Z + ??$ValidateCallbackInfo@VArray@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VArray@v8@@@1@@Z=node.exe.??$ValidateCallbackInfo@VArray@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VArray@v8@@@1@@Z + ??$ValidateCallbackInfo@VBoolean@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VBoolean@v8@@@1@@Z=node.exe.??$ValidateCallbackInfo@VBoolean@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VBoolean@v8@@@1@@Z + ??$ValidateCallbackInfo@VInteger@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VInteger@v8@@@1@@Z=node.exe.??$ValidateCallbackInfo@VInteger@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VInteger@v8@@@1@@Z + ??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@VValue@v8@@@1@@Z=node.exe.??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@VValue@v8@@@1@@Z + ??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VValue@v8@@@1@@Z=node.exe.??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VValue@v8@@@1@@Z + ??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@X@1@@Z=node.exe.??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@X@1@@Z + ??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@X@1@@Z=node.exe.??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@X@1@@Z + ??0?$MemorySpan@$$CBD@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBD@v8@@QEAA@XZ + ??0?$MemorySpan@$$CBE@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBE@v8@@QEAA@XZ + ??0?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAA@XZ + ??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@$$CB_K@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@$$CB_K@v8@@QEAA@XZ + ??0?$MemorySpan@E@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@E@v8@@QEAA@XZ + ??0?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAA@XZ + ??0?$MemorySpan@_K@v8@@QEAA@XZ=node.exe.??0?$MemorySpan@_K@v8@@QEAA@XZ + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptFrame@v8@@@Z + ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptInfo@v8@@@Z + ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z=node.exe.??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + ??0ActivityControl@v8@@QEAA@AEBV01@@Z=node.exe.??0ActivityControl@v8@@QEAA@AEBV01@@Z + ??0ActivityControl@v8@@QEAA@XZ=node.exe.??0ActivityControl@v8@@QEAA@XZ + ??0AllocationProfile@v8@@QEAA@AEBV01@@Z=node.exe.??0AllocationProfile@v8@@QEAA@AEBV01@@Z + ??0AllocationProfile@v8@@QEAA@XZ=node.exe.??0AllocationProfile@v8@@QEAA@XZ + ??0Allocator@ArrayBuffer@v8@@QEAA@AEBV012@@Z=node.exe.??0Allocator@ArrayBuffer@v8@@QEAA@AEBV012@@Z + ??0Allocator@ArrayBuffer@v8@@QEAA@XZ=node.exe.??0Allocator@ArrayBuffer@v8@@QEAA@XZ + ??0AllowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@@Z=node.exe.??0AllowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@@Z + ??0ArrayBufferAllocator@node@@QEAA@$$QEAV01@@Z=node.exe.??0ArrayBufferAllocator@node@@QEAA@$$QEAV01@@Z + ??0ArrayBufferAllocator@node@@QEAA@AEBV01@@Z=node.exe.??0ArrayBufferAllocator@node@@QEAA@AEBV01@@Z + ??0ArrayBufferAllocator@node@@QEAA@XZ=node.exe.??0ArrayBufferAllocator@node@@QEAA@XZ + ??0AsyncResource@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEBDN@Z=node.exe.??0AsyncResource@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEBDN@Z + ??0BackupIncumbentScope@Context@v8@@QEAA@V?$Local@VContext@v8@@@2@@Z=node.exe.??0BackupIncumbentScope@Context@v8@@QEAA@V?$Local@VContext@v8@@@2@@Z + ??0Binary@protocol@v8_inspector@@AEAA@V?$shared_ptr@V?$vector@EV?$allocator@E@__Cr@std@@@__Cr@std@@@__Cr@std@@@Z=node.exe.??0Binary@protocol@v8_inspector@@AEAA@V?$shared_ptr@V?$vector@EV?$allocator@E@__Cr@std@@@__Cr@std@@@__Cr@std@@@Z + ??0Binary@protocol@v8_inspector@@QEAA@$$QEAV012@@Z=node.exe.??0Binary@protocol@v8_inspector@@QEAA@$$QEAV012@@Z + ??0Binary@protocol@v8_inspector@@QEAA@AEBV012@@Z=node.exe.??0Binary@protocol@v8_inspector@@QEAA@AEBV012@@Z + ??0Binary@protocol@v8_inspector@@QEAA@XZ=node.exe.??0Binary@protocol@v8_inspector@@QEAA@XZ + ??0CFunction@v8@@QEAA@PEBXPEBVCFunctionInfo@1@@Z=node.exe.??0CFunction@v8@@QEAA@PEBXPEBVCFunctionInfo@1@@Z + ??0CFunction@v8@@QEAA@XZ=node.exe.??0CFunction@v8@@QEAA@XZ + ??0CFunctionInfo@v8@@QEAA@AEBVCTypeInfo@1@IPEBV21@W4Int64Representation@01@@Z=node.exe.??0CFunctionInfo@v8@@QEAA@AEBVCTypeInfo@1@IPEBV21@W4Int64Representation@01@@Z + ??0CachedData@ScriptCompiler@v8@@QEAA@PEBEHW4BufferPolicy@012@@Z=node.exe.??0CachedData@ScriptCompiler@v8@@QEAA@PEBEHW4BufferPolicy@012@@Z + ??0CachedData@ScriptCompiler@v8@@QEAA@XZ=node.exe.??0CachedData@ScriptCompiler@v8@@QEAA@XZ + ??0CallbackScope@AsyncResource@node@@QEAA@PEAV12@@Z=node.exe.??0CallbackScope@AsyncResource@node@@QEAA@PEAV12@@Z + ??0CallbackScope@node@@QEAA@PEAVEnvironment@1@V?$Local@VObject@v8@@@v8@@Uasync_context@1@@Z=node.exe.??0CallbackScope@node@@QEAA@PEAVEnvironment@1@V?$Local@VObject@v8@@@v8@@Uasync_context@1@@Z + ??0CallbackScope@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@Uasync_context@1@@Z=node.exe.??0CallbackScope@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@Uasync_context@1@@Z + ??0Channel@V8Inspector@v8_inspector@@QEAA@AEBV012@@Z=node.exe.??0Channel@V8Inspector@v8_inspector@@QEAA@AEBV012@@Z + ??0Channel@V8Inspector@v8_inspector@@QEAA@XZ=node.exe.??0Channel@V8Inspector@v8_inspector@@QEAA@XZ + ??0CodeEventHandler@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0CodeEventHandler@v8@@QEAA@PEAVIsolate@1@@Z + ??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@PEBVEmbedderSnapshotData@1@IV?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@PEBUSnapshotConfig@1@@Z=node.exe.??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@PEBVEmbedderSnapshotData@1@IV?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@PEBUSnapshotConfig@1@@Z + ??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@V?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@@Z=node.exe.??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@V?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@@Z + ??0CompilationDependencies@compiler@internal@v8@@QEAA@$$QEAV0123@@Z=node.exe.??0CompilationDependencies@compiler@internal@v8@@QEAA@$$QEAV0123@@Z + ??0CompilationDependencies@compiler@internal@v8@@QEAA@AEBV0123@@Z=node.exe.??0CompilationDependencies@compiler@internal@v8@@QEAA@AEBV0123@@Z + ??0CompilationDependencies@compiler@internal@v8@@QEAA@PEAVJSHeapBroker@123@PEAVZone@23@@Z=node.exe.??0CompilationDependencies@compiler@internal@v8@@QEAA@PEAVJSHeapBroker@123@PEAVZone@23@@Z + ??0CompiledWasmModule@v8@@AEAA@V?$shared_ptr@VNativeModule@wasm@internal@v8@@@__Cr@std@@PEBD_K@Z=node.exe.??0CompiledWasmModule@v8@@AEAA@V?$shared_ptr@VNativeModule@wasm@internal@v8@@@__Cr@std@@PEBD_K@Z + ??0CompiledWasmModule@v8@@QEAA@$$QEAV01@@Z=node.exe.??0CompiledWasmModule@v8@@QEAA@$$QEAV01@@Z + ??0CompiledWasmModule@v8@@QEAA@AEBV01@@Z=node.exe.??0CompiledWasmModule@v8@@QEAA@AEBV01@@Z + ??0ConsumeCodeCacheTask@ScriptCompiler@v8@@AEAA@V?$unique_ptr@VBackgroundDeserializeTask@internal@v8@@U?$default_delete@VBackgroundDeserializeTask@internal@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.??0ConsumeCodeCacheTask@ScriptCompiler@v8@@AEAA@V?$unique_ptr@VBackgroundDeserializeTask@internal@v8@@U?$default_delete@VBackgroundDeserializeTask@internal@v8@@@__Cr@std@@@__Cr@std@@@Z + ??0CppHeap@v8@@AEAA@XZ=node.exe.??0CppHeap@v8@@AEAA@XZ + ??0CppHeap@v8@@QEAA@AEBV01@@Z=node.exe.??0CppHeap@v8@@QEAA@AEBV01@@Z + ??0CppHeapCreateParams@v8@@QEAA@V?$vector@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@V?$allocator@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@@23@@__Cr@std@@@Z=node.exe.??0CppHeapCreateParams@v8@@QEAA@V?$vector@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@V?$allocator@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@@23@@__Cr@std@@@Z + ??0CpuProfileDeoptInfo@v8@@QEAA@$$QEAU01@@Z=node.exe.??0CpuProfileDeoptInfo@v8@@QEAA@$$QEAU01@@Z + ??0CpuProfileDeoptInfo@v8@@QEAA@AEBU01@@Z=node.exe.??0CpuProfileDeoptInfo@v8@@QEAA@AEBU01@@Z + ??0CpuProfileDeoptInfo@v8@@QEAA@XZ=node.exe.??0CpuProfileDeoptInfo@v8@@QEAA@XZ + ??0CpuProfilingOptions@v8@@QEAA@$$QEAV01@@Z=node.exe.??0CpuProfilingOptions@v8@@QEAA@$$QEAV01@@Z + ??0CpuProfilingOptions@v8@@QEAA@W4CpuProfilingMode@1@IHV?$MaybeLocal@VContext@v8@@@1@@Z=node.exe.??0CpuProfilingOptions@v8@@QEAA@W4CpuProfilingMode@1@IHV?$MaybeLocal@VContext@v8@@@1@@Z + ??0CreateParams@Isolate@v8@@QEAA@$$QEAU012@@Z=node.exe.??0CreateParams@Isolate@v8@@QEAA@$$QEAU012@@Z + ??0CreateParams@Isolate@v8@@QEAA@AEBU012@@Z=node.exe.??0CreateParams@Isolate@v8@@QEAA@AEBU012@@Z + ??0CreateParams@Isolate@v8@@QEAA@XZ=node.exe.??0CreateParams@Isolate@v8@@QEAA@XZ + ??0CrossThreadPersistentRegion@internal@cppgc@@QEAA@AEBVFatalOutOfMemoryHandler@12@@Z=node.exe.??0CrossThreadPersistentRegion@internal@cppgc@@QEAA@AEBVFatalOutOfMemoryHandler@12@@Z + ??0DeepSerializationResult@v8_inspector@@QEAA@$$QEAU01@@Z=node.exe.??0DeepSerializationResult@v8_inspector@@QEAA@$$QEAU01@@Z + ??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@UDeepSerializedValue@v8_inspector@@U?$default_delete@UDeepSerializedValue@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z=node.exe.??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@UDeepSerializedValue@v8_inspector@@U?$default_delete@UDeepSerializedValue@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z + ??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z=node.exe.??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z + ??0DeepSerializedValue@v8_inspector@@QEAA@$$QEAU01@@Z=node.exe.??0DeepSerializedValue@v8_inspector@@QEAA@$$QEAU01@@Z + ??0DeepSerializedValue@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$MaybeLocal@VValue@v8@@@v8@@@Z=node.exe.??0DeepSerializedValue@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$MaybeLocal@VValue@v8@@@v8@@@Z + ??0Delegate@ValueDeserializer@v8@@QEAA@AEBV012@@Z=node.exe.??0Delegate@ValueDeserializer@v8@@QEAA@AEBV012@@Z + ??0Delegate@ValueDeserializer@v8@@QEAA@XZ=node.exe.??0Delegate@ValueDeserializer@v8@@QEAA@XZ + ??0Delegate@ValueSerializer@v8@@QEAA@AEBV012@@Z=node.exe.??0Delegate@ValueSerializer@v8@@QEAA@AEBV012@@Z + ??0Delegate@ValueSerializer@v8@@QEAA@XZ=node.exe.??0Delegate@ValueSerializer@v8@@QEAA@XZ + ??0DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z=node.exe.??0DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z + ??0DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@W4OnFailure@012@@Z=node.exe.??0DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@W4OnFailure@012@@Z + ??0DiscardedSamplesDelegate@v8@@QEAA@AEBV01@@Z=node.exe.??0DiscardedSamplesDelegate@v8@@QEAA@AEBV01@@Z + ??0DiscardedSamplesDelegate@v8@@QEAA@XZ=node.exe.??0DiscardedSamplesDelegate@v8@@QEAA@XZ + ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z=node.exe.??0Domain@API@Schema@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@AEBV01234@@Z=node.exe.??0Domain@API@Schema@protocol@v8_inspector@@QEAA@AEBV01234@@Z + ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@XZ=node.exe.??0Domain@API@Schema@protocol@v8_inspector@@QEAA@XZ + ??0EmbedderGraph@v8@@QEAA@AEBV01@@Z=node.exe.??0EmbedderGraph@v8@@QEAA@AEBV01@@Z + ??0EmbedderGraph@v8@@QEAA@XZ=node.exe.??0EmbedderGraph@v8@@QEAA@XZ + ??0EmbedderRootsHandler@v8@@QEAA@AEBV01@@Z=node.exe.??0EmbedderRootsHandler@v8@@QEAA@AEBV01@@Z + ??0EmbedderRootsHandler@v8@@QEAA@XZ=node.exe.??0EmbedderRootsHandler@v8@@QEAA@XZ + ??0EmbedderStateScope@v8@@QEAA@PEAVIsolate@1@V?$Local@VContext@v8@@@1@W4EmbedderStateTag@1@@Z=node.exe.??0EmbedderStateScope@v8@@QEAA@PEAVIsolate@1@V?$Local@VContext@v8@@@1@W4EmbedderStateTag@1@@Z + ??0EscapableHandleScope@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0EscapableHandleScope@v8@@QEAA@PEAVIsolate@1@@Z + ??0EscapableHandleScopeBase@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0EscapableHandleScopeBase@v8@@QEAA@PEAVIsolate@1@@Z + ??0EvaluateResult@V8InspectorSession@v8_inspector@@QEAA@XZ=node.exe.??0EvaluateResult@V8InspectorSession@v8_inspector@@QEAA@XZ + ??0Exported@protocol@v8_inspector@@QEAA@AEBV012@@Z=node.exe.??0Exported@protocol@v8_inspector@@QEAA@AEBV012@@Z + ??0Exported@protocol@v8_inspector@@QEAA@XZ=node.exe.??0Exported@protocol@v8_inspector@@QEAA@XZ + ??0Extension@v8@@QEAA@PEBD0HPEAPEBDH@Z=node.exe.??0Extension@v8@@QEAA@PEBD0HPEAPEBDH@Z + ??0ExtensionConfiguration@v8@@QEAA@HQEAPEBD@Z=node.exe.??0ExtensionConfiguration@v8@@QEAA@HQEAPEBD@Z + ??0ExtensionConfiguration@v8@@QEAA@XZ=node.exe.??0ExtensionConfiguration@v8@@QEAA@XZ + ??0ExternalOneByteStringResource@String@v8@@IEAA@XZ=node.exe.??0ExternalOneByteStringResource@String@v8@@IEAA@XZ + ??0ExternalResourceVisitor@v8@@QEAA@AEBV01@@Z=node.exe.??0ExternalResourceVisitor@v8@@QEAA@AEBV01@@Z + ??0ExternalResourceVisitor@v8@@QEAA@XZ=node.exe.??0ExternalResourceVisitor@v8@@QEAA@XZ + ??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@AEBV012@@Z=node.exe.??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@AEBV012@@Z + ??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@XZ=node.exe.??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@XZ + ??0ExternalStringResource@String@v8@@IEAA@XZ=node.exe.??0ExternalStringResource@String@v8@@IEAA@XZ + ??0ExternalStringResourceBase@String@v8@@IEAA@XZ=node.exe.??0ExternalStringResourceBase@String@v8@@IEAA@XZ + ??0GCInfoTable@internal@cppgc@@QEAA@AEAVPageAllocator@v8@@AEAVFatalOutOfMemoryHandler@12@@Z=node.exe.??0GCInfoTable@internal@cppgc@@QEAA@AEAVPageAllocator@v8@@AEAVFatalOutOfMemoryHandler@12@@Z + ??0HandleScope@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0HandleScope@v8@@QEAA@PEAVIsolate@1@@Z + ??0Heap@cppgc@@AEAA@XZ=node.exe.??0Heap@cppgc@@AEAA@XZ + ??0Heap@cppgc@@QEAA@AEBV01@@Z=node.exe.??0Heap@cppgc@@QEAA@AEBV01@@Z + ??0HeapCodeStatistics@v8@@QEAA@XZ=node.exe.??0HeapCodeStatistics@v8@@QEAA@XZ + ??0HeapObjectStatistics@v8@@QEAA@XZ=node.exe.??0HeapObjectStatistics@v8@@QEAA@XZ + ??0HeapSpaceStatistics@v8@@QEAA@XZ=node.exe.??0HeapSpaceStatistics@v8@@QEAA@XZ + ??0HeapStatistics@v8@@QEAA@XZ=node.exe.??0HeapStatistics@v8@@QEAA@XZ + ??0InitializationResult@node@@AEAA@XZ=node.exe.??0InitializationResult@node@@AEAA@XZ + ??0InitializationResult@node@@QEAA@AEBV01@@Z=node.exe.??0InitializationResult@node@@QEAA@AEBV01@@Z + ??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@AEBV012@@Z=node.exe.??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@AEBV012@@Z + ??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@XZ=node.exe.??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@XZ + ??0IsolatePlatformDelegate@node@@QEAA@$$QEAV01@@Z=node.exe.??0IsolatePlatformDelegate@node@@QEAA@$$QEAV01@@Z + ??0IsolatePlatformDelegate@node@@QEAA@AEBV01@@Z=node.exe.??0IsolatePlatformDelegate@node@@QEAA@AEBV01@@Z + ??0IsolatePlatformDelegate@node@@QEAA@XZ=node.exe.??0IsolatePlatformDelegate@node@@QEAA@XZ + ??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@$$QEAV0123@@Z=node.exe.??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@$$QEAV0123@@Z + ??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@PEAVJitPage@123@_K@Z=node.exe.??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@PEAVJitPage@123@_K@Z + ??0Location@v8@@QEAA@HH@Z=node.exe.??0Location@v8@@QEAA@HH@Z + ??0Locker@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0Locker@v8@@QEAA@PEAVIsolate@1@@Z + ??0LongTaskStats@metrics@v8@@QEAA@XZ=node.exe.??0LongTaskStats@metrics@v8@@QEAA@XZ + ??0MeasureMemoryDelegate@v8@@QEAA@AEBV01@@Z=node.exe.??0MeasureMemoryDelegate@v8@@QEAA@AEBV01@@Z + ??0MeasureMemoryDelegate@v8@@QEAA@XZ=node.exe.??0MeasureMemoryDelegate@v8@@QEAA@XZ + ??0MicrotaskQueue@v8@@AEAA@XZ=node.exe.??0MicrotaskQueue@v8@@AEAA@XZ + ??0MicrotasksScope@v8@@QEAA@PEAVIsolate@1@PEAVMicrotaskQueue@1@W4Type@01@@Z=node.exe.??0MicrotasksScope@v8@@QEAA@PEAVIsolate@1@PEAVMicrotaskQueue@1@W4Type@01@@Z + ??0MicrotasksScope@v8@@QEAA@V?$Local@VContext@v8@@@1@W4Type@01@@Z=node.exe.??0MicrotasksScope@v8@@QEAA@V?$Local@VContext@v8@@@1@W4Type@01@@Z + ??0ModuleWrap@loader@node@@AEAA@PEAVRealm@2@V?$Local@VObject@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VString@v8@@@5@1V?$Local@VValue@v8@@@5@@Z=node.exe.??0ModuleWrap@loader@node@@AEAA@PEAVRealm@2@V?$Local@VObject@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VString@v8@@@5@1V?$Local@VValue@v8@@@5@@Z + ??0MultiIsolatePlatform@node@@QEAA@AEBV01@@Z=node.exe.??0MultiIsolatePlatform@node@@QEAA@AEBV01@@Z + ??0MultiIsolatePlatform@node@@QEAA@XZ=node.exe.??0MultiIsolatePlatform@node@@QEAA@XZ + ??0NameProvider@cppgc@@QEAA@AEBV01@@Z=node.exe.??0NameProvider@cppgc@@QEAA@AEBV01@@Z + ??0NameProvider@cppgc@@QEAA@XZ=node.exe.??0NameProvider@cppgc@@QEAA@XZ + ??0NoGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z=node.exe.??0NoGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z + ??0OptimizingCompileDispatcherQueue@internal@v8@@QEAA@H@Z=node.exe.??0OptimizingCompileDispatcherQueue@internal@v8@@QEAA@H@Z + ??0OutputStream@v8@@QEAA@AEBV01@@Z=node.exe.??0OutputStream@v8@@QEAA@AEBV01@@Z + ??0OutputStream@v8@@QEAA@XZ=node.exe.??0OutputStream@v8@@QEAA@XZ + ??0OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@AEAVHeapHandle@2@W4EmbedderStackState@2@@Z=node.exe.??0OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@AEAVHeapHandle@2@W4EmbedderStackState@2@@Z + ??0PersistentHandleVisitor@v8@@QEAA@AEBV01@@Z=node.exe.??0PersistentHandleVisitor@v8@@QEAA@AEBV01@@Z + ??0PersistentHandleVisitor@v8@@QEAA@XZ=node.exe.??0PersistentHandleVisitor@v8@@QEAA@XZ + ??0PersistentRegion@internal@cppgc@@QEAA@AEBVHeapBase@12@AEBVFatalOutOfMemoryHandler@12@@Z=node.exe.??0PersistentRegion@internal@cppgc@@QEAA@AEBVHeapBase@12@AEBVFatalOutOfMemoryHandler@12@@Z + ??0PersistentRegionBase@internal@cppgc@@IEAA@AEBVFatalOutOfMemoryHandler@12@@Z=node.exe.??0PersistentRegionBase@internal@cppgc@@IEAA@AEBVFatalOutOfMemoryHandler@12@@Z + ??0PersistentRegionLock@internal@cppgc@@QEAA@XZ=node.exe.??0PersistentRegionLock@internal@cppgc@@QEAA@XZ + ??0Platform@cppgc@@QEAA@AEBV01@@Z=node.exe.??0Platform@cppgc@@QEAA@AEBV01@@Z + ??0Platform@cppgc@@QEAA@XZ=node.exe.??0Platform@cppgc@@QEAA@XZ + ??0PrefinalizerRegistration@internal@cppgc@@QEAA@PEAXP6A_NAEBVLivenessBroker@2@0@Z@Z=node.exe.??0PrefinalizerRegistration@internal@cppgc@@QEAA@PEAXP6A_NAEBVLivenessBroker@2@0@Z@Z + ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@0@Z=node.exe.??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@0@Z + ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@@Z=node.exe.??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@@Z + ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@_N@Z=node.exe.??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@_N@Z + ??0PropertyDescriptor@v8@@QEAA@XZ=node.exe.??0PropertyDescriptor@v8@@QEAA@XZ + ??0Recorder@metrics@v8@@QEAA@AEBV012@@Z=node.exe.??0Recorder@metrics@v8@@QEAA@AEBV012@@Z + ??0Recorder@metrics@v8@@QEAA@XZ=node.exe.??0Recorder@metrics@v8@@QEAA@XZ + ??0RegisterState@v8@@QEAA@AEBU01@@Z=node.exe.??0RegisterState@v8@@QEAA@AEBU01@@Z + ??0RegisterState@v8@@QEAA@XZ=node.exe.??0RegisterState@v8@@QEAA@XZ + ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z=node.exe.??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z=node.exe.??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@XZ=node.exe.??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@XZ + ??0ResourceConstraints@v8@@QEAA@XZ=node.exe.??0ResourceConstraints@v8@@QEAA@XZ + ??0RootVisitor@internal@cppgc@@QEAA@AEBV012@@Z=node.exe.??0RootVisitor@internal@cppgc@@QEAA@AEBV012@@Z + ??0RootVisitor@internal@cppgc@@QEAA@VKey@Visitor@2@@Z=node.exe.??0RootVisitor@internal@cppgc@@QEAA@VKey@Visitor@2@@Z + ??0SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAA@XZ=node.exe.??0SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAA@XZ + ??0Scope@Isolate@v8@@QEAA@PEAV12@@Z=node.exe.??0Scope@Isolate@v8@@QEAA@PEAV12@@Z + ??0ScriptOrigin@v8@@QEAA@V?$Local@VValue@v8@@@1@HH_NH0111V?$Local@VData@v8@@@1@@Z=node.exe.??0ScriptOrigin@v8@@QEAA@V?$Local@VValue@v8@@@1@HH_NH0111V?$Local@VData@v8@@@1@@Z + ??0ScriptStreamingTask@ScriptCompiler@v8@@AEAA@PEAUScriptStreamingData@internal@2@@Z=node.exe.??0ScriptStreamingTask@ScriptCompiler@v8@@AEAA@PEAUScriptStreamingData@internal@2@@Z + ??0SealHandleScope@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0SealHandleScope@v8@@QEAA@PEAVIsolate@1@@Z + ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z=node.exe.??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@AEBV01234@@Z=node.exe.??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@AEBV01234@@Z + ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@XZ=node.exe.??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@XZ + ??0SharedMemoryStatistics@v8@@QEAA@XZ=node.exe.??0SharedMemoryStatistics@v8@@QEAA@XZ + ??0SharedValueConveyor@v8@@AEAA@PEAVIsolate@1@@Z=node.exe.??0SharedValueConveyor@v8@@AEAA@PEAVIsolate@1@@Z + ??0SharedValueConveyor@v8@@QEAA@$$QEAV01@@Z=node.exe.??0SharedValueConveyor@v8@@QEAA@$$QEAV01@@Z + ??0SnapshotCreator@v8@@QEAA@AEBUCreateParams@Isolate@1@@Z=node.exe.??0SnapshotCreator@v8@@QEAA@AEBUCreateParams@Isolate@1@@Z + ??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@AEBUCreateParams@21@@Z=node.exe.??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@AEBUCreateParams@21@@Z + ??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@PEB_JPEBVStartupData@1@_N@Z=node.exe.??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@PEB_JPEBVStartupData@1@_N@Z + ??0SnapshotCreator@v8@@QEAA@PEB_JPEBVStartupData@1@@Z=node.exe.??0SnapshotCreator@v8@@QEAA@PEB_JPEBVStartupData@1@@Z + ??0SourceLocation@v8@@AEAA@PEBD0_K@Z=node.exe.??0SourceLocation@v8@@AEAA@PEBD0_K@Z + ??0SourceLocation@v8@@QEAA@XZ=node.exe.??0SourceLocation@v8@@QEAA@XZ + ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z=node.exe.??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z=node.exe.??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@XZ=node.exe.??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@XZ + ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z=node.exe.??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z=node.exe.??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@XZ=node.exe.??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@XZ + ??0StandaloneTestingHeap@testing@cppgc@@QEAA@AEAVHeapHandle@2@@Z=node.exe.??0StandaloneTestingHeap@testing@cppgc@@QEAA@AEAVHeapHandle@2@@Z + ??0StreamedSource@ScriptCompiler@v8@@QEAA@V?$unique_ptr@VExternalSourceStream@ScriptCompiler@v8@@U?$default_delete@VExternalSourceStream@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@W4Encoding@012@@Z=node.exe.??0StreamedSource@ScriptCompiler@v8@@QEAA@V?$unique_ptr@VExternalSourceStream@ScriptCompiler@v8@@U?$default_delete@VExternalSourceStream@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@W4Encoding@012@@Z + ??0String16@v8_inspector@@QEAA@PEBD@Z=node.exe.??0String16@v8_inspector@@QEAA@PEBD@Z + ??0String16@v8_inspector@@QEAA@PEB_S@Z=node.exe.??0String16@v8_inspector@@QEAA@PEB_S@Z + ??0StringBuffer@v8_inspector@@QEAA@AEBV01@@Z=node.exe.??0StringBuffer@v8_inspector@@QEAA@AEBV01@@Z + ??0StringBuffer@v8_inspector@@QEAA@XZ=node.exe.??0StringBuffer@v8_inspector@@QEAA@XZ + ??0StringView@v8_inspector@@QEAA@PEBE_K@Z=node.exe.??0StringView@v8_inspector@@QEAA@PEBE_K@Z + ??0StringView@v8_inspector@@QEAA@PEBG_K@Z=node.exe.??0StringView@v8_inspector@@QEAA@PEBG_K@Z + ??0StringView@v8_inspector@@QEAA@XZ=node.exe.??0StringView@v8_inspector@@QEAA@XZ + ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVHeap@12@@Z=node.exe.??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVHeap@12@@Z + ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@12@@Z=node.exe.??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@12@@Z + ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@2@@Z=node.exe.??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@2@@Z + ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalHeap@12@@Z=node.exe.??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalHeap@12@@Z + ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalIsolate@12@@Z=node.exe.??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalIsolate@12@@Z + ??0SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@PEAV12@PEAVMicrotaskQueue@2@@Z=node.exe.??0SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@PEAV12@PEAVMicrotaskQueue@2@@Z + ??0SuspendTagCheckingScope@base@heap@@QEAA@XZ=node.exe.??0SuspendTagCheckingScope@base@heap@@QEAA@XZ + ??0TickSample@internal@v8@@QEAA@XZ=node.exe.??0TickSample@internal@v8@@QEAA@XZ + ??0TryCatch@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0TryCatch@v8@@QEAA@PEAVIsolate@1@@Z + ??0TypecheckWitness@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0TypecheckWitness@v8@@QEAA@PEAVIsolate@1@@Z + ??0Unlocker@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0Unlocker@v8@@QEAA@PEAVIsolate@1@@Z + ??0Utf8Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@W4WriteOptions@12@@Z=node.exe.??0Utf8Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@W4WriteOptions@12@@Z + ??0V8ContextInfo@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@HVStringView@1@@Z=node.exe.??0V8ContextInfo@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@HVStringView@1@@Z + ??0V8DebuggerId@v8_inspector@@AEAA@U?$pair@_J_J@__Cr@std@@@Z=node.exe.??0V8DebuggerId@v8_inspector@@AEAA@U?$pair@_J_J@__Cr@std@@@Z + ??0V8DebuggerId@v8_inspector@@QEAA@XZ=node.exe.??0V8DebuggerId@v8_inspector@@QEAA@XZ + ??0V8Inspector@v8_inspector@@QEAA@AEBV01@@Z=node.exe.??0V8Inspector@v8_inspector@@QEAA@AEBV01@@Z + ??0V8Inspector@v8_inspector@@QEAA@XZ=node.exe.??0V8Inspector@v8_inspector@@QEAA@XZ + ??0V8InspectorClient@v8_inspector@@QEAA@AEBV01@@Z=node.exe.??0V8InspectorClient@v8_inspector@@QEAA@AEBV01@@Z + ??0V8InspectorClient@v8_inspector@@QEAA@XZ=node.exe.??0V8InspectorClient@v8_inspector@@QEAA@XZ + ??0V8InspectorSession@v8_inspector@@QEAA@AEBV01@@Z=node.exe.??0V8InspectorSession@v8_inspector@@QEAA@AEBV01@@Z + ??0V8InspectorSession@v8_inspector@@QEAA@XZ=node.exe.??0V8InspectorSession@v8_inspector@@QEAA@XZ + ??0V8SerializationDuplicateTracker@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@@Z=node.exe.??0V8SerializationDuplicateTracker@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@@Z + ??0V8StackFrame@v8_inspector@@QEAA@XZ=node.exe.??0V8StackFrame@v8_inspector@@QEAA@XZ + ??0V8StackTrace@v8_inspector@@QEAA@AEBV01@@Z=node.exe.??0V8StackTrace@v8_inspector@@QEAA@AEBV01@@Z + ??0V8StackTrace@v8_inspector@@QEAA@XZ=node.exe.??0V8StackTrace@v8_inspector@@QEAA@XZ + ??0V8StackTraceId@v8_inspector@@QEAA@VStringView@1@@Z=node.exe.??0V8StackTraceId@v8_inspector@@QEAA@VStringView@1@@Z + ??0V8StackTraceId@v8_inspector@@QEAA@XZ=node.exe.??0V8StackTraceId@v8_inspector@@QEAA@XZ + ??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@@Z=node.exe.??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@@Z + ??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@_N@Z=node.exe.??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@_N@Z + ??0Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z=node.exe.??0Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + ??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_K@Z=node.exe.??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_K@Z + ??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_KPEAVDelegate@01@@Z=node.exe.??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_KPEAVDelegate@01@@Z + ??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@@Z=node.exe.??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@@Z + ??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@PEAVDelegate@01@@Z=node.exe.??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@PEAVDelegate@01@@Z + ??0ValueView@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.??0ValueView@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ??0Visitor@cppgc@@QEAA@AEBV01@@Z=node.exe.??0Visitor@cppgc@@QEAA@AEBV01@@Z + ??0Visitor@cppgc@@QEAA@VKey@01@@Z=node.exe.??0Visitor@cppgc@@QEAA@VKey@01@@Z + ??0WasmStreaming@v8@@QEAA@V?$unique_ptr@VWasmStreamingImpl@WasmStreaming@v8@@U?$default_delete@VWasmStreamingImpl@WasmStreaming@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.??0WasmStreaming@v8@@QEAA@V?$unique_ptr@VWasmStreamingImpl@WasmStreaming@v8@@U?$default_delete@VWasmStreamingImpl@WasmStreaming@v8@@@__Cr@std@@@__Cr@std@@@Z + ??1?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ=node.exe.??1?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + ??1?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ=node.exe.??1?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + ??1ActivityControl@v8@@UEAA@XZ=node.exe.??1ActivityControl@v8@@UEAA@XZ + ??1AllocationProfile@v8@@UEAA@XZ=node.exe.??1AllocationProfile@v8@@UEAA@XZ + ??1Allocator@ArrayBuffer@v8@@UEAA@XZ=node.exe.??1Allocator@ArrayBuffer@v8@@UEAA@XZ + ??1AllowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ=node.exe.??1AllowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ + ??1ArrayBufferAllocator@node@@UEAA@XZ=node.exe.??1ArrayBufferAllocator@node@@UEAA@XZ + ??1AsyncResource@node@@UEAA@XZ=node.exe.??1AsyncResource@node@@UEAA@XZ + ??1BackingStore@v8@@QEAA@XZ=node.exe.??1BackingStore@v8@@QEAA@XZ + ??1BackupIncumbentScope@Context@v8@@QEAA@XZ=node.exe.??1BackupIncumbentScope@Context@v8@@QEAA@XZ + ??1Binary@protocol@v8_inspector@@QEAA@XZ=node.exe.??1Binary@protocol@v8_inspector@@QEAA@XZ + ??1CachedData@ScriptCompiler@v8@@QEAA@XZ=node.exe.??1CachedData@ScriptCompiler@v8@@QEAA@XZ + ??1CallbackScope@AsyncResource@node@@QEAA@XZ=node.exe.??1CallbackScope@AsyncResource@node@@QEAA@XZ + ??1CallbackScope@node@@QEAA@XZ=node.exe.??1CallbackScope@node@@QEAA@XZ + ??1Channel@V8Inspector@v8_inspector@@UEAA@XZ=node.exe.??1Channel@V8Inspector@v8_inspector@@UEAA@XZ + ??1CodeEventHandler@v8@@UEAA@XZ=node.exe.??1CodeEventHandler@v8@@UEAA@XZ + ??1CommonEnvironmentSetup@node@@QEAA@XZ=node.exe.??1CommonEnvironmentSetup@node@@QEAA@XZ + ??1CompilationDependencies@compiler@internal@v8@@QEAA@XZ=node.exe.??1CompilationDependencies@compiler@internal@v8@@QEAA@XZ + ??1CompiledWasmModule@v8@@QEAA@XZ=node.exe.??1CompiledWasmModule@v8@@QEAA@XZ + ??1ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAA@XZ=node.exe.??1ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAA@XZ + ??1CppHeap@v8@@UEAA@XZ=node.exe.??1CppHeap@v8@@UEAA@XZ + ??1CppHeapCreateParams@v8@@QEAA@XZ=node.exe.??1CppHeapCreateParams@v8@@QEAA@XZ + ??1CpuProfileDeoptInfo@v8@@QEAA@XZ=node.exe.??1CpuProfileDeoptInfo@v8@@QEAA@XZ + ??1CpuProfilingOptions@v8@@QEAA@XZ=node.exe.??1CpuProfilingOptions@v8@@QEAA@XZ + ??1CreateParams@Isolate@v8@@QEAA@XZ=node.exe.??1CreateParams@Isolate@v8@@QEAA@XZ + ??1CrossThreadPersistentRegion@internal@cppgc@@QEAA@XZ=node.exe.??1CrossThreadPersistentRegion@internal@cppgc@@QEAA@XZ + ??1DeepSerializationResult@v8_inspector@@QEAA@XZ=node.exe.??1DeepSerializationResult@v8_inspector@@QEAA@XZ + ??1DeepSerializedValue@v8_inspector@@QEAA@XZ=node.exe.??1DeepSerializedValue@v8_inspector@@QEAA@XZ + ??1Delegate@ValueDeserializer@v8@@UEAA@XZ=node.exe.??1Delegate@ValueDeserializer@v8@@UEAA@XZ + ??1Delegate@ValueSerializer@v8@@UEAA@XZ=node.exe.??1Delegate@ValueSerializer@v8@@UEAA@XZ + ??1DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@XZ=node.exe.??1DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@XZ + ??1DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ=node.exe.??1DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ + ??1DiscardedSamplesDelegate@v8@@UEAA@XZ=node.exe.??1DiscardedSamplesDelegate@v8@@UEAA@XZ + ??1Domain@API@Schema@protocol@v8_inspector@@UEAA@XZ=node.exe.??1Domain@API@Schema@protocol@v8_inspector@@UEAA@XZ + ??1EmbedderGraph@v8@@UEAA@XZ=node.exe.??1EmbedderGraph@v8@@UEAA@XZ + ??1EmbedderRootsHandler@v8@@UEAA@XZ=node.exe.??1EmbedderRootsHandler@v8@@UEAA@XZ + ??1EmbedderStateScope@v8@@QEAA@XZ=node.exe.??1EmbedderStateScope@v8@@QEAA@XZ + ??1EscapableHandleScope@v8@@QEAA@XZ=node.exe.??1EscapableHandleScope@v8@@QEAA@XZ + ??1EscapableHandleScopeBase@v8@@QEAA@XZ=node.exe.??1EscapableHandleScopeBase@v8@@QEAA@XZ + ??1Exported@protocol@v8_inspector@@UEAA@XZ=node.exe.??1Exported@protocol@v8_inspector@@UEAA@XZ + ??1Extension@v8@@UEAA@XZ=node.exe.??1Extension@v8@@UEAA@XZ + ??1ExternalOneByteStringResource@String@v8@@UEAA@XZ=node.exe.??1ExternalOneByteStringResource@String@v8@@UEAA@XZ + ??1ExternalResourceVisitor@v8@@UEAA@XZ=node.exe.??1ExternalResourceVisitor@v8@@UEAA@XZ + ??1ExternalSourceStream@ScriptCompiler@v8@@UEAA@XZ=node.exe.??1ExternalSourceStream@ScriptCompiler@v8@@UEAA@XZ + ??1ExternalStringResource@String@v8@@UEAA@XZ=node.exe.??1ExternalStringResource@String@v8@@UEAA@XZ + ??1ExternalStringResourceBase@String@v8@@UEAA@XZ=node.exe.??1ExternalStringResourceBase@String@v8@@UEAA@XZ + ??1GCInfoTable@internal@cppgc@@QEAA@XZ=node.exe.??1GCInfoTable@internal@cppgc@@QEAA@XZ + ??1HandleScope@v8@@QEAA@XZ=node.exe.??1HandleScope@v8@@QEAA@XZ + ??1Heap@cppgc@@UEAA@XZ=node.exe.??1Heap@cppgc@@UEAA@XZ + ??1InitializationResult@node@@UEAA@XZ=node.exe.??1InitializationResult@node@@UEAA@XZ + ??1Inspectable@V8InspectorSession@v8_inspector@@UEAA@XZ=node.exe.??1Inspectable@V8InspectorSession@v8_inspector@@UEAA@XZ + ??1JitPageReference@ThreadIsolation@internal@v8@@QEAA@XZ=node.exe.??1JitPageReference@ThreadIsolation@internal@v8@@QEAA@XZ + ??1Locker@v8@@QEAA@XZ=node.exe.??1Locker@v8@@QEAA@XZ + ??1MeasureMemoryDelegate@v8@@UEAA@XZ=node.exe.??1MeasureMemoryDelegate@v8@@UEAA@XZ + ??1MicrotaskQueue@v8@@UEAA@XZ=node.exe.??1MicrotaskQueue@v8@@UEAA@XZ + ??1MicrotasksScope@v8@@QEAA@XZ=node.exe.??1MicrotasksScope@v8@@QEAA@XZ + ??1ModuleWrap@loader@node@@EEAA@XZ=node.exe.??1ModuleWrap@loader@node@@EEAA@XZ + ??1MultiIsolatePlatform@node@@UEAA@XZ=node.exe.??1MultiIsolatePlatform@node@@UEAA@XZ + ??1NameProvider@cppgc@@UEAA@XZ=node.exe.??1NameProvider@cppgc@@UEAA@XZ + ??1NoGarbageCollectionScope@subtle@cppgc@@QEAA@XZ=node.exe.??1NoGarbageCollectionScope@subtle@cppgc@@QEAA@XZ + ??1OptimizingCompileDispatcherQueue@internal@v8@@QEAA@XZ=node.exe.??1OptimizingCompileDispatcherQueue@internal@v8@@QEAA@XZ + ??1OutputStream@v8@@UEAA@XZ=node.exe.??1OutputStream@v8@@UEAA@XZ + ??1OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@XZ=node.exe.??1OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@XZ + ??1PersistentHandleVisitor@v8@@UEAA@XZ=node.exe.??1PersistentHandleVisitor@v8@@UEAA@XZ + ??1PersistentRegion@internal@cppgc@@QEAA@XZ=node.exe.??1PersistentRegion@internal@cppgc@@QEAA@XZ + ??1PersistentRegionBase@internal@cppgc@@QEAA@XZ=node.exe.??1PersistentRegionBase@internal@cppgc@@QEAA@XZ + ??1PersistentRegionLock@internal@cppgc@@QEAA@XZ=node.exe.??1PersistentRegionLock@internal@cppgc@@QEAA@XZ + ??1Platform@cppgc@@UEAA@XZ=node.exe.??1Platform@cppgc@@UEAA@XZ + ??1PropertyDescriptor@v8@@QEAA@XZ=node.exe.??1PropertyDescriptor@v8@@QEAA@XZ + ??1Recorder@metrics@v8@@UEAA@XZ=node.exe.??1Recorder@metrics@v8@@UEAA@XZ + ??1RegisterState@v8@@QEAA@XZ=node.exe.??1RegisterState@v8@@QEAA@XZ + ??1RemoteObject@API@Runtime@protocol@v8_inspector@@UEAA@XZ=node.exe.??1RemoteObject@API@Runtime@protocol@v8_inspector@@UEAA@XZ + ??1RootVisitor@internal@cppgc@@UEAA@XZ=node.exe.??1RootVisitor@internal@cppgc@@UEAA@XZ + ??1Scope@Isolate@v8@@QEAA@XZ=node.exe.??1Scope@Isolate@v8@@QEAA@XZ + ??1SealHandleScope@v8@@QEAA@XZ=node.exe.??1SealHandleScope@v8@@QEAA@XZ + ??1SearchMatch@API@Debugger@protocol@v8_inspector@@UEAA@XZ=node.exe.??1SearchMatch@API@Debugger@protocol@v8_inspector@@UEAA@XZ + ??1SharedValueConveyor@v8@@QEAA@XZ=node.exe.??1SharedValueConveyor@v8@@QEAA@XZ + ??1SnapshotCreator@v8@@QEAA@XZ=node.exe.??1SnapshotCreator@v8@@QEAA@XZ + ??1StackTrace@API@Runtime@protocol@v8_inspector@@UEAA@XZ=node.exe.??1StackTrace@API@Runtime@protocol@v8_inspector@@UEAA@XZ + ??1StackTraceId@API@Runtime@protocol@v8_inspector@@UEAA@XZ=node.exe.??1StackTraceId@API@Runtime@protocol@v8_inspector@@UEAA@XZ + ??1StreamedSource@ScriptCompiler@v8@@QEAA@XZ=node.exe.??1StreamedSource@ScriptCompiler@v8@@QEAA@XZ + ??1StringBuffer@v8_inspector@@UEAA@XZ=node.exe.??1StringBuffer@v8_inspector@@UEAA@XZ + ??1SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@XZ=node.exe.??1SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@XZ + ??1SuspendTagCheckingScope@base@heap@@QEAA@XZ=node.exe.??1SuspendTagCheckingScope@base@heap@@QEAA@XZ + ??1TryCatch@v8@@QEAA@XZ=node.exe.??1TryCatch@v8@@QEAA@XZ + ??1Unlocker@v8@@QEAA@XZ=node.exe.??1Unlocker@v8@@QEAA@XZ + ??1Utf8Value@String@v8@@QEAA@XZ=node.exe.??1Utf8Value@String@v8@@QEAA@XZ + ??1V8Inspector@v8_inspector@@UEAA@XZ=node.exe.??1V8Inspector@v8_inspector@@UEAA@XZ + ??1V8InspectorClient@v8_inspector@@UEAA@XZ=node.exe.??1V8InspectorClient@v8_inspector@@UEAA@XZ + ??1V8InspectorSession@v8_inspector@@UEAA@XZ=node.exe.??1V8InspectorSession@v8_inspector@@UEAA@XZ + ??1V8StackTrace@v8_inspector@@UEAA@XZ=node.exe.??1V8StackTrace@v8_inspector@@UEAA@XZ + ??1Value@String@v8@@QEAA@XZ=node.exe.??1Value@String@v8@@QEAA@XZ + ??1ValueDeserializer@v8@@QEAA@XZ=node.exe.??1ValueDeserializer@v8@@QEAA@XZ + ??1ValueSerializer@v8@@QEAA@XZ=node.exe.??1ValueSerializer@v8@@QEAA@XZ + ??1ValueView@String@v8@@QEAA@XZ=node.exe.??1ValueView@String@v8@@QEAA@XZ + ??1Visitor@cppgc@@UEAA@XZ=node.exe.??1Visitor@cppgc@@UEAA@XZ + ??1WasmStreaming@v8@@QEAA@XZ=node.exe.??1WasmStreaming@v8@@QEAA@XZ + ??2GlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z=node.exe.??2GlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z + ??2HandleScope@v8@@CAPEAX_K@Z=node.exe.??2HandleScope@v8@@CAPEAX_K@Z + ??2TryCatch@v8@@CAPEAX_K@Z=node.exe.??2TryCatch@v8@@CAPEAX_K@Z + ??3BackingStore@v8@@SAXPEAX@Z=node.exe.??3BackingStore@v8@@SAXPEAX@Z + ??3GlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z=node.exe.??3GlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z + ??3HandleScope@v8@@CAXPEAX_K@Z=node.exe.??3HandleScope@v8@@CAXPEAX_K@Z + ??3TryCatch@v8@@CAXPEAX_K@Z=node.exe.??3TryCatch@v8@@CAXPEAX_K@Z + ??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@E@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@E@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@E@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@E@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$MemorySpan@_K@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4?$MemorySpan@_K@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4?$MemorySpan@_K@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4?$MemorySpan@_K@v8@@QEAAAEAV01@AEBV01@@Z + ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z + ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z=node.exe.??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z + ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z=node.exe.??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z + ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z + ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z=node.exe.??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z + ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z=node.exe.??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z + ??4ActivityControl@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ActivityControl@v8@@QEAAAEAV01@AEBV01@@Z + ??4AgeTable@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4AgeTable@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4AgeTable@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4AgeTable@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4AllocationHandle@cppgc@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4AllocationHandle@cppgc@@QEAAAEAV01@$$QEAV01@@Z + ??4AllocationHandle@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4AllocationHandle@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4AllocationProfile@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4AllocationProfile@v8@@QEAAAEAV01@AEBV01@@Z + ??4Allocator@ArrayBuffer@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Allocator@ArrayBuffer@v8@@QEAAAEAV012@AEBV012@@Z + ??4Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4ArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z + ??4ArrayBufferAllocator@node@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ArrayBufferAllocator@node@@QEAAAEAV01@$$QEAV01@@Z + ??4ArrayBufferAllocator@node@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ArrayBufferAllocator@node@@QEAAAEAV01@AEBV01@@Z + ??4ArrayBufferView@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ArrayBufferView@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ArrayBufferView@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ArrayBufferView@v8@@QEAAAEAV01@AEBV01@@Z + ??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@$$QEAV012@@Z + ??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@AEBV012@@Z + ??4BackingStore@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4BackingStore@v8@@QEAAAEAV01@AEBV01@@Z + ??4BackupIncumbentScope@Context@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4BackupIncumbentScope@Context@v8@@QEAAAEAV012@AEBV012@@Z + ??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + ??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z=node.exe.??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + ??4BigInt64Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4BigInt64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4BigInt64Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4BigInt64Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4BigInt@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4BigInt@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4BigInt@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4BigInt@v8@@QEAAAEAV01@AEBV01@@Z + ??4BigIntObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4BigIntObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4BigIntObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4BigIntObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4BigUint64Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4BigUint64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4BigUint64Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4BigUint64Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Binary@protocol@v8_inspector@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4Binary@protocol@v8_inspector@@QEAAAEAV012@$$QEAV012@@Z + ??4Binary@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Binary@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z + ??4Boolean@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Boolean@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Boolean@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Boolean@v8@@QEAAAEAV01@AEBV01@@Z + ??4BooleanObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4BooleanObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4BooleanObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4BooleanObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4CFunction@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4CFunction@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4CFunction@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4CFunction@v8@@QEAAAEAV01@AEBV01@@Z + ??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4Channel@V8Inspector@v8_inspector@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Channel@V8Inspector@v8_inspector@@QEAAAEAV012@AEBV012@@Z + ??4CodeEvent@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4CodeEvent@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4CodeEvent@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4CodeEvent@v8@@QEAAAEAV01@AEBV01@@Z + ??4CompileHintsCollector@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4CompileHintsCollector@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4CompileHintsCollector@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4CompileHintsCollector@v8@@QEAAAEAV01@AEBV01@@Z + ??4Context@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Context@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Context@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Context@v8@@QEAAAEAV01@AEBV01@@Z + ??4CppHeap@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4CppHeap@v8@@QEAAAEAV01@AEBV01@@Z + ??4CpuProfile@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4CpuProfile@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4CpuProfile@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4CpuProfile@v8@@QEAAAEAV01@AEBV01@@Z + ??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@$$QEAU01@@Z=node.exe.??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@$$QEAU01@@Z + ??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@AEBU01@@Z=node.exe.??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@AEBU01@@Z + ??4CpuProfileNode@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4CpuProfileNode@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4CpuProfileNode@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4CpuProfileNode@v8@@QEAAAEAV01@AEBV01@@Z + ??4CpuProfilingOptions@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4CpuProfilingOptions@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4CreateParams@Isolate@v8@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4CreateParams@Isolate@v8@@QEAAAEAU012@$$QEAU012@@Z + ??4CreateParams@Isolate@v8@@QEAAAEAU012@AEBU012@@Z=node.exe.??4CreateParams@Isolate@v8@@QEAAAEAU012@AEBU012@@Z + ??4Data@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Data@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Data@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Data@v8@@QEAAAEAV01@AEBV01@@Z + ??4DataView@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4DataView@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4DataView@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4DataView@v8@@QEAAAEAV01@AEBV01@@Z + ??4Date@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Date@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Date@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Date@v8@@QEAAAEAV01@AEBV01@@Z + ??4DeepSerializationResult@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z=node.exe.??4DeepSerializationResult@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + ??4DeepSerializedValue@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z=node.exe.??4DeepSerializedValue@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + ??4Delegate@ValueDeserializer@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Delegate@ValueDeserializer@v8@@QEAAAEAV012@AEBV012@@Z + ??4Delegate@ValueSerializer@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Delegate@ValueSerializer@v8@@QEAAAEAV012@AEBV012@@Z + ??4DeleteACHHandle@node@@QEAAAEAU01@$$QEAU01@@Z=node.exe.??4DeleteACHHandle@node@@QEAAAEAU01@$$QEAU01@@Z + ??4DeleteACHHandle@node@@QEAAAEAU01@AEBU01@@Z=node.exe.??4DeleteACHHandle@node@@QEAAAEAU01@AEBU01@@Z + ??4DictionaryTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4DictionaryTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4DictionaryTemplate@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4DictionaryTemplate@v8@@QEAAAEAV01@AEBV01@@Z + ??4DiscardedSamplesDelegate@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4DiscardedSamplesDelegate@v8@@QEAAAEAV01@AEBV01@@Z + ??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z=node.exe.??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + ??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z=node.exe.??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + ??4EmbedderGraph@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4EmbedderGraph@v8@@QEAAAEAV01@AEBV01@@Z + ??4EmbedderRootsHandler@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4EmbedderRootsHandler@v8@@QEAAAEAV01@AEBV01@@Z + ??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + ??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z=node.exe.??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + ??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@$$QEAU012@@Z + ??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@AEBU012@@Z=node.exe.??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@AEBU012@@Z + ??4Exception@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Exception@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Exception@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Exception@v8@@QEAAAEAV01@AEBV01@@Z + ??4Exported@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Exported@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z + ??4External@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4External@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4External@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4External@v8@@QEAAAEAV01@AEBV01@@Z + ??4ExternalResourceVisitor@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ExternalResourceVisitor@v8@@QEAAAEAV01@AEBV01@@Z + ??4ExternalSourceStream@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4ExternalSourceStream@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z + ??4FixedArray@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4FixedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4FixedArray@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4FixedArray@v8@@QEAAAEAV01@AEBV01@@Z + ??4Float16Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Float16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Float16Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Float16Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Float32Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Float32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Float32Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Float32Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Float64Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Float64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Float64Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Float64Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Function@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Function@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Function@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Function@v8@@QEAAAEAV01@AEBV01@@Z + ??4FunctionTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4FunctionTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4FunctionTemplate@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4FunctionTemplate@v8@@QEAAAEAV01@AEBV01@@Z + ??4Heap@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Heap@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4HeapCodeStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapCodeStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapCodeStatistics@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapCodeStatistics@v8@@QEAAAEAV01@AEBV01@@Z + ??4HeapGraphEdge@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapGraphEdge@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapGraphEdge@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapGraphEdge@v8@@QEAAAEAV01@AEBV01@@Z + ??4HeapGraphNode@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapGraphNode@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapGraphNode@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapGraphNode@v8@@QEAAAEAV01@AEBV01@@Z + ??4HeapObjectStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapObjectStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapObjectStatistics@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapObjectStatistics@v8@@QEAAAEAV01@AEBV01@@Z + ??4HeapSnapshot@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapSnapshot@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapSnapshot@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapSnapshot@v8@@QEAAAEAV01@AEBV01@@Z + ??4HeapSpaceStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapSpaceStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapSpaceStatistics@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapSpaceStatistics@v8@@QEAAAEAV01@AEBV01@@Z + ??4HeapState@subtle@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4HeapState@subtle@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4HeapState@subtle@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4HeapState@subtle@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4HeapStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4HeapStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4HeapStatistics@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4HeapStatistics@v8@@QEAAAEAV01@AEBV01@@Z + ??4InitializationResult@node@@QEAAAEAV01@AEBV01@@Z=node.exe.??4InitializationResult@node@@QEAAAEAV01@AEBV01@@Z + ??4Inspectable@V8InspectorSession@v8_inspector@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Inspectable@V8InspectorSession@v8_inspector@@QEAAAEAV012@AEBV012@@Z + ??4Int16Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Int16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Int16Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Int16Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Int32@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Int32@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Int32@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Int32@v8@@QEAAAEAV01@AEBV01@@Z + ??4Int32Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Int32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Int32Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Int32Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Int8Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Int8Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Int8Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Int8Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Integer@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Integer@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Integer@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Integer@v8@@QEAAAEAV01@AEBV01@@Z + ??4IsolatePlatformDelegate@node@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4IsolatePlatformDelegate@node@@QEAAAEAV01@$$QEAV01@@Z + ??4IsolatePlatformDelegate@node@@QEAAAEAV01@AEBV01@@Z=node.exe.??4IsolatePlatformDelegate@node@@QEAAAEAV01@AEBV01@@Z + ??4JSON@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4JSON@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4JSON@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4JSON@v8@@QEAAAEAV01@AEBV01@@Z + ??4LivenessBroker@cppgc@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4LivenessBroker@cppgc@@QEAAAEAV01@$$QEAV01@@Z + ??4LivenessBroker@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4LivenessBroker@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4Location@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Location@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Location@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Location@v8@@QEAAAEAV01@AEBV01@@Z + ??4LongTaskStats@metrics@v8@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4LongTaskStats@metrics@v8@@QEAAAEAU012@$$QEAU012@@Z + ??4LongTaskStats@metrics@v8@@QEAAAEAU012@AEBU012@@Z=node.exe.??4LongTaskStats@metrics@v8@@QEAAAEAU012@AEBU012@@Z + ??4Map@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Map@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Map@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Map@v8@@QEAAAEAV01@AEBV01@@Z + ??4MeasureMemoryDelegate@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4MeasureMemoryDelegate@v8@@QEAAAEAV01@AEBV01@@Z + ??4Message@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Message@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Message@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Message@v8@@QEAAAEAV01@AEBV01@@Z + ??4Module@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Module@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Module@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Module@v8@@QEAAAEAV01@AEBV01@@Z + ??4ModuleRequest@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ModuleRequest@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ModuleRequest@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ModuleRequest@v8@@QEAAAEAV01@AEBV01@@Z + ??4MultiIsolatePlatform@node@@QEAAAEAV01@AEBV01@@Z=node.exe.??4MultiIsolatePlatform@node@@QEAAAEAV01@AEBV01@@Z + ??4Name@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Name@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Name@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Name@v8@@QEAAAEAV01@AEBV01@@Z + ??4NameProvider@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4NameProvider@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4NameTraitBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4NameTraitBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4NameTraitBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4NameTraitBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4Number@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Number@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Number@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Number@v8@@QEAAAEAV01@AEBV01@@Z + ??4NumberObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4NumberObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4NumberObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4NumberObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4Numeric@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Numeric@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Numeric@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Numeric@v8@@QEAAAEAV01@AEBV01@@Z + ??4Object@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Object@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Object@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Object@v8@@QEAAAEAV01@AEBV01@@Z + ??4ObjectTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ObjectTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ObjectTemplate@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ObjectTemplate@v8@@QEAAAEAV01@AEBV01@@Z + ??4OutputStream@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4OutputStream@v8@@QEAAAEAV01@AEBV01@@Z + ??4PersistentHandleVisitor@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4PersistentHandleVisitor@v8@@QEAAAEAV01@AEBV01@@Z + ??4PersistentRegionLock@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4PersistentRegionLock@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4Platform@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Platform@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4Primitive@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Primitive@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Primitive@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Primitive@v8@@QEAAAEAV01@AEBV01@@Z + ??4PrimitiveArray@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4PrimitiveArray@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4PrimitiveArray@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4PrimitiveArray@v8@@QEAAAEAV01@AEBV01@@Z + ??4Private@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Private@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Private@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Private@v8@@QEAAAEAV01@AEBV01@@Z + ??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@$$QEAV01@@Z + ??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4Promise@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Promise@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Promise@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Promise@v8@@QEAAAEAV01@AEBV01@@Z + ??4Proxy@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Proxy@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Proxy@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Proxy@v8@@QEAAAEAV01@AEBV01@@Z + ??4Recorder@metrics@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Recorder@metrics@v8@@QEAAAEAV012@AEBV012@@Z + ??4RegExp@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4RegExp@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4RegExp@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4RegExp@v8@@QEAAAEAV01@AEBV01@@Z + ??4RegisterState@v8@@QEAAAEAU01@AEBU01@@Z=node.exe.??4RegisterState@v8@@QEAAAEAU01@AEBU01@@Z + ??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z=node.exe.??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + ??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z=node.exe.??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + ??4Resolver@Promise@v8@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4Resolver@Promise@v8@@QEAAAEAV012@$$QEAV012@@Z + ??4Resolver@Promise@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Resolver@Promise@v8@@QEAAAEAV012@AEBV012@@Z + ??4ResourceConstraints@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ResourceConstraints@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ResourceConstraints@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ResourceConstraints@v8@@QEAAAEAV01@AEBV01@@Z + ??4RootVisitor@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4RootVisitor@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4Script@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Script@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Script@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Script@v8@@QEAAAEAV01@AEBV01@@Z + ??4ScriptCompiler@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ScriptCompiler@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ScriptCompiler@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ScriptCompiler@v8@@QEAAAEAV01@AEBV01@@Z + ??4ScriptOrModule@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4ScriptOrModule@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4ScriptOrModule@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4ScriptOrModule@v8@@QEAAAEAV01@AEBV01@@Z + ??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@$$QEAV012@@Z + ??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z + ??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z=node.exe.??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + ??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z=node.exe.??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + ??4Set@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Set@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Set@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Set@v8@@QEAAAEAV01@AEBV01@@Z + ??4SharedArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4SharedArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4SharedArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4SharedArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z + ??4SharedMemoryStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4SharedMemoryStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4SharedMemoryStatistics@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4SharedMemoryStatistics@v8@@QEAAAEAV01@AEBV01@@Z + ??4SharedValueConveyor@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4SharedValueConveyor@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Signature@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Signature@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Signature@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Signature@v8@@QEAAAEAV01@AEBV01@@Z + ??4SourceLocation@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4SourceLocation@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4SourceLocation@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4SourceLocation@v8@@QEAAAEAV01@AEBV01@@Z + ??4StackFrame@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4StackFrame@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4StackFrame@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4StackFrame@v8@@QEAAAEAV01@AEBV01@@Z + ??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z=node.exe.??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + ??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z=node.exe.??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + ??4StackTrace@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4StackTrace@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4StackTrace@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4StackTrace@v8@@QEAAAEAV01@AEBV01@@Z + ??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z=node.exe.??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + ??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z=node.exe.??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + ??4StartupData@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4StartupData@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4StartupData@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4StartupData@v8@@QEAAAEAV01@AEBV01@@Z + ??4String@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4String@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4String@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4String@v8@@QEAAAEAV01@AEBV01@@Z + ??4StringBuffer@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4StringBuffer@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4StringObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4StringObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4StringObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4StringObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4StringView@v8_inspector@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4StringView@v8_inspector@@QEAAAEAV01@$$QEAV01@@Z + ??4StringView@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4StringView@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + ??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@AEBV012@@Z + ??4SuspendTagCheckingScope@base@heap@@QEAAAEAV012@AEBV012@@Z=node.exe.??4SuspendTagCheckingScope@base@heap@@QEAAAEAV012@AEBV012@@Z + ??4Symbol@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Symbol@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Symbol@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Symbol@v8@@QEAAAEAV01@AEBV01@@Z + ??4SymbolObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4SymbolObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4SymbolObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4SymbolObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4Template@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Template@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Template@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Template@v8@@QEAAAEAV01@AEBV01@@Z + ??4ThreadIsolation@internal@v8@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4ThreadIsolation@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + ??4ThreadIsolation@internal@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4ThreadIsolation@internal@v8@@QEAAAEAV012@AEBV012@@Z + ??4TickSample@internal@v8@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4TickSample@internal@v8@@QEAAAEAU012@$$QEAU012@@Z + ??4TickSample@internal@v8@@QEAAAEAU012@AEBU012@@Z=node.exe.??4TickSample@internal@v8@@QEAAAEAU012@AEBU012@@Z + ??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z=node.exe.??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + ??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@AEBU012@@Z=node.exe.??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + ??4TypecheckWitness@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4TypecheckWitness@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4TypecheckWitness@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4TypecheckWitness@v8@@QEAAAEAV01@AEBV01@@Z + ??4TypedArray@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4TypedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4TypedArray@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4TypedArray@v8@@QEAAAEAV01@AEBV01@@Z + ??4Uint16Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Uint16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Uint16Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Uint16Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Uint32@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Uint32@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Uint32@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Uint32@v8@@QEAAAEAV01@AEBV01@@Z + ??4Uint32Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Uint32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Uint32Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Uint32Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Uint8Array@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Uint8Array@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Uint8Array@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Uint8Array@v8@@QEAAAEAV01@AEBV01@@Z + ??4Uint8ClampedArray@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Uint8ClampedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Uint8ClampedArray@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Uint8ClampedArray@v8@@QEAAAEAV01@AEBV01@@Z + ??4UnboundModuleScript@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4UnboundModuleScript@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4UnboundModuleScript@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4UnboundModuleScript@v8@@QEAAAEAV01@AEBV01@@Z + ??4UnboundScript@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4UnboundScript@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4UnboundScript@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4UnboundScript@v8@@QEAAAEAV01@AEBV01@@Z + ??4Unlocker@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Unlocker@v8@@QEAAAEAV01@AEBV01@@Z + ??4Unwinder@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Unwinder@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Unwinder@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Unwinder@v8@@QEAAAEAV01@AEBV01@@Z + ??4V8@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4V8@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4V8@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4V8@v8@@QEAAAEAV01@AEBV01@@Z + ??4V8DebuggerId@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4V8DebuggerId@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4V8Inspector@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4V8Inspector@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4V8InspectorClient@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4V8InspectorClient@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4V8InspectorSession@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4V8InspectorSession@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4V8StackFrame@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z=node.exe.??4V8StackFrame@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + ??4V8StackFrame@v8_inspector@@QEAAAEAU01@AEBU01@@Z=node.exe.??4V8StackFrame@v8_inspector@@QEAAAEAU01@AEBU01@@Z + ??4V8StackTrace@v8_inspector@@QEAAAEAV01@AEBV01@@Z=node.exe.??4V8StackTrace@v8_inspector@@QEAAAEAV01@AEBV01@@Z + ??4V8StackTraceId@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z=node.exe.??4V8StackTraceId@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + ??4V8StackTraceId@v8_inspector@@QEAAAEAU01@AEBU01@@Z=node.exe.??4V8StackTraceId@v8_inspector@@QEAAAEAU01@AEBU01@@Z + ??4Value@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4Value@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4Value@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Value@v8@@QEAAAEAV01@AEBV01@@Z + ??4Version@internal@v8@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4Version@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + ??4Version@internal@v8@@QEAAAEAV012@AEBV012@@Z=node.exe.??4Version@internal@v8@@QEAAAEAV012@AEBV012@@Z + ??4Visitor@cppgc@@QEAAAEAV01@AEBV01@@Z=node.exe.??4Visitor@cppgc@@QEAAAEAV01@AEBV01@@Z + ??4WasmMemoryObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4WasmMemoryObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4WasmMemoryObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4WasmMemoryObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4WasmModuleObject@v8@@QEAAAEAV01@$$QEAV01@@Z=node.exe.??4WasmModuleObject@v8@@QEAAAEAV01@$$QEAV01@@Z + ??4WasmModuleObject@v8@@QEAAAEAV01@AEBV01@@Z=node.exe.??4WasmModuleObject@v8@@QEAAAEAV01@AEBV01@@Z + ??4WriteBarrier@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4WriteBarrier@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4WriteBarrier@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4WriteBarrier@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z=node.exe.??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + ??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z=node.exe.??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + ??A?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBAAEBV?$Local@VContext@v8@@@1@_K@Z=node.exe.??A?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBAAEBV?$Local@VContext@v8@@@1@_K@Z + ??A?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBAAEBV?$Local@VString@v8@@@1@_K@Z=node.exe.??A?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBAAEBV?$Local@VString@v8@@@1@_K@Z + ??A?$MemorySpan@$$CB_K@v8@@QEBAAEB_K_K@Z=node.exe.??A?$MemorySpan@$$CB_K@v8@@QEBAAEB_K_K@Z + ??A?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBAAEAV?$Handle@VMap@internal@v8@@@internal@1@_K@Z=node.exe.??A?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBAAEAV?$Handle@VMap@internal@v8@@@internal@1@_K@Z + ??A?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBAAEAV?$MaybeLocal@VValue@v8@@@1@_K@Z=node.exe.??A?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBAAEAV?$MaybeLocal@VValue@v8@@@1@_K@Z + ??A?$MemorySpan@_K@v8@@QEBAAEA_K_K@Z=node.exe.??A?$MemorySpan@_K@v8@@QEBAAEA_K_K@Z + ??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z=node.exe.??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z + ??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z=node.exe.??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z + ??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z=node.exe.??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z + ??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z=node.exe.??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z + ??DUtf8Value@String@v8@@QEAAPEADXZ=node.exe.??DUtf8Value@String@v8@@QEAAPEADXZ + ??DUtf8Value@String@v8@@QEBAPEBDXZ=node.exe.??DUtf8Value@String@v8@@QEBAPEBDXZ + ??DValue@String@v8@@QEAAPEAGXZ=node.exe.??DValue@String@v8@@QEAAPEAGXZ + ??DValue@String@v8@@QEBAPEBGXZ=node.exe.??DValue@String@v8@@QEBAPEBGXZ + ??RDeleteACHHandle@node@@QEBAXPEAUACHHandle@1@@Z=node.exe.??RDeleteACHHandle@node@@QEBAXPEAUACHHandle@1@@Z + ??_7ActivityControl@v8@@6B@=node.exe.??_7ActivityControl@v8@@6B@ + ??_7AllocationProfile@v8@@6B@=node.exe.??_7AllocationProfile@v8@@6B@ + ??_7Allocator@ArrayBuffer@v8@@6B@=node.exe.??_7Allocator@ArrayBuffer@v8@@6B@ + ??_7ArrayBufferAllocator@node@@6B@=node.exe.??_7ArrayBufferAllocator@node@@6B@ + ??_7AsyncResource@node@@6B@=node.exe.??_7AsyncResource@node@@6B@ + ??_7Channel@V8Inspector@v8_inspector@@6B@=node.exe.??_7Channel@V8Inspector@v8_inspector@@6B@ + ??_7CodeEventHandler@v8@@6B@=node.exe.??_7CodeEventHandler@v8@@6B@ + ??_7CppHeap@v8@@6B@=node.exe.??_7CppHeap@v8@@6B@ + ??_7Delegate@ValueDeserializer@v8@@6B@=node.exe.??_7Delegate@ValueDeserializer@v8@@6B@ + ??_7Delegate@ValueSerializer@v8@@6B@=node.exe.??_7Delegate@ValueSerializer@v8@@6B@ + ??_7DiscardedSamplesDelegate@v8@@6B@=node.exe.??_7DiscardedSamplesDelegate@v8@@6B@ + ??_7Domain@API@Schema@protocol@v8_inspector@@6B@=node.exe.??_7Domain@API@Schema@protocol@v8_inspector@@6B@ + ??_7EmbedderGraph@v8@@6B@=node.exe.??_7EmbedderGraph@v8@@6B@ + ??_7EmbedderRootsHandler@v8@@6B@=node.exe.??_7EmbedderRootsHandler@v8@@6B@ + ??_7Exported@protocol@v8_inspector@@6B@=node.exe.??_7Exported@protocol@v8_inspector@@6B@ + ??_7Extension@v8@@6B@=node.exe.??_7Extension@v8@@6B@ + ??_7ExternalOneByteStringResource@String@v8@@6B@=node.exe.??_7ExternalOneByteStringResource@String@v8@@6B@ + ??_7ExternalResourceVisitor@v8@@6B@=node.exe.??_7ExternalResourceVisitor@v8@@6B@ + ??_7ExternalSourceStream@ScriptCompiler@v8@@6B@=node.exe.??_7ExternalSourceStream@ScriptCompiler@v8@@6B@ + ??_7ExternalStringResource@String@v8@@6B@=node.exe.??_7ExternalStringResource@String@v8@@6B@ + ??_7ExternalStringResourceBase@String@v8@@6B@=node.exe.??_7ExternalStringResourceBase@String@v8@@6B@ + ??_7Heap@cppgc@@6B@=node.exe.??_7Heap@cppgc@@6B@ + ??_7InitializationResult@node@@6B@=node.exe.??_7InitializationResult@node@@6B@ + ??_7Inspectable@V8InspectorSession@v8_inspector@@6B@=node.exe.??_7Inspectable@V8InspectorSession@v8_inspector@@6B@ + ??_7IsolatePlatformDelegate@node@@6B@=node.exe.??_7IsolatePlatformDelegate@node@@6B@ + ??_7MeasureMemoryDelegate@v8@@6B@=node.exe.??_7MeasureMemoryDelegate@v8@@6B@ + ??_7MicrotaskQueue@v8@@6B@=node.exe.??_7MicrotaskQueue@v8@@6B@ + ??_7ModuleWrap@loader@node@@6B@=node.exe.??_7ModuleWrap@loader@node@@6B@ + ??_7MultiIsolatePlatform@node@@6B@=node.exe.??_7MultiIsolatePlatform@node@@6B@ + ??_7NameProvider@cppgc@@6B@=node.exe.??_7NameProvider@cppgc@@6B@ + ??_7OutputStream@v8@@6B@=node.exe.??_7OutputStream@v8@@6B@ + ??_7PersistentHandleVisitor@v8@@6B@=node.exe.??_7PersistentHandleVisitor@v8@@6B@ + ??_7Platform@cppgc@@6B@=node.exe.??_7Platform@cppgc@@6B@ + ??_7Recorder@metrics@v8@@6B@=node.exe.??_7Recorder@metrics@v8@@6B@ + ??_7RemoteObject@API@Runtime@protocol@v8_inspector@@6B@=node.exe.??_7RemoteObject@API@Runtime@protocol@v8_inspector@@6B@ + ??_7RootVisitor@internal@cppgc@@6B@=node.exe.??_7RootVisitor@internal@cppgc@@6B@ + ??_7SearchMatch@API@Debugger@protocol@v8_inspector@@6B@=node.exe.??_7SearchMatch@API@Debugger@protocol@v8_inspector@@6B@ + ??_7StackTrace@API@Runtime@protocol@v8_inspector@@6B@=node.exe.??_7StackTrace@API@Runtime@protocol@v8_inspector@@6B@ + ??_7StackTraceId@API@Runtime@protocol@v8_inspector@@6B@=node.exe.??_7StackTraceId@API@Runtime@protocol@v8_inspector@@6B@ + ??_7StringBuffer@v8_inspector@@6B@=node.exe.??_7StringBuffer@v8_inspector@@6B@ + ??_7V8Inspector@v8_inspector@@6B@=node.exe.??_7V8Inspector@v8_inspector@@6B@ + ??_7V8InspectorClient@v8_inspector@@6B@=node.exe.??_7V8InspectorClient@v8_inspector@@6B@ + ??_7V8InspectorSession@v8_inspector@@6B@=node.exe.??_7V8InspectorSession@v8_inspector@@6B@ + ??_7V8StackTrace@v8_inspector@@6B@=node.exe.??_7V8StackTrace@v8_inspector@@6B@ + ??_7Visitor@cppgc@@6B@=node.exe.??_7Visitor@cppgc@@6B@ + ??_FCpuProfilingOptions@v8@@QEAAXXZ=node.exe.??_FCpuProfilingOptions@v8@@QEAAXXZ + ??_FSnapshotCreator@v8@@QEAAXXZ=node.exe.??_FSnapshotCreator@v8@@QEAAXXZ + ??_UGlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z=node.exe.??_UGlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z + ??_UHandleScope@v8@@CAPEAX_K@Z=node.exe.??_UHandleScope@v8@@CAPEAX_K@Z + ??_UTryCatch@v8@@CAPEAX_K@Z=node.exe.??_UTryCatch@v8@@CAPEAX_K@Z + ??_VGlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z=node.exe.??_VGlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z + ??_VHandleScope@v8@@CAXPEAX_K@Z=node.exe.??_VHandleScope@v8@@CAXPEAX_K@Z + ??_VTryCatch@v8@@CAXPEAX_K@Z=node.exe.??_VTryCatch@v8@@CAXPEAX_K@Z + ?Abort@WasmStreaming@v8@@QEAAXV?$MaybeLocal@VValue@v8@@@2@@Z=node.exe.?Abort@WasmStreaming@v8@@QEAAXV?$MaybeLocal@VValue@v8@@@2@@Z + ?Add@Set@v8@@QEAA?AV?$MaybeLocal@VSet@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Add@Set@v8@@QEAA?AV?$MaybeLocal@VSet@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?AddBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z=node.exe.?AddBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + ?AddBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z=node.exe.?AddBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z + ?AddCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z=node.exe.?AddCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + ?AddContext@SnapshotCreator@v8@@QEAA_KV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z=node.exe.?AddContext@SnapshotCreator@v8@@QEAA_KV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z + ?AddData@SnapshotCreator@v8@@AEAA_KV?$Local@VContext@v8@@@2@_K@Z=node.exe.?AddData@SnapshotCreator@v8@@AEAA_KV?$Local@VContext@v8@@@2@_K@Z + ?AddData@SnapshotCreator@v8@@AEAA_K_K@Z=node.exe.?AddData@SnapshotCreator@v8@@AEAA_K_K@Z + ?AddEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z=node.exe.?AddEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z + ?AddEnvironmentCleanupHookInternal@node@@YAPEAUACHHandle@1@PEAVIsolate@v8@@P6AXPEAXP6AX1@Z1@Z1@Z=node.exe.?AddEnvironmentCleanupHookInternal@node@@YAPEAUACHHandle@1@PEAVIsolate@v8@@P6AXPEAXP6AX1@Z1@Z1@Z + ?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z=node.exe.?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z + ?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z=node.exe.?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z + ?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z=node.exe.?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z + ?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z=node.exe.?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z + ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnapi_module@@@Z=node.exe.?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnapi_module@@@Z + ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnode_module@1@@Z=node.exe.?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnode_module@1@@Z + ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6APEAUnapi_value__@@PEAUnapi_env__@@PEAU3@@ZH@Z=node.exe.?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6APEAUnapi_value__@@PEAUnapi_env__@@PEAU3@@ZH@Z + ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6AXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@4@V?$Local@VContext@v8@@@4@PEAX@Z5@Z=node.exe.?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6AXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@4@V?$Local@VContext@v8@@@4@PEAX@Z5@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalMark@metrics@v8@@@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalMark@metrics@v8@@@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalSweep@metrics@v8@@@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalSweep@metrics@v8@@@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullCycle@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullCycle@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalMark@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalMark@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalSweep@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalSweep@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionYoungCycle@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionYoungCycle@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleCompiled@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleCompiled@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleDecoded@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleDecoded@23@VContextId@123@@Z + ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleInstantiated@23@VContextId@123@@Z=node.exe.?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleInstantiated@23@VContextId@123@@Z + ?AddMessageListener@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z1@Z=node.exe.?AddMessageListener@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z1@Z + ?AddMessageListenerWithErrorLevel@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@ZH1@Z=node.exe.?AddMessageListenerWithErrorLevel@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@ZH1@Z + ?AddMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z=node.exe.?AddMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + ?AddNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z0@Z=node.exe.?AddNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z0@Z + ?AddThreadSafeEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModulesPerIsolate@23@@Z=node.exe.?AddThreadSafeEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModulesPerIsolate@23@@Z + ?Address@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ=node.exe.?Address@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + ?AdjustAmountOfExternalAllocatedMemory@Isolate@v8@@QEAA_J_J@Z=node.exe.?AdjustAmountOfExternalAllocatedMemory@Isolate@v8@@QEAA_J_J@Z + ?AdoptSharedValueConveyor@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@$$QEAVSharedValueConveyor@3@@Z=node.exe.?AdoptSharedValueConveyor@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@$$QEAVSharedValueConveyor@3@@Z + ?Allocate@Isolate@v8@@SAPEAV12@XZ=node.exe.?Allocate@Isolate@v8@@SAPEAV12@XZ + ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KG@Z=node.exe.?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KG@Z + ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KGUCustomSpaceIndex@3@@Z=node.exe.?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KGUCustomSpaceIndex@3@@Z + ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@G@Z=node.exe.?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@G@Z + ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@GUCustomSpaceIndex@3@@Z=node.exe.?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@GUCustomSpaceIndex@3@@Z + ?AllocateEnvironmentThreadId@node@@YA?AUThreadId@1@XZ=node.exe.?AllocateEnvironmentThreadId@node@@YA?AUThreadId@1@XZ + ?AllocateNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z=node.exe.?AllocateNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + ?AllocateNode@PersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z=node.exe.?AllocateNode@PersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + ?AllocationContaining@JitPageReference@ThreadIsolation@internal@v8@@QEAA?AU?$pair@_KAEAVJitAllocation@ThreadIsolation@internal@v8@@@__Cr@std@@_K@Z=node.exe.?AllocationContaining@JitPageReference@ThreadIsolation@internal@v8@@QEAA?AU?$pair@_KAEAVJitAllocation@ThreadIsolation@internal@v8@@@__Cr@std@@_K@Z + ?AllowCodeGenerationFromStrings@Context@v8@@QEAAX_N@Z=node.exe.?AllowCodeGenerationFromStrings@Context@v8@@QEAAX_N@Z + ?AllowWasmCodeGenerationCallback@node@@YA_NV?$Local@VContext@v8@@@v8@@V?$Local@VString@v8@@@3@@Z=node.exe.?AllowWasmCodeGenerationCallback@node@@YA_NV?$Local@VContext@v8@@@v8@@V?$Local@VString@v8@@@3@@Z + ?Ambiguous@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?Ambiguous@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?AnnotateStrongRetainer@api_internal@v8@@YAXPEA_KPEBD@Z=node.exe.?AnnotateStrongRetainer@api_internal@v8@@YAXPEA_KPEBD@Z + ?AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z=node.exe.?AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z + ?ArgumentCount@CFunction@v8@@QEBAIXZ=node.exe.?ArgumentCount@CFunction@v8@@QEBAIXZ + ?ArgumentCount@CFunctionInfo@v8@@QEBAIXZ=node.exe.?ArgumentCount@CFunctionInfo@v8@@QEBAIXZ + ?ArgumentInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@I@Z=node.exe.?ArgumentInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@I@Z + ?ArgumentInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@I@Z=node.exe.?ArgumentInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@I@Z + ?AsArray@Map@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ=node.exe.?AsArray@Map@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ + ?AsArray@Set@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ=node.exe.?AsArray@Set@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ + ?Assert@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?Assert@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?AssertLocked@PersistentRegionLock@internal@cppgc@@SAXXZ=node.exe.?AssertLocked@PersistentRegionLock@internal@cppgc@@SAXXZ + ?AsyncHooksGetExecutionAsyncId@node@@YANPEAVIsolate@v8@@@Z=node.exe.?AsyncHooksGetExecutionAsyncId@node@@YANPEAVIsolate@v8@@@Z + ?AsyncHooksGetTriggerAsyncId@node@@YANPEAVIsolate@v8@@@Z=node.exe.?AsyncHooksGetTriggerAsyncId@node@@YANPEAVIsolate@v8@@@Z + ?AtExit@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z=node.exe.?AtExit@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z + ?AttachCppHeap@Isolate@v8@@QEAAXPEAVCppHeap@2@@Z=node.exe.?AttachCppHeap@Isolate@v8@@QEAAXPEAVCppHeap@2@@Z + ?AutomaticallyRestoreInitialHeapLimit@Isolate@v8@@QEAAXN@Z=node.exe.?AutomaticallyRestoreInitialHeapLimit@Isolate@v8@@QEAAXN@Z + ?BindToCurrentContext@UnboundScript@v8@@QEAA?AV?$Local@VScript@v8@@@2@XZ=node.exe.?BindToCurrentContext@UnboundScript@v8@@QEAA?AV?$Local@VScript@v8@@@2@XZ + ?BooleanValue@Value@v8@@QEBA_NPEAVIsolate@2@@Z=node.exe.?BooleanValue@Value@v8@@QEBA_NPEAVIsolate@2@@Z + ?Buffer@ArrayBufferView@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ=node.exe.?Buffer@ArrayBufferView@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ + ?Buffer@WasmMemoryObject@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ=node.exe.?Buffer@WasmMemoryObject@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ + ?Build@?$CTypeInfoBuilder@H$S@v8@@SA?AVCTypeInfo@2@XZ=node.exe.?Build@?$CTypeInfoBuilder@H$S@v8@@SA?AVCTypeInfo@2@XZ + ?Build@?$CTypeInfoBuilder@I$S@v8@@SA?AVCTypeInfo@2@XZ=node.exe.?Build@?$CTypeInfoBuilder@I$S@v8@@SA?AVCTypeInfo@2@XZ + ?Build@?$CTypeInfoBuilder@M$S@v8@@SA?AVCTypeInfo@2@XZ=node.exe.?Build@?$CTypeInfoBuilder@M$S@v8@@SA?AVCTypeInfo@2@XZ + ?Build@?$CTypeInfoBuilder@N$S@v8@@SA?AVCTypeInfo@2@XZ=node.exe.?Build@?$CTypeInfoBuilder@N$S@v8@@SA?AVCTypeInfo@2@XZ + ?ByteLength@ArrayBuffer@v8@@QEBA_KXZ=node.exe.?ByteLength@ArrayBuffer@v8@@QEBA_KXZ + ?ByteLength@ArrayBufferView@v8@@QEAA_KXZ=node.exe.?ByteLength@ArrayBufferView@v8@@QEAA_KXZ + ?ByteLength@BackingStore@v8@@QEBA_KXZ=node.exe.?ByteLength@BackingStore@v8@@QEBA_KXZ + ?ByteLength@SharedArrayBuffer@v8@@QEBA_KXZ=node.exe.?ByteLength@SharedArrayBuffer@v8@@QEBA_KXZ + ?ByteOffset@ArrayBufferView@v8@@QEAA_KXZ=node.exe.?ByteOffset@ArrayBufferView@v8@@QEAA_KXZ + ?CSPViolation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?CSPViolation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?CacheResolvedWrapsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?CacheResolvedWrapsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?CachedDataVersionTag@ScriptCompiler@v8@@SAIXZ=node.exe.?CachedDataVersionTag@ScriptCompiler@v8@@SAIXZ + ?CalculateAgeTableSizeForHeapSize@AgeTable@internal@cppgc@@SA_K_K@Z=node.exe.?CalculateAgeTableSizeForHeapSize@AgeTable@internal@cppgc@@SA_K_K@Z + ?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV62@@Z=node.exe.?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV62@@Z + ?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z=node.exe.?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z + ?CallAsConstructor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z=node.exe.?CallAsConstructor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z + ?CallAsFunction@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z=node.exe.?CallAsFunction@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z + ?CanBeRehashed@StartupData@v8@@QEBA_NXZ=node.exe.?CanBeRehashed@StartupData@v8@@QEBA_NXZ + ?CanContinue@TryCatch@v8@@QEBA_NXZ=node.exe.?CanContinue@TryCatch@v8@@QEBA_NXZ + ?CanLookupStartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA_N_K@Z=node.exe.?CanLookupStartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA_N_K@Z + ?CanMakeExternal@String@v8@@QEBA_NW4Encoding@12@@Z=node.exe.?CanMakeExternal@String@v8@@QEBA_NW4Encoding@12@@Z + ?CancelTerminateExecution@Isolate@v8@@QEAAXXZ=node.exe.?CancelTerminateExecution@Isolate@v8@@QEAAXXZ + ?CaptureStackTrace@Exception@v8@@SA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z=node.exe.?CaptureStackTrace@Exception@v8@@SA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z + ?Cast@Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@ArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@ArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@ArrayBufferView@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@ArrayBufferView@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@BigInt64Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@BigInt64Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@BigInt@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@BigInt@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@BigIntObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@BigIntObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@BigUint64Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@BigUint64Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Boolean@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Boolean@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@BooleanObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@BooleanObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Context@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Context@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@DataView@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@DataView@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Date@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Date@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@DictionaryTemplate@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@DictionaryTemplate@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@External@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@External@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@FixedArray@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@FixedArray@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Float16Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Float16Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Float32Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Float32Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Float64Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Float64Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Function@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Function@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@FunctionTemplate@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@FunctionTemplate@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Int16Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Int16Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Int32@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Int32@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Int32Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Int32Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Int8Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Int8Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Integer@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Integer@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Map@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Map@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Module@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Module@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@ModuleRequest@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@ModuleRequest@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Name@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Name@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Number@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Number@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@NumberObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@NumberObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Object@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Object@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@ObjectTemplate@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@ObjectTemplate@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@PrimitiveArray@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@PrimitiveArray@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Private@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Private@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Promise@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Promise@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Proxy@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Proxy@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@RegExp@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@RegExp@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Resolver@Promise@v8@@SAPEAV123@PEAVValue@3@@Z=node.exe.?Cast@Resolver@Promise@v8@@SAPEAV123@PEAVValue@3@@Z + ?Cast@Set@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Set@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@SharedArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@SharedArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Signature@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Signature@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@String@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@String@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@StringObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@StringObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Symbol@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Symbol@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@SymbolObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@SymbolObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@TypedArray@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@TypedArray@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Uint16Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Uint16Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Uint32@v8@@SAPEAV12@PEAVData@2@@Z=node.exe.?Cast@Uint32@v8@@SAPEAV12@PEAVData@2@@Z + ?Cast@Uint32Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Uint32Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Uint8Array@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Uint8Array@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@Uint8ClampedArray@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@Uint8ClampedArray@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@WasmMemoryObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@WasmMemoryObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Cast@WasmModuleObject@v8@@SAPEAV12@PEAVValue@2@@Z=node.exe.?Cast@WasmModuleObject@v8@@SAPEAV12@PEAVValue@2@@Z + ?Catch@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z=node.exe.?Catch@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z + ?CheckCachedDataInvariants@ExternalOneByteStringResource@String@v8@@AEBAXXZ=node.exe.?CheckCachedDataInvariants@ExternalOneByteStringResource@String@v8@@AEBAXXZ + ?CheckCachedDataInvariants@ExternalStringResource@String@v8@@AEBAXXZ=node.exe.?CheckCachedDataInvariants@ExternalStringResource@String@v8@@AEBAXXZ + ?CheckCast@Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@ArrayBuffer@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@ArrayBuffer@v8@@CAXPEAVValue@2@@Z + ?CheckCast@ArrayBufferView@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@ArrayBufferView@v8@@CAXPEAVValue@2@@Z + ?CheckCast@BigInt64Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@BigInt64Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@BigInt@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@BigInt@v8@@CAXPEAVData@2@@Z + ?CheckCast@BigIntObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@BigIntObject@v8@@CAXPEAVValue@2@@Z + ?CheckCast@BigUint64Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@BigUint64Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Boolean@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Boolean@v8@@CAXPEAVData@2@@Z + ?CheckCast@BooleanObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@BooleanObject@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Context@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Context@v8@@CAXPEAVData@2@@Z + ?CheckCast@DataView@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@DataView@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Date@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Date@v8@@CAXPEAVValue@2@@Z + ?CheckCast@DictionaryTemplate@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@DictionaryTemplate@v8@@CAXPEAVData@2@@Z + ?CheckCast@External@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@External@v8@@CAXPEAVValue@2@@Z + ?CheckCast@FixedArray@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@FixedArray@v8@@CAXPEAVData@2@@Z + ?CheckCast@Float16Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Float16Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Float32Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Float32Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Float64Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Float64Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Function@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Function@v8@@CAXPEAVValue@2@@Z + ?CheckCast@FunctionTemplate@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@FunctionTemplate@v8@@CAXPEAVData@2@@Z + ?CheckCast@Int16Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Int16Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Int32@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Int32@v8@@CAXPEAVData@2@@Z + ?CheckCast@Int32Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Int32Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Int8Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Int8Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Integer@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Integer@v8@@CAXPEAVData@2@@Z + ?CheckCast@Map@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Map@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Module@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Module@v8@@CAXPEAVData@2@@Z + ?CheckCast@ModuleRequest@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@ModuleRequest@v8@@CAXPEAVData@2@@Z + ?CheckCast@Name@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Name@v8@@CAXPEAVData@2@@Z + ?CheckCast@Number@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Number@v8@@CAXPEAVData@2@@Z + ?CheckCast@NumberObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@NumberObject@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Numeric@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Numeric@v8@@CAXPEAVData@2@@Z + ?CheckCast@Object@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Object@v8@@CAXPEAVValue@2@@Z + ?CheckCast@ObjectTemplate@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@ObjectTemplate@v8@@CAXPEAVData@2@@Z + ?CheckCast@PrimitiveArray@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@PrimitiveArray@v8@@CAXPEAVData@2@@Z + ?CheckCast@Private@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Private@v8@@CAXPEAVData@2@@Z + ?CheckCast@Promise@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Promise@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Proxy@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Proxy@v8@@CAXPEAVValue@2@@Z + ?CheckCast@RegExp@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@RegExp@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Resolver@Promise@v8@@CAXPEAVValue@3@@Z=node.exe.?CheckCast@Resolver@Promise@v8@@CAXPEAVValue@3@@Z + ?CheckCast@Set@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Set@v8@@CAXPEAVValue@2@@Z + ?CheckCast@SharedArrayBuffer@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@SharedArrayBuffer@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Signature@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Signature@v8@@CAXPEAVData@2@@Z + ?CheckCast@String@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@String@v8@@CAXPEAVData@2@@Z + ?CheckCast@StringObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@StringObject@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Symbol@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Symbol@v8@@CAXPEAVData@2@@Z + ?CheckCast@SymbolObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@SymbolObject@v8@@CAXPEAVValue@2@@Z + ?CheckCast@TypedArray@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@TypedArray@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Uint16Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Uint16Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Uint32@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Uint32@v8@@CAXPEAVData@2@@Z + ?CheckCast@Uint32Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Uint32Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Uint8Array@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Uint8Array@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Uint8ClampedArray@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@Uint8ClampedArray@v8@@CAXPEAVValue@2@@Z + ?CheckCast@Value@v8@@CAXPEAVData@2@@Z=node.exe.?CheckCast@Value@v8@@CAXPEAVData@2@@Z + ?CheckCast@WasmMemoryObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@WasmMemoryObject@v8@@CAXPEAVValue@2@@Z + ?CheckCast@WasmModuleObject@v8@@CAXPEAVValue@2@@Z=node.exe.?CheckCast@WasmModuleObject@v8@@CAXPEAVValue@2@@Z + ?CheckInitializedImpl@Internals@internal@v8@@SAXPEAVIsolate@3@@Z=node.exe.?CheckInitializedImpl@Internals@internal@v8@@SAXPEAVIsolate@3@@Z + ?CheckMemoryIsZeroed@GCInfoTable@internal@cppgc@@AEAAXPEA_K_K@Z=node.exe.?CheckMemoryIsZeroed@GCInfoTable@internal@cppgc@@AEAAXPEA_K_K@Z + ?CheckOneByte@ValueView@String@v8@@AEBAX_N@Z=node.exe.?CheckOneByte@ValueView@String@v8@@AEBAX_N@Z + ?CheckParams@WriteBarrier@internal@cppgc@@SAXW4Type@123@AEBUParams@123@@Z=node.exe.?CheckParams@WriteBarrier@internal@cppgc@@SAXW4Type@123@AEBUParams@123@@Z + ?CheckPointerImpl@SameThreadEnabledCheckingPolicyBase@internal@cppgc@@IEAAXPEBX_N1@Z=node.exe.?CheckPointerImpl@SameThreadEnabledCheckingPolicyBase@internal@cppgc@@IEAAXPEBX_N1@Z + ?CheckValue@TracedReferenceBase@v8@@IEBAXXZ=node.exe.?CheckValue@TracedReferenceBase@v8@@IEBAXXZ + ?CheckYoungGenerationConsistency@HeapLayout@internal@v8@@CAXPEBVMemoryChunk@23@@Z=node.exe.?CheckYoungGenerationConsistency@HeapLayout@internal@v8@@CAXPEBVMemoryChunk@23@@Z + ?Clear@Map@v8@@QEAAXXZ=node.exe.?Clear@Map@v8@@QEAAXXZ + ?Clear@Set@v8@@QEAAXXZ=node.exe.?Clear@Set@v8@@QEAAXXZ + ?ClearAllUsedNodes@CrossThreadPersistentRegion@internal@cppgc@@QEAAXXZ=node.exe.?ClearAllUsedNodes@CrossThreadPersistentRegion@internal@cppgc@@QEAAXXZ + ?ClearAllUsedNodes@PersistentRegionBase@internal@cppgc@@QEAAXXZ=node.exe.?ClearAllUsedNodes@PersistentRegionBase@internal@cppgc@@QEAAXXZ + ?ClearCachesForTesting@Isolate@v8@@QEAAXXZ=node.exe.?ClearCachesForTesting@Isolate@v8@@QEAAXXZ + ?ClearKeptObjects@Isolate@v8@@QEAAXXZ=node.exe.?ClearKeptObjects@Isolate@v8@@QEAAXXZ + ?ClearObjectIds@HeapProfiler@v8@@QEAAXXZ=node.exe.?ClearObjectIds@HeapProfiler@v8@@QEAAXXZ + ?ClearWeak@api_internal@v8@@YAPEAXPEA_K@Z=node.exe.?ClearWeak@api_internal@v8@@YAPEAXPEA_K@Z + ?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z=node.exe.?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z + ?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ=node.exe.?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + ?CollectCustomSpaceStatisticsAtLastGC@CppHeap@v8@@QEAAXV?$vector@UCustomSpaceIndex@cppgc@@V?$allocator@UCustomSpaceIndex@cppgc@@@__Cr@std@@@__Cr@std@@V?$unique_ptr@VCustomSpaceStatisticsReceiver@v8@@U?$default_delete@VCustomSpaceStatisticsReceiver@v8@@@__Cr@std@@@45@@Z=node.exe.?CollectCustomSpaceStatisticsAtLastGC@CppHeap@v8@@QEAAXV?$vector@UCustomSpaceIndex@cppgc@@V?$allocator@UCustomSpaceIndex@cppgc@@@__Cr@std@@@__Cr@std@@V?$unique_ptr@VCustomSpaceStatisticsReceiver@v8@@U?$default_delete@VCustomSpaceStatisticsReceiver@v8@@@__Cr@std@@@45@@Z + ?CollectGarbageForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z=node.exe.?CollectGarbageForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z + ?CollectGarbageInYoungGenerationForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z=node.exe.?CollectGarbageInYoungGenerationForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z + ?CollectSample@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z=node.exe.?CollectSample@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z + ?CollectStatistics@CppHeap@v8@@QEAA?AUHeapStatistics@cppgc@@W4DetailLevel@34@@Z=node.exe.?CollectStatistics@CppHeap@v8@@QEAA?AUHeapStatistics@cppgc@@W4DetailLevel@34@@Z + ?ColumnOffset@ScriptOrigin@v8@@QEBAHXZ=node.exe.?ColumnOffset@ScriptOrigin@v8@@QEBAHXZ + ?Commit@CompilationDependencies@compiler@internal@v8@@QEAA_NV?$Handle@VCode@internal@v8@@@34@@Z=node.exe.?Commit@CompilationDependencies@compiler@internal@v8@@QEAA_NV?$Handle@VCode@internal@v8@@@34@@Z + ?CompatibilityCheck@CachedData@ScriptCompiler@v8@@QEAA?AW4CompatibilityCheckResult@123@PEAVIsolate@3@@Z=node.exe.?CompatibilityCheck@CachedData@ScriptCompiler@v8@@QEAA?AW4CompatibilityCheckResult@123@PEAVIsolate@3@@Z + ?Compile@Script@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@PEAVScriptOrigin@2@@Z=node.exe.?Compile@Script@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@PEAVScriptOrigin@2@@Z + ?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z=node.exe.?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + ?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z=node.exe.?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z + ?Compile@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBE@2@@Z=node.exe.?Compile@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBE@2@@Z + ?CompileFunction@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@_KQEAV?$Local@VString@v8@@@2@2QEAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@@Z=node.exe.?CompileFunction@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@_KQEAV?$Local@VString@v8@@@2@2QEAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@@Z + ?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z=node.exe.?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + ?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z=node.exe.?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z + ?CompileOptionsIsValid@ScriptCompiler@v8@@SA_NW4CompileOptions@12@@Z=node.exe.?CompileOptionsIsValid@ScriptCompiler@v8@@SA_NW4CompileOptions@12@@Z + ?CompileUnboundInternal@ScriptCompiler@v8@@CA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z=node.exe.?CompileUnboundInternal@ScriptCompiler@v8@@CA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + ?CompileUnboundScript@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z=node.exe.?CompileUnboundScript@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + ?Concat@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@V32@1@Z=node.exe.?Concat@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@V32@1@Z + ?ConfigureDefaults@ResourceConstraints@v8@@QEAAX_K0@Z=node.exe.?ConfigureDefaults@ResourceConstraints@v8@@QEAAX_K0@Z + ?ConfigureDefaultsFromHeapSize@ResourceConstraints@v8@@QEAAX_K0@Z=node.exe.?ConfigureDefaultsFromHeapSize@ResourceConstraints@v8@@QEAAX_K0@Z + ?ContainsOnlyOneByte@String@v8@@QEBA_NXZ=node.exe.?ContainsOnlyOneByte@String@v8@@QEBA_NXZ + ?ContextDisposedNotification@Isolate@v8@@QEAAH_N@Z=node.exe.?ContextDisposedNotification@Isolate@v8@@QEAAH_N@Z + ?ConvertToJSGlobalProxyIfNecessary@api_internal@v8@@YA_K_K@Z=node.exe.?ConvertToJSGlobalProxyIfNecessary@api_internal@v8@@YA_K_K@Z + ?Copy@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEBD_K@Z=node.exe.?Copy@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEBD_K@Z + ?CopyCodePages@Isolate@v8@@QEAA_K_KPEAUMemoryRange@2@@Z=node.exe.?CopyCodePages@Isolate@v8@@QEAA_K_KPEAUMemoryRange@2@@Z + ?CopyContents@ArrayBufferView@v8@@QEAA_KPEAX_K@Z=node.exe.?CopyContents@ArrayBufferView@v8@@QEAA_KPEAX_K@Z + ?CopyGlobalReference@api_internal@v8@@YAPEA_KPEA_K@Z=node.exe.?CopyGlobalReference@api_internal@v8@@YAPEA_KPEA_K@Z + ?CopyNameForHeapSnapshot@HeapProfiler@v8@@QEAAPEBDPEBD@Z=node.exe.?CopyNameForHeapSnapshot@HeapProfiler@v8@@QEAAPEBDPEBD@Z + ?CopyTracedReference@internal@v8@@YAXPEBQEB_KPEAPEA_K@Z=node.exe.?CopyTracedReference@internal@v8@@YAXPEBQEB_KPEAPEA_K@Z + ?Create@ArrayBufferAllocator@node@@SA?AV?$unique_ptr@VArrayBufferAllocator@node@@U?$default_delete@VArrayBufferAllocator@node@@@__Cr@std@@@__Cr@std@@_N@Z=node.exe.?Create@ArrayBufferAllocator@node@@SA?AV?$unique_ptr@VArrayBufferAllocator@node@@U?$default_delete@VArrayBufferAllocator@node@@@__Cr@std@@@__Cr@std@@_N@Z + ?Create@CppHeap@v8@@SA?AV?$unique_ptr@VCppHeap@v8@@U?$default_delete@VCppHeap@v8@@@__Cr@std@@@__Cr@std@@PEAVPlatform@2@AEBUCppHeapCreateParams@2@@Z=node.exe.?Create@CppHeap@v8@@SA?AV?$unique_ptr@VCppHeap@v8@@U?$default_delete@VCppHeap@v8@@@__Cr@std@@@__Cr@std@@PEAVPlatform@2@AEBUCppHeapCreateParams@2@@Z + ?Create@Heap@cppgc@@SA?AV?$unique_ptr@VHeap@cppgc@@U?$default_delete@VHeap@cppgc@@@__Cr@std@@@__Cr@std@@V?$shared_ptr@VPlatform@cppgc@@@45@UHeapOptions@12@@Z=node.exe.?Create@Heap@cppgc@@SA?AV?$unique_ptr@VHeap@cppgc@@U?$default_delete@VHeap@cppgc@@@__Cr@std@@@__Cr@std@@V?$shared_ptr@VPlatform@cppgc@@@45@UHeapOptions@12@@Z + ?Create@MultiIsolatePlatform@node@@SA?AV?$unique_ptr@VMultiIsolatePlatform@node@@U?$default_delete@VMultiIsolatePlatform@node@@@__Cr@std@@@__Cr@std@@HPEAVTracingController@v8@@PEAVPageAllocator@7@@Z=node.exe.?Create@MultiIsolatePlatform@node@@SA?AV?$unique_ptr@VMultiIsolatePlatform@node@@U?$default_delete@VMultiIsolatePlatform@node@@@__Cr@std@@@__Cr@std@@HPEAVTracingController@v8@@PEAVPageAllocator@7@@Z + ?CreateAgent@node@@YAPEAVAgent@tracing@1@XZ=node.exe.?CreateAgent@node@@YAPEAVAgent@tracing@1@XZ + ?CreateArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@XZ=node.exe.?CreateArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@XZ + ?CreateBlob@SnapshotCreator@v8@@QEAA?AVStartupData@2@W4FunctionCodeHandling@12@@Z=node.exe.?CreateBlob@SnapshotCreator@v8@@QEAA?AVStartupData@2@W4FunctionCodeHandling@12@@Z + ?CreateCachedData@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?CreateCachedData@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundModuleScript@v8@@@2@@Z=node.exe.?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundModuleScript@v8@@@2@@Z + ?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundScript@v8@@@2@@Z=node.exe.?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundScript@v8@@@2@@Z + ?CreateCodeCacheForFunction@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VFunction@v8@@@2@@Z=node.exe.?CreateCodeCacheForFunction@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VFunction@v8@@@2@@Z + ?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z=node.exe.?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z + ?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?CreateEnvironment@node@@YAPEAVEnvironment@1@PEAVIsolateData@1@V?$Local@VContext@v8@@@v8@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@2W4Flags@EnvironmentFlags@1@UThreadId@1@V?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@78@@Z=node.exe.?CreateEnvironment@node@@YAPEAVEnvironment@1@PEAVIsolateData@1@V?$Local@VContext@v8@@@v8@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@2W4Flags@EnvironmentFlags@1@UThreadId@1@V?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@78@@Z + ?CreateForSnapshotting@CommonEnvironmentSetup@node@@SA?AV?$unique_ptr@VCommonEnvironmentSetup@node@@U?$default_delete@VCommonEnvironmentSetup@node@@@__Cr@std@@@__Cr@std@@PEAVMultiIsolatePlatform@2@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@45@AEBV745@2AEBUSnapshotConfig@2@@Z=node.exe.?CreateForSnapshotting@CommonEnvironmentSetup@node@@SA?AV?$unique_ptr@VCommonEnvironmentSetup@node@@U?$default_delete@VCommonEnvironmentSetup@node@@@__Cr@std@@@__Cr@std@@PEAVMultiIsolatePlatform@2@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@45@AEBV745@2AEBUSnapshotConfig@2@@Z + ?CreateHandle@HandleScope@v8@@KAPEA_KPEAVIsolate@internal@2@_K@Z=node.exe.?CreateHandle@HandleScope@v8@@KAPEA_KPEAVIsolate@internal@2@_K@Z + ?CreateIsolateData@node@@YAPEAVIsolateData@1@PEAVIsolate@v8@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEAVArrayBufferAllocator@1@PEBVEmbedderSnapshotData@1@@Z=node.exe.?CreateIsolateData@node@@YAPEAVIsolateData@1@PEAVIsolate@v8@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEAVArrayBufferAllocator@1@PEBVEmbedderSnapshotData@1@@Z + ?CreateMessage@Exception@v8@@SA?AV?$Local@VMessage@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?CreateMessage@Exception@v8@@SA?AV?$Local@VMessage@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + ?CreatePerContextProperties@ModuleWrap@loader@node@@SAXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@5@V?$Local@VContext@v8@@@5@PEAX@Z=node.exe.?CreatePerContextProperties@ModuleWrap@loader@node@@SAXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@5@V?$Local@VContext@v8@@@5@PEAX@Z + ?CreatePerIsolateProperties@ModuleWrap@loader@node@@SAXPEAVIsolateData@3@V?$Local@VObjectTemplate@v8@@@v8@@@Z=node.exe.?CreatePerIsolateProperties@ModuleWrap@loader@node@@SAXPEAVIsolateData@3@V?$Local@VObjectTemplate@v8@@@v8@@@Z + ?CreatePlatform@node@@YAPEAVMultiIsolatePlatform@1@HPEAVTracingController@v8@@@Z=node.exe.?CreatePlatform@node@@YAPEAVMultiIsolatePlatform@1@HPEAVTracingController@v8@@@Z + ?CreateSnapshot@CommonEnvironmentSetup@node@@QEAA?AV?$unique_ptr@$$CBVEmbedderSnapshotData@node@@UDeleteSnapshotData@12@@__Cr@std@@XZ=node.exe.?CreateSnapshot@CommonEnvironmentSetup@node@@QEAA?AV?$unique_ptr@$$CBVEmbedderSnapshotData@node@@UDeleteSnapshotData@12@@__Cr@std@@XZ + ?CreateSyntheticModule@Module@v8@@SA?AV?$Local@VModule@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@AEBV?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@2@P6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V32@@Z@Z=node.exe.?CreateSyntheticModule@Module@v8@@SA?AV?$Local@VModule@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@AEBV?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@2@P6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V32@@Z@Z + ?Current@SourceLocation@v8@@SA?AV12@PEBD0_K@Z=node.exe.?Current@SourceLocation@v8@@SA?AV12@PEBD0_K@Z + ?CurrentScriptNameOrSourceURL@StackTrace@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z=node.exe.?CurrentScriptNameOrSourceURL@StackTrace@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + ?CurrentStackTrace@StackTrace@v8@@SA?AV?$Local@VStackTrace@v8@@@2@PEAVIsolate@2@HW4StackTraceOptions@12@@Z=node.exe.?CurrentStackTrace@StackTrace@v8@@SA?AV?$Local@VStackTrace@v8@@@2@PEAVIsolate@2@HW4StackTraceOptions@12@@Z + ?DCheckImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z=node.exe.?DCheckImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z + ?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?Data@ArrayBuffer@v8@@QEBAPEAXXZ=node.exe.?Data@ArrayBuffer@v8@@QEBAPEAXXZ + ?Data@BackingStore@v8@@QEBAPEAXXZ=node.exe.?Data@BackingStore@v8@@QEBAPEAXXZ + ?Data@Buffer@node@@YAPEADV?$Local@VObject@v8@@@v8@@@Z=node.exe.?Data@Buffer@node@@YAPEADV?$Local@VObject@v8@@@v8@@@Z + ?Data@Buffer@node@@YAPEADV?$Local@VValue@v8@@@v8@@@Z=node.exe.?Data@Buffer@node@@YAPEADV?$Local@VValue@v8@@@v8@@@Z + ?Data@SharedArrayBuffer@v8@@QEBAPEAXXZ=node.exe.?Data@SharedArrayBuffer@v8@@QEBAPEAXXZ + ?DateTimeConfigurationChangeNotification@Isolate@v8@@QEAAXW4TimeZoneDetection@12@@Z=node.exe.?DateTimeConfigurationChangeNotification@Isolate@v8@@QEAAXW4TimeZoneDetection@12@@Z + ?DebugCommand@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?DebugCommand@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?DecodeBytes@node@@YA_JPEAVIsolate@v8@@V?$Local@VValue@v8@@@3@W4encoding@1@@Z=node.exe.?DecodeBytes@node@@YA_JPEAVIsolate@v8@@V?$Local@VValue@v8@@@3@W4encoding@1@@Z + ?DecodeWrite@node@@YA_JPEAVIsolate@v8@@PEAD_KV?$Local@VValue@v8@@@3@W4encoding@1@@Z=node.exe.?DecodeWrite@node@@YA_JPEAVIsolate@v8@@PEAD_KV?$Local@VValue@v8@@@3@W4encoding@1@@Z + ?DeepFreeze@Context@v8@@QEAA?AV?$Maybe@X@2@PEAVDeepFreezeDelegate@12@@Z=node.exe.?DeepFreeze@Context@v8@@QEAA?AV?$Maybe@X@2@PEAVDeepFreezeDelegate@12@@Z + ?Default@MeasureMemoryDelegate@v8@@SA?AV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@W4MeasureMemoryMode@2@@Z=node.exe.?Default@MeasureMemoryDelegate@v8@@SA?AV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@W4MeasureMemoryMode@2@@Z + ?DefaultProcessExitHandler@node@@YAXPEAVEnvironment@1@H@Z=node.exe.?DefaultProcessExitHandler@node@@YAXPEAVEnvironment@1@H@Z + ?DeferTraceToMutatorThreadIfConcurrent@Visitor@cppgc@@UEAA_NPEBXP6AXPEAV12@0@Z_K@Z=node.exe.?DeferTraceToMutatorThreadIfConcurrent@Visitor@cppgc@@UEAA_NPEBXP6AXPEAV12@0@Z_K@Z + ?DefineOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@W4PropertyAttribute@2@@Z=node.exe.?DefineOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@W4PropertyAttribute@2@@Z + ?DefineProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@AEAVPropertyDescriptor@2@@Z=node.exe.?DefineProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@AEAVPropertyDescriptor@2@@Z + ?Delete@CpuProfile@v8@@QEAAXXZ=node.exe.?Delete@CpuProfile@v8@@QEAAXXZ + ?Delete@HeapSnapshot@v8@@QEAAXXZ=node.exe.?Delete@HeapSnapshot@v8@@QEAAXXZ + ?Delete@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Delete@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z=node.exe.?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + ?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Delete@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Delete@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?DeleteAllHeapSnapshots@HeapProfiler@v8@@QEAAXXZ=node.exe.?DeleteAllHeapSnapshots@HeapProfiler@v8@@QEAAXXZ + ?DeletePrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z=node.exe.?DeletePrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + ?DependOnArrayBufferDetachingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnArrayBufferDetachingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnArrayIteratorProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnArrayIteratorProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnArraySpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnArraySpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnConsistentJSFunctionView@CompilationDependencies@compiler@internal@v8@@QEAAXVJSFunctionRef@234@@Z=node.exe.?DependOnConsistentJSFunctionView@CompilationDependencies@compiler@internal@v8@@QEAAXVJSFunctionRef@234@@Z + ?DependOnConstantInDictionaryPrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@VNameRef@234@VObjectRef@234@W4PropertyKind@34@@Z=node.exe.?DependOnConstantInDictionaryPrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@VNameRef@234@VObjectRef@234@W4PropertyKind@34@@Z + ?DependOnElementsKind@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z=node.exe.?DependOnElementsKind@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z + ?DependOnElementsKinds@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z=node.exe.?DependOnElementsKinds@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z + ?DependOnFieldConstness@CompilationDependencies@compiler@internal@v8@@QEAA?AW4PropertyConstness@34@VMapRef@234@0VInternalIndex@34@@Z=node.exe.?DependOnFieldConstness@CompilationDependencies@compiler@internal@v8@@QEAA?AW4PropertyConstness@34@VMapRef@234@0VInternalIndex@34@@Z + ?DependOnGlobalProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVPropertyCellRef@234@@Z=node.exe.?DependOnGlobalProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVPropertyCellRef@234@@Z + ?DependOnInitialMap@CompilationDependencies@compiler@internal@v8@@QEAA?AVMapRef@234@VJSFunctionRef@234@@Z=node.exe.?DependOnInitialMap@CompilationDependencies@compiler@internal@v8@@QEAA?AVMapRef@234@VJSFunctionRef@234@@Z + ?DependOnInitialMapInstanceSizePrediction@CompilationDependencies@compiler@internal@v8@@QEAA?AVSlackTrackingPrediction@234@VJSFunctionRef@234@@Z=node.exe.?DependOnInitialMapInstanceSizePrediction@CompilationDependencies@compiler@internal@v8@@QEAA?AVSlackTrackingPrediction@234@VJSFunctionRef@234@@Z + ?DependOnMegaDOMProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnMegaDOMProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnNoElementsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnNoElementsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnNoProfilingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnNoProfilingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnNoSlackTrackingChange@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z=node.exe.?DependOnNoSlackTrackingChange@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z + ?DependOnNoUndetectableObjectsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnNoUndetectableObjectsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnObjectSlotValue@CompilationDependencies@compiler@internal@v8@@QEAAXVHeapObjectRef@234@HVObjectRef@234@@Z=node.exe.?DependOnObjectSlotValue@CompilationDependencies@compiler@internal@v8@@QEAAXVHeapObjectRef@234@HVObjectRef@234@@Z + ?DependOnOwnConstantDataProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VObjectRef@234@@Z=node.exe.?DependOnOwnConstantDataProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VObjectRef@234@@Z + ?DependOnOwnConstantDictionaryProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VInternalIndex@34@VObjectRef@234@@Z=node.exe.?DependOnOwnConstantDictionaryProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VInternalIndex@34@VObjectRef@234@@Z + ?DependOnOwnConstantDoubleProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VFloat64@34@@Z=node.exe.?DependOnOwnConstantDoubleProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VFloat64@34@@Z + ?DependOnOwnConstantElement@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@IVObjectRef@234@@Z=node.exe.?DependOnOwnConstantElement@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@IVObjectRef@234@@Z + ?DependOnPretenureMode@CompilationDependencies@compiler@internal@v8@@QEAA?AW4AllocationType@34@VAllocationSiteRef@234@@Z=node.exe.?DependOnPretenureMode@CompilationDependencies@compiler@internal@v8@@QEAA?AW4AllocationType@34@VAllocationSiteRef@234@@Z + ?DependOnPromiseHookProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnPromiseHookProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnPromiseSpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnPromiseSpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnPromiseThenProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnPromiseThenProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?DependOnProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NVPropertyCellRef@234@@Z=node.exe.?DependOnProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NVPropertyCellRef@234@@Z + ?DependOnPrototypeProperty@CompilationDependencies@compiler@internal@v8@@QEAA?AVHeapObjectRef@234@VJSFunctionRef@234@@Z=node.exe.?DependOnPrototypeProperty@CompilationDependencies@compiler@internal@v8@@QEAA?AVHeapObjectRef@234@VJSFunctionRef@234@@Z + ?DependOnScriptContextSlotProperty@CompilationDependencies@compiler@internal@v8@@QEAA_NVContextRef@234@_KW4Property@ContextSidePropertyCell@34@PEAVJSHeapBroker@234@@Z=node.exe.?DependOnScriptContextSlotProperty@CompilationDependencies@compiler@internal@v8@@QEAA_NVContextRef@234@_KW4Property@ContextSidePropertyCell@34@PEAVJSHeapBroker@234@@Z + ?DependOnStableMap@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z=node.exe.?DependOnStableMap@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z + ?DependOnStablePrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z=node.exe.?DependOnStablePrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z + ?DependOnStablePrototypeChains@CompilationDependencies@compiler@internal@v8@@QEAAXAEBV?$ZoneVector@VMapRef@compiler@internal@v8@@@34@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z=node.exe.?DependOnStablePrototypeChains@CompilationDependencies@compiler@internal@v8@@QEAAXAEBV?$ZoneVector@VMapRef@compiler@internal@v8@@@34@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z + ?DependOnStringWrapperToPrimitiveProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ=node.exe.?DependOnStringWrapperToPrimitiveProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + ?Dequeue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAPEAVTurbofanCompilationJob@23@XZ=node.exe.?Dequeue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAPEAVTurbofanCompilationJob@23@XZ + ?Description@Symbol@v8@@QEBA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@@Z=node.exe.?Description@Symbol@v8@@QEBA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@@Z + ?Detach@ArrayBuffer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Detach@ArrayBuffer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VValue@v8@@@2@@Z + ?Detach@ArrayBuffer@v8@@QEAAXXZ=node.exe.?Detach@ArrayBuffer@v8@@QEAAXXZ + ?DetachCppHeap@Isolate@v8@@QEAAXXZ=node.exe.?DetachCppHeap@Isolate@v8@@QEAAXXZ + ?DetachGlobal@Context@v8@@QEAAXXZ=node.exe.?DetachGlobal@Context@v8@@QEAAXXZ + ?DijkstraMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z=node.exe.?DijkstraMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z + ?DijkstraMarkingBarrierRange@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z=node.exe.?DijkstraMarkingBarrierRange@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z + ?DijkstraMarkingBarrierRangeSlow@WriteBarrier@internal@cppgc@@CAXAEAVHeapHandle@3@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z=node.exe.?DijkstraMarkingBarrierRangeSlow@WriteBarrier@internal@cppgc@@CAXAEAVHeapHandle@3@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z + ?DijkstraMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z=node.exe.?DijkstraMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z + ?DijkstraMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z=node.exe.?DijkstraMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z + ?Disable@CodeEventHandler@v8@@QEAAXXZ=node.exe.?Disable@CodeEventHandler@v8@@QEAAXXZ + ?DiscardThreadSpecificMetadata@Isolate@v8@@QEAAXXZ=node.exe.?DiscardThreadSpecificMetadata@Isolate@v8@@QEAAXXZ + ?Dispose@CpuProfiler@v8@@QEAAXXZ=node.exe.?Dispose@CpuProfiler@v8@@QEAAXXZ + ?Dispose@ExternalStringResourceBase@String@v8@@MEAAXXZ=node.exe.?Dispose@ExternalStringResourceBase@String@v8@@MEAAXXZ + ?Dispose@Isolate@v8@@QEAAXXZ=node.exe.?Dispose@Isolate@v8@@QEAAXXZ + ?Dispose@V8@v8@@SA_NXZ=node.exe.?Dispose@V8@v8@@SA_NXZ + ?DisposeGlobal@api_internal@v8@@YAXPEA_K@Z=node.exe.?DisposeGlobal@api_internal@v8@@YAXPEA_K@Z + ?DisposePlatform@V8@v8@@SAXXZ=node.exe.?DisposePlatform@V8@v8@@SAXXZ + ?DisposeTracedReference@internal@v8@@YAXPEA_K@Z=node.exe.?DisposeTracedReference@internal@v8@@YAXPEA_K@Z + ?DumpAndResetStats@Isolate@v8@@QEAAXXZ=node.exe.?DumpAndResetStats@Isolate@v8@@QEAAXXZ + ?DumpAsyncTaskStacksStateForTest@v8_inspector@@YAXPEAVV8Inspector@1@@Z=node.exe.?DumpAsyncTaskStacksStateForTest@v8_inspector@@YAXPEAVV8Inspector@1@@Z + ?EmitAsyncDestroy@node@@YAXPEAVEnvironment@1@Uasync_context@1@@Z=node.exe.?EmitAsyncDestroy@node@@YAXPEAVEnvironment@1@Uasync_context@1@@Z + ?EmitAsyncDestroy@node@@YAXPEAVIsolate@v8@@Uasync_context@1@@Z=node.exe.?EmitAsyncDestroy@node@@YAXPEAVIsolate@v8@@Uasync_context@1@@Z + ?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@PEBDN@Z=node.exe.?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@PEBDN@Z + ?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@V?$Local@VString@v8@@@4@N@Z=node.exe.?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@V?$Local@VString@v8@@@4@N@Z + ?EmitBeforeExit@node@@YAXPEAVEnvironment@1@@Z=node.exe.?EmitBeforeExit@node@@YAXPEAVEnvironment@1@@Z + ?EmitExit@node@@YAHPEAVEnvironment@1@@Z=node.exe.?EmitExit@node@@YAHPEAVEnvironment@1@@Z + ?EmitProcessBeforeExit@node@@YA?AV?$Maybe@_N@v8@@PEAVEnvironment@1@@Z=node.exe.?EmitProcessBeforeExit@node@@YA?AV?$Maybe@_N@v8@@PEAVEnvironment@1@@Z + ?EmitProcessExit@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z=node.exe.?EmitProcessExit@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z + ?Empty@JitPageReference@ThreadIsolation@internal@v8@@QEBA_NXZ=node.exe.?Empty@JitPageReference@ThreadIsolation@internal@v8@@QEBA_NXZ + ?Empty@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z=node.exe.?Empty@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + ?EmptyDeleter@BackingStore@v8@@SAXPEAX_K0@Z=node.exe.?EmptyDeleter@BackingStore@v8@@SAXPEAX_K0@Z + ?Enable@CodeEventHandler@v8@@QEAAXXZ=node.exe.?Enable@CodeEventHandler@v8@@QEAAXXZ + ?EnableDetachedGarbageCollectionsForTesting@CppHeap@v8@@QEAAXXZ=node.exe.?EnableDetachedGarbageCollectionsForTesting@CppHeap@v8@@QEAAXXZ + ?EnableWebAssemblyTrapHandler@V8@v8@@SA_N_N@Z=node.exe.?EnableWebAssemblyTrapHandler@V8@v8@@SA_N_N@Z + ?Enabled@ThreadIsolation@internal@v8@@SA_NXZ=node.exe.?Enabled@ThreadIsolation@internal@v8@@SA_NXZ + ?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBD_KW4encoding@1@@Z=node.exe.?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBD_KW4encoding@1@@Z + ?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBG_K@Z=node.exe.?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBG_K@Z + ?End@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ=node.exe.?End@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + ?Enqueue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVTurbofanCompilationJob@23@@Z=node.exe.?Enqueue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVTurbofanCompilationJob@23@@Z + ?EnqueueMicrotask@Isolate@v8@@QEAAXP6AXPEAX@Z0@Z=node.exe.?EnqueueMicrotask@Isolate@v8@@QEAAXP6AXPEAX@Z0@Z + ?EnqueueMicrotask@Isolate@v8@@QEAAXV?$Local@VFunction@v8@@@2@@Z=node.exe.?EnqueueMicrotask@Isolate@v8@@QEAAXV?$Local@VFunction@v8@@@2@@Z + ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@Z@Z=node.exe.?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@Z@Z + ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z=node.exe.?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z + ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@Z@Z=node.exe.?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@Z@Z + ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z=node.exe.?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z + ?Enter@Context@v8@@QEAAXXZ=node.exe.?Enter@Context@v8@@QEAAXXZ + ?Enter@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z=node.exe.?Enter@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + ?Enter@Isolate@v8@@QEAAXXZ=node.exe.?Enter@Isolate@v8@@QEAAXXZ + ?Enter@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z=node.exe.?Enter@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + ?Equals@Value@v8@@QEBA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Equals@Value@v8@@QEBA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?ErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z=node.exe.?ErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z + ?Error@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?Error@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?ErrorLevel@Message@v8@@QEBAHXZ=node.exe.?ErrorLevel@Message@v8@@QEBAHXZ + ?EscapeSlot@EscapableHandleScopeBase@v8@@IEAAPEA_KPEA_K@Z=node.exe.?EscapeSlot@EscapableHandleScopeBase@v8@@IEAAPEA_KPEA_K@Z + ?Eternalize@api_internal@v8@@YAPEA_KPEAVIsolate@2@PEAVValue@2@@Z=node.exe.?Eternalize@api_internal@v8@@YAPEA_KPEAVIsolate@2@PEAVValue@2@@Z + ?Evaluate@Module@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?Evaluate@Module@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?Evaluate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?Evaluate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?EvaluateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?EvaluateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?Exception@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?Exception@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?Exception@TryCatch@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?Exception@TryCatch@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?Exec@RegExp@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z=node.exe.?Exec@RegExp@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + ?Exit@Context@v8@@QEAAXXZ=node.exe.?Exit@Context@v8@@QEAAXXZ + ?Exit@Isolate@v8@@QEAAXXZ=node.exe.?Exit@Isolate@v8@@QEAAXXZ + ?Expand@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z=node.exe.?Expand@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z + ?Experimental_IsNopFunction@Function@v8@@QEBA_NXZ=node.exe.?Experimental_IsNopFunction@Function@v8@@QEBA_NXZ + ?Fatal@internal@cppgc@@YAXAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@AEBVSourceLocation@v8@@@Z=node.exe.?Fatal@internal@cppgc@@YAXAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@AEBVSourceLocation@v8@@@Z + ?FatalException@node@@YAXPEAVIsolate@v8@@AEBVTryCatch@3@@Z=node.exe.?FatalException@node@@YAXPEAVIsolate@v8@@AEBVTryCatch@3@@Z + ?FatalImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z=node.exe.?FatalImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z + ?FieldRepresentationDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VRepresentation@34@@Z=node.exe.?FieldRepresentationDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VRepresentation@34@@Z + ?FieldTypeDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VObjectRef@234@@Z=node.exe.?FieldTypeDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VObjectRef@234@@Z + ?FileName@SourceLocation@v8@@QEBAPEBDXZ=node.exe.?FileName@SourceLocation@v8@@QEBAPEBDXZ + ?FinalizeGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXW4EmbedderStackState@3@@Z=node.exe.?FinalizeGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXW4EmbedderStackState@3@@Z + ?FindInstanceInPrototypeChain@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@@Z=node.exe.?FindInstanceInPrototypeChain@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + ?FindKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAPEAVDictionaryValue@protocol@2@V?$Local@VValue@v8@@@v8@@@Z=node.exe.?FindKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAPEAVDictionaryValue@protocol@2@V?$Local@VValue@v8@@@v8@@@Z + ?FindObjectById@HeapProfiler@v8@@QEAA?AV?$Local@VValue@v8@@@2@I@Z=node.exe.?FindObjectById@HeapProfiler@v8@@QEAA?AV?$Local@VValue@v8@@@2@I@Z + ?Finish@WasmStreaming@v8@@QEAAX_N@Z=node.exe.?Finish@WasmStreaming@v8@@QEAAX_N@Z + ?Flush@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVIsolate@23@@Z=node.exe.?Flush@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVIsolate@23@@Z + ?For@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?For@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?ForApi@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?ForApi@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?ForApi@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?ForApi@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?ForceCompactionForNextGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ=node.exe.?ForceCompactionForNextGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ + ?ForceGarbageCollectionSlow@Heap@cppgc@@QEAAXPEBD0W4EmbedderStackState@2@@Z=node.exe.?ForceGarbageCollectionSlow@Heap@cppgc@@QEAAXPEBD0W4EmbedderStackState@2@@Z + ?FreeArrayBufferAllocator@node@@YAXPEAVArrayBufferAllocator@1@@Z=node.exe.?FreeArrayBufferAllocator@node@@YAXPEAVArrayBufferAllocator@1@@Z + ?FreeBufferMemory@Delegate@ValueSerializer@v8@@UEAAXPEAX@Z=node.exe.?FreeBufferMemory@Delegate@ValueSerializer@v8@@UEAAXPEAX@Z + ?FreeEnvironment@node@@YAXPEAVEnvironment@1@@Z=node.exe.?FreeEnvironment@node@@YAXPEAVEnvironment@1@@Z + ?FreeIsolateData@node@@YAXPEAVIsolateData@1@@Z=node.exe.?FreeIsolateData@node@@YAXPEAVIsolateData@1@@Z + ?FreeNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z=node.exe.?FreeNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z + ?FreeNode@PersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z=node.exe.?FreeNode@PersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z + ?FreeNode@PersistentRegionBase@internal@cppgc@@IEAAXPEAVPersistentNode@23@@Z=node.exe.?FreeNode@PersistentRegionBase@internal@cppgc@@IEAAXPEAVPersistentNode@23@@Z + ?FreePlatform@node@@YAXPEAVMultiIsolatePlatform@1@@Z=node.exe.?FreePlatform@node@@YAXPEAVMultiIsolatePlatform@1@@Z + ?FreeUnreferencedObject@ExplicitManagementImpl@internal@cppgc@@CAXAEAVHeapHandle@3@PEAX@Z=node.exe.?FreeUnreferencedObject@ExplicitManagementImpl@internal@cppgc@@CAXAEAVHeapHandle@3@PEAX@Z + ?FromCompiledModule@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@AEBVCompiledWasmModule@2@@Z=node.exe.?FromCompiledModule@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@AEBVCompiledWasmModule@2@@Z + ?FromJustIsNothing@api_internal@v8@@YAXXZ=node.exe.?FromJustIsNothing@api_internal@v8@@YAXXZ + ?FromSnapshot@Context@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@_KUDeserializeInternalFieldsCallback@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VValue@v8@@@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z=node.exe.?FromSnapshot@Context@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@_KUDeserializeInternalFieldsCallback@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VValue@v8@@@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z + ?FullIsFalse@Value@v8@@AEBA_NXZ=node.exe.?FullIsFalse@Value@v8@@AEBA_NXZ + ?FullIsNull@Value@v8@@AEBA_NXZ=node.exe.?FullIsNull@Value@v8@@AEBA_NXZ + ?FullIsString@Value@v8@@AEBA_NXZ=node.exe.?FullIsString@Value@v8@@AEBA_NXZ + ?FullIsTrue@Value@v8@@AEBA_NXZ=node.exe.?FullIsTrue@Value@v8@@AEBA_NXZ + ?FullIsUndefined@Value@v8@@AEBA_NXZ=node.exe.?FullIsUndefined@Value@v8@@AEBA_NXZ + ?Function@SourceLocation@v8@@QEBAPEBDXZ=node.exe.?Function@SourceLocation@v8@@QEBAPEBDXZ + ?FunctionProtoToString@Function@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?FunctionProtoToString@Function@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?GCInfoFromIndex@GCInfoTable@internal@cppgc@@QEBAAEBUGCInfo@23@G@Z=node.exe.?GCInfoFromIndex@GCInfoTable@internal@cppgc@@QEBAAEBUGCInfo@23@G@Z + ?GCInfoFromIndex@GlobalGCInfoTable@internal@cppgc@@SAAEBUGCInfo@23@G@Z=node.exe.?GCInfoFromIndex@GlobalGCInfoTable@internal@cppgc@@SAAEBUGCInfo@23@G@Z + ?GenerationalBarrierForSourceObjectSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@PEBXPEAVHeapHandle@3@@Z=node.exe.?GenerationalBarrierForSourceObjectSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@PEBXPEAVHeapHandle@3@@Z + ?GenerationalBarrierForUncompressedSlotSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z=node.exe.?GenerationalBarrierForUncompressedSlotSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z + ?GenerationalBarrierSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z=node.exe.?GenerationalBarrierSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z + ?Get@CageBaseGlobal@internal@cppgc@@SA_KXZ=node.exe.?Get@CageBaseGlobal@internal@cppgc@@SA_KXZ + ?Get@FixedArray@v8@@QEBA?AV?$Local@VData@v8@@@2@V?$Local@VContext@v8@@@2@H@Z=node.exe.?Get@FixedArray@v8@@QEBA?AV?$Local@VData@v8@@@2@V?$Local@VContext@v8@@@2@H@Z + ?Get@GlobalGCInfoTable@internal@cppgc@@SAAEBVGCInfoTable@23@XZ=node.exe.?Get@GlobalGCInfoTable@internal@cppgc@@SAAEBVGCInfoTable@23@XZ + ?Get@LongTaskStats@metrics@v8@@SA?AU123@PEAVIsolate@3@@Z=node.exe.?Get@LongTaskStats@metrics@v8@@SA?AU123@PEAVIsolate@3@@Z + ?Get@Map@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Get@Map@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Get@Message@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?Get@Message@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@I@Z=node.exe.?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@I@Z + ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$MaybeLocal@VObject@v8@@@2@@Z=node.exe.?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$MaybeLocal@VObject@v8@@@2@@Z + ?Get@PrimitiveArray@v8@@QEAA?AV?$Local@VPrimitive@v8@@@2@PEAVIsolate@2@H@Z=node.exe.?Get@PrimitiveArray@v8@@QEAA?AV?$Local@VPrimitive@v8@@@2@PEAVIsolate@2@H@Z + ?GetAddress@CFunction@v8@@QEBAPEBXXZ=node.exe.?GetAddress@CFunction@v8@@QEBAPEBXXZ + ?GetAge@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K@Z=node.exe.?GetAge@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K@Z + ?GetAgeForRange@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K0@Z=node.exe.?GetAgeForRange@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K0@Z + ?GetAgeTableSize@CagedHeapBase@internal@cppgc@@SA_KXZ=node.exe.?GetAgeTableSize@CagedHeapBase@internal@cppgc@@SA_KXZ + ?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXH@Z=node.exe.?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXH@Z + ?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXPEAVIsolate@2@H@Z=node.exe.?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXPEAVIsolate@2@H@Z + ?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXH@Z=node.exe.?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXH@Z + ?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z=node.exe.?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z + ?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXH@Z=node.exe.?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXH@Z + ?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z=node.exe.?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z + ?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$BasicTracedReference@VObject@v8@@@2@H@Z=node.exe.?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$BasicTracedReference@VObject@v8@@@2@H@Z + ?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$PersistentBase@VObject@v8@@@2@H@Z=node.exe.?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$PersistentBase@VObject@v8@@@2@H@Z + ?GetAllocationHandle@CppHeap@v8@@QEAAAEAVAllocationHandle@cppgc@@XZ=node.exe.?GetAllocationHandle@CppHeap@v8@@QEAAAEAVAllocationHandle@cppgc@@XZ + ?GetAllocationHandle@Heap@cppgc@@QEAAAEAVAllocationHandle@2@XZ=node.exe.?GetAllocationHandle@Heap@cppgc@@QEAAAEAVAllocationHandle@2@XZ + ?GetAllocationProfile@HeapProfiler@v8@@QEAAPEAVAllocationProfile@2@XZ=node.exe.?GetAllocationProfile@HeapProfiler@v8@@QEAAPEAVAllocationProfile@2@XZ + ?GetAnonymousMainPath@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ=node.exe.?GetAnonymousMainPath@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + ?GetArrayBufferAllocator@Isolate@v8@@QEAAPEAVAllocator@ArrayBuffer@2@XZ=node.exe.?GetArrayBufferAllocator@Isolate@v8@@QEAAPEAVAllocator@ArrayBuffer@2@XZ + ?GetArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@PEAVIsolateData@1@@Z=node.exe.?GetArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@PEAVIsolateData@1@@Z + ?GetAsyncIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetAsyncIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetBackingStore@ArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ=node.exe.?GetBackingStore@ArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ + ?GetBackingStore@SharedArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ=node.exe.?GetBackingStore@SharedArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ + ?GetBailoutReason@CpuProfileNode@v8@@QEBAPEBDXZ=node.exe.?GetBailoutReason@CpuProfileNode@v8@@QEBAPEBDXZ + ?GetBase@CagedHeapBase@internal@cppgc@@SA_KXZ=node.exe.?GetBase@CagedHeapBase@internal@cppgc@@SA_KXZ + ?GetBoundFunction@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetBoundFunction@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetBuild@Version@internal@v8@@SAHXZ=node.exe.?GetBuild@Version@internal@v8@@SAHXZ + ?GetChild@CpuProfileNode@v8@@QEBAPEBV12@H@Z=node.exe.?GetChild@CpuProfileNode@v8@@QEBAPEBV12@H@Z + ?GetChild@HeapGraphNode@v8@@QEBAPEBVHeapGraphEdge@2@H@Z=node.exe.?GetChild@HeapGraphNode@v8@@QEBAPEBVHeapGraphEdge@2@H@Z + ?GetChildrenCount@CpuProfileNode@v8@@QEBAHXZ=node.exe.?GetChildrenCount@CpuProfileNode@v8@@QEBAHXZ + ?GetChildrenCount@HeapGraphNode@v8@@QEBAHXZ=node.exe.?GetChildrenCount@HeapGraphNode@v8@@QEBAHXZ + ?GetChunkSize@OutputStream@v8@@UEAAHXZ=node.exe.?GetChunkSize@OutputStream@v8@@UEAAHXZ + ?GetCodeEventTypeName@CodeEvent@v8@@SAPEBDW4CodeEventType@2@@Z=node.exe.?GetCodeEventTypeName@CodeEvent@v8@@SAPEBDW4CodeEventType@2@@Z + ?GetCodeRange@Isolate@v8@@QEAAXPEAPEAXPEA_K@Z=node.exe.?GetCodeRange@Isolate@v8@@QEAAXPEAPEAXPEA_K@Z + ?GetCodeSize@CodeEvent@v8@@QEAA_KXZ=node.exe.?GetCodeSize@CodeEvent@v8@@QEAA_KXZ + ?GetCodeStartAddress@CodeEvent@v8@@QEAA_KXZ=node.exe.?GetCodeStartAddress@CodeEvent@v8@@QEAA_KXZ + ?GetCodeType@CodeEvent@v8@@QEAA?AW4CodeEventType@2@XZ=node.exe.?GetCodeType@CodeEvent@v8@@QEAA?AW4CodeEventType@2@XZ + ?GetColumn@StackFrame@v8@@QEBAHXZ=node.exe.?GetColumn@StackFrame@v8@@QEBAHXZ + ?GetColumnNumber@CpuProfileNode@v8@@QEBAHXZ=node.exe.?GetColumnNumber@CpuProfileNode@v8@@QEBAHXZ + ?GetColumnNumber@Location@v8@@QEAAHXZ=node.exe.?GetColumnNumber@Location@v8@@QEAAHXZ + ?GetColumnNumber@UnboundScript@v8@@QEAAHH@Z=node.exe.?GetColumnNumber@UnboundScript@v8@@QEAAHH@Z + ?GetComment@CodeEvent@v8@@QEAAPEBDXZ=node.exe.?GetComment@CodeEvent@v8@@QEAAPEBDXZ + ?GetCompileHints@CompileHintsCollector@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@PEAVIsolate@2@@Z=node.exe.?GetCompileHints@CompileHintsCollector@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@PEAVIsolate@2@@Z + ?GetCompileHintsCollector@Script@v8@@QEBA?AV?$Local@VCompileHintsCollector@v8@@@2@XZ=node.exe.?GetCompileHintsCollector@Script@v8@@QEBA?AV?$Local@VCompileHintsCollector@v8@@@2@XZ + ?GetCompiledModule@WasmModuleObject@v8@@QEAA?AVCompiledWasmModule@2@XZ=node.exe.?GetCompiledModule@WasmModuleObject@v8@@QEAA?AVCompiledWasmModule@2@XZ + ?GetConstructorName@Object@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetConstructorName@Object@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + ?GetContents@ArrayBufferView@v8@@QEAA?AV?$MemorySpan@E@2@V32@@Z=node.exe.?GetContents@ArrayBufferView@v8@@QEAA?AV?$MemorySpan@E@2@V32@@Z + ?GetContext@Recorder@metrics@v8@@SA?AV?$MaybeLocal@VContext@v8@@@3@PEAVIsolate@3@VContextId@123@@Z=node.exe.?GetContext@Recorder@metrics@v8@@SA?AV?$MaybeLocal@VContext@v8@@@3@PEAVIsolate@3@VContextId@123@@Z + ?GetContextId@Recorder@metrics@v8@@SA?AVContextId@123@V?$Local@VContext@v8@@@3@@Z=node.exe.?GetContextId@Recorder@metrics@v8@@SA?AVContextId@123@V?$Local@VContext@v8@@@3@@Z + ?GetContinuationPreservedEmbedderData@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetContinuationPreservedEmbedderData@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetCppHeap@Isolate@v8@@QEBAPEAVCppHeap@2@XZ=node.exe.?GetCppHeap@Isolate@v8@@QEBAPEAVCppHeap@2@XZ + ?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@@Z + ?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@XZ=node.exe.?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@XZ + ?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z=node.exe.?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z + ?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z=node.exe.?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z + ?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@@Z + ?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ=node.exe.?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + ?GetCurrent@Isolate@v8@@SAPEAV12@XZ=node.exe.?GetCurrent@Isolate@v8@@SAPEAV12@XZ + ?GetCurrentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ=node.exe.?GetCurrentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + ?GetCurrentDepth@MicrotasksScope@v8@@SAHPEAVIsolate@2@@Z=node.exe.?GetCurrentDepth@MicrotasksScope@v8@@SAHPEAVIsolate@2@@Z + ?GetCurrentEnvironment@node@@YAPEAVEnvironment@1@V?$Local@VContext@v8@@@v8@@@Z=node.exe.?GetCurrentEnvironment@node@@YAPEAVEnvironment@1@V?$Local@VContext@v8@@@v8@@@Z + ?GetCurrentEventLoop@node@@YAPEAUuv_loop_s@@PEAVIsolate@v8@@@Z=node.exe.?GetCurrentEventLoop@node@@YAPEAUuv_loop_s@@PEAVIsolate@v8@@@Z + ?GetCurrentHostDefinedOptions@Isolate@v8@@QEAA?AV?$MaybeLocal@VData@v8@@@2@XZ=node.exe.?GetCurrentHostDefinedOptions@Isolate@v8@@QEAA?AV?$MaybeLocal@VData@v8@@@2@XZ + ?GetData@Isolate@v8@@QEAAPEAXI@Z=node.exe.?GetData@Isolate@v8@@QEAAPEAXI@Z + ?GetDataFromSnapshotOnce@Context@v8@@AEAAPEA_K_K@Z=node.exe.?GetDataFromSnapshotOnce@Context@v8@@AEAAPEA_K_K@Z + ?GetDataFromSnapshotOnce@Isolate@v8@@AEAAPEA_K_K@Z=node.exe.?GetDataFromSnapshotOnce@Isolate@v8@@AEAAPEA_K_K@Z + ?GetDebugName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetDebugName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetDefaultLocale@Isolate@v8@@QEAA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ=node.exe.?GetDefaultLocale@Isolate@v8@@QEAA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + ?GetDeoptInfos@CpuProfileNode@v8@@QEBAAEBV?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@XZ=node.exe.?GetDeoptInfos@CpuProfileNode@v8@@QEBAAEBV?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@XZ + ?GetDetachedJSWrapperObjects@HeapProfiler@v8@@QEAA?AV?$vector@V?$Local@VValue@v8@@@v8@@V?$allocator@V?$Local@VValue@v8@@@v8@@@__Cr@std@@@__Cr@std@@XZ=node.exe.?GetDetachedJSWrapperObjects@HeapProfiler@v8@@QEAA?AV?$vector@V?$Local@VValue@v8@@@v8@@V?$allocator@V?$Local@VValue@v8@@@v8@@@__Cr@std@@@__Cr@std@@XZ + ?GetEmbeddedCodeRange@Isolate@v8@@QEAAXPEAPEBXPEA_K@Z=node.exe.?GetEmbeddedCodeRange@Isolate@v8@@QEAAXPEAPEBXPEA_K@Z + ?GetEmbedder@Version@internal@v8@@SAPEBDXZ=node.exe.?GetEmbedder@Version@internal@v8@@SAPEBDXZ + ?GetEmbedderData@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@H@Z=node.exe.?GetEmbedderData@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@H@Z + ?GetEndColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetEndColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + ?GetEndColumn@Message@v8@@QEBAHXZ=node.exe.?GetEndColumn@Message@v8@@QEBAHXZ + ?GetEndPosition@Message@v8@@QEBAHXZ=node.exe.?GetEndPosition@Message@v8@@QEBAHXZ + ?GetEndTime@CpuProfile@v8@@QEBA_JXZ=node.exe.?GetEndTime@CpuProfile@v8@@QEBA_JXZ + ?GetEnteredOrMicrotaskContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ=node.exe.?GetEnteredOrMicrotaskContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + ?GetEnvironmentIsolateData@node@@YAPEAVIsolateData@1@PEAVEnvironment@1@@Z=node.exe.?GetEnvironmentIsolateData@node@@YAPEAVIsolateData@1@PEAVEnvironment@1@@Z + ?GetError@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?GetError@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?GetException@Module@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetException@Module@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetExternalOneByteStringResource@String@v8@@QEBAPEBVExternalOneByteStringResource@12@XZ=node.exe.?GetExternalOneByteStringResource@String@v8@@QEBAPEBVExternalOneByteStringResource@12@XZ + ?GetExternalStringResource@String@v8@@QEBAPEAVExternalStringResource@12@XZ=node.exe.?GetExternalStringResource@String@v8@@QEBAPEAVExternalStringResource@12@XZ + ?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAVIsolate@2@PEAW4Encoding@12@@Z=node.exe.?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAVIsolate@2@PEAW4Encoding@12@@Z + ?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z=node.exe.?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z + ?GetExternalStringResourceBaseSlow@String@v8@@AEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z=node.exe.?GetExternalStringResourceBaseSlow@String@v8@@AEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z + ?GetExternalStringResourceSlow@String@v8@@AEBAPEAVExternalStringResource@12@XZ=node.exe.?GetExternalStringResourceSlow@String@v8@@AEBAPEAVExternalStringResource@12@XZ + ?GetExtrasBindingObject@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ=node.exe.?GetExtrasBindingObject@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + ?GetFlags@RegExp@v8@@QEBA?AW4Flags@12@XZ=node.exe.?GetFlags@RegExp@v8@@QEBA?AW4Flags@12@XZ + ?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@W4TaskPriority@v8@@@Z=node.exe.?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@W4TaskPriority@v8@@@Z + ?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@XZ=node.exe.?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@XZ + ?GetFrame@StackTrace@v8@@QEBA?AV?$Local@VStackFrame@v8@@@2@PEAVIsolate@2@I@Z=node.exe.?GetFrame@StackTrace@v8@@QEBA?AV?$Local@VStackFrame@v8@@@2@PEAVIsolate@2@I@Z + ?GetFrameCount@StackTrace@v8@@QEBAHXZ=node.exe.?GetFrameCount@StackTrace@v8@@QEBAHXZ + ?GetFromModule@ModuleWrap@loader@node@@SAPEAV123@PEAVEnvironment@3@V?$Local@VModule@v8@@@v8@@@Z=node.exe.?GetFromModule@ModuleWrap@loader@node@@SAPEAV123@PEAVEnvironment@3@V?$Local@VModule@v8@@@v8@@@Z + ?GetFromNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ=node.exe.?GetFromNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ + ?GetFunction@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetFunction@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?GetFunctionName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetFunctionName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + ?GetFunctionName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetFunctionName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetFunctionName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetFunctionName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetFunctionNameStr@CpuProfileNode@v8@@QEBAPEBDXZ=node.exe.?GetFunctionNameStr@CpuProfileNode@v8@@QEBAPEBDXZ + ?GetFunctionTemplateData@api_internal@v8@@YA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VData@v8@@@2@@Z=node.exe.?GetFunctionTemplateData@api_internal@v8@@YA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VData@v8@@@2@@Z + ?GetHandler@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetHandler@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetHasInstance@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetHasInstance@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetHeapCodeAndMetadataStatistics@Isolate@v8@@QEAA_NPEAVHeapCodeStatistics@2@@Z=node.exe.?GetHeapCodeAndMetadataStatistics@Isolate@v8@@QEAA_NPEAVHeapCodeStatistics@2@@Z + ?GetHeapHandle@CppHeap@v8@@QEAAAEAVHeapHandle@cppgc@@XZ=node.exe.?GetHeapHandle@CppHeap@v8@@QEAAAEAVHeapHandle@cppgc@@XZ + ?GetHeapHandle@Heap@cppgc@@QEAAAEAVHeapHandle@2@XZ=node.exe.?GetHeapHandle@Heap@cppgc@@QEAAAEAVHeapHandle@2@XZ + ?GetHeapObjectStatisticsAtLastGC@Isolate@v8@@QEAA_NPEAVHeapObjectStatistics@2@_K@Z=node.exe.?GetHeapObjectStatisticsAtLastGC@Isolate@v8@@QEAA_NPEAVHeapObjectStatistics@2@_K@Z + ?GetHeapProfiler@Isolate@v8@@QEAAPEAVHeapProfiler@2@XZ=node.exe.?GetHeapProfiler@Isolate@v8@@QEAAPEAVHeapProfiler@2@XZ + ?GetHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@H@Z=node.exe.?GetHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@H@Z + ?GetHeapSpaceStatistics@Isolate@v8@@QEAA_NPEAVHeapSpaceStatistics@2@_K@Z=node.exe.?GetHeapSpaceStatistics@Isolate@v8@@QEAA_NPEAVHeapSpaceStatistics@2@_K@Z + ?GetHeapStatistics@Isolate@v8@@QEAAXPEAVHeapStatistics@2@@Z=node.exe.?GetHeapStatistics@Isolate@v8@@QEAAXPEAVHeapStatistics@2@@Z + ?GetHeapStats@HeapProfiler@v8@@QEAAIPEAVOutputStream@2@PEA_J@Z=node.exe.?GetHeapStats@HeapProfiler@v8@@QEAAIPEAVOutputStream@2@PEA_J@Z + ?GetHitCount@CpuProfileNode@v8@@QEBAIXZ=node.exe.?GetHitCount@CpuProfileNode@v8@@QEBAIXZ + ?GetHitLineCount@CpuProfileNode@v8@@QEBAIXZ=node.exe.?GetHitLineCount@CpuProfileNode@v8@@QEBAIXZ + ?GetHostDefinedOptions@ScriptOrigin@v8@@QEBA?AV?$Local@VData@v8@@@2@XZ=node.exe.?GetHostDefinedOptions@ScriptOrigin@v8@@QEBA?AV?$Local@VData@v8@@@2@XZ + ?GetID@StackTrace@v8@@QEBAHXZ=node.exe.?GetID@StackTrace@v8@@QEBAHXZ + ?GetId@DiscardedSamplesDelegate@v8@@QEBAIXZ=node.exe.?GetId@DiscardedSamplesDelegate@v8@@QEBAIXZ + ?GetId@HeapGraphNode@v8@@QEBAIXZ=node.exe.?GetId@HeapGraphNode@v8@@QEBAIXZ + ?GetId@UnboundScript@v8@@QEBAHXZ=node.exe.?GetId@UnboundScript@v8@@QEBAHXZ + ?GetIdentityHash@Module@v8@@QEBAHXZ=node.exe.?GetIdentityHash@Module@v8@@QEBAHXZ + ?GetIdentityHash@Name@v8@@QEAAHXZ=node.exe.?GetIdentityHash@Name@v8@@QEAAHXZ + ?GetIdentityHash@Object@v8@@QEAAHXZ=node.exe.?GetIdentityHash@Object@v8@@QEAAHXZ + ?GetImportAssertions@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ=node.exe.?GetImportAssertions@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + ?GetImportAttributes@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ=node.exe.?GetImportAttributes@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + ?GetIncumbentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ=node.exe.?GetIncumbentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + ?GetInferredName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetInferredName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD2@Z=node.exe.?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD2@Z + ?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD@Z=node.exe.?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD@Z + ?GetInt64Representation@CFunction@v8@@QEBA?AW4Int64Representation@CFunctionInfo@2@XZ=node.exe.?GetInt64Representation@CFunction@v8@@QEBA?AW4Int64Representation@CFunctionInfo@2@XZ + ?GetInt64Representation@CFunctionInfo@v8@@QEBA?AW4Int64Representation@12@XZ=node.exe.?GetInt64Representation@CFunctionInfo@v8@@QEBA?AW4Int64Representation@12@XZ + ?GetInternalField@Object@v8@@QEAA?AV?$Local@VData@v8@@@2@H@Z=node.exe.?GetInternalField@Object@v8@@QEAA?AV?$Local@VData@v8@@@2@H@Z + ?GetIsConcatSpreadable@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetIsConcatSpreadable@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetIsolate@Context@v8@@QEAAPEAVIsolate@2@XZ=node.exe.?GetIsolate@Context@v8@@QEAAPEAVIsolate@2@XZ + ?GetIsolate@HandleScope@v8@@QEBAPEAVIsolate@2@XZ=node.exe.?GetIsolate@HandleScope@v8@@QEBAPEAVIsolate@2@XZ + ?GetIsolate@Message@v8@@QEBAPEAVIsolate@2@XZ=node.exe.?GetIsolate@Message@v8@@QEBAPEAVIsolate@2@XZ + ?GetIsolate@Object@v8@@QEAAPEAVIsolate@2@XZ=node.exe.?GetIsolate@Object@v8@@QEAAPEAVIsolate@2@XZ + ?GetIsolate@Object@v8@@SAPEAVIsolate@2@AEBV?$TracedReference@VObject@v8@@@2@@Z=node.exe.?GetIsolate@Object@v8@@SAPEAVIsolate@2@AEBV?$TracedReference@VObject@v8@@@2@@Z + ?GetIsolate@SnapshotCreator@v8@@QEAAPEAVIsolate@2@XZ=node.exe.?GetIsolate@SnapshotCreator@v8@@QEAAPEAVIsolate@2@XZ + ?GetIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetJSEntryStubs@Isolate@v8@@QEAA?AUJSEntryStubs@2@XZ=node.exe.?GetJSEntryStubs@Isolate@v8@@QEAA?AUJSEntryStubs@2@XZ + ?GetLineNumber@CpuProfileNode@v8@@QEBAHXZ=node.exe.?GetLineNumber@CpuProfileNode@v8@@QEBAHXZ + ?GetLineNumber@Location@v8@@QEAAHXZ=node.exe.?GetLineNumber@Location@v8@@QEAAHXZ + ?GetLineNumber@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetLineNumber@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + ?GetLineNumber@StackFrame@v8@@QEBAHXZ=node.exe.?GetLineNumber@StackFrame@v8@@QEBAHXZ + ?GetLineNumber@UnboundScript@v8@@QEAAHH@Z=node.exe.?GetLineNumber@UnboundScript@v8@@QEAAHH@Z + ?GetLineTicks@CpuProfileNode@v8@@QEBA_NPEAULineTick@12@I@Z=node.exe.?GetLineTicks@CpuProfileNode@v8@@QEBA_NPEAULineTick@12@I@Z + ?GetLocation@StackFrame@v8@@QEBA?AVLocation@2@XZ=node.exe.?GetLocation@StackFrame@v8@@QEBA?AVLocation@2@XZ + ?GetMainContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVEnvironment@1@@Z=node.exe.?GetMainContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVEnvironment@1@@Z + ?GetMajor@Version@internal@v8@@SAHXZ=node.exe.?GetMajor@Version@internal@v8@@SAHXZ + ?GetMatch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetMatch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetMaxSnapshotJSObjectId@HeapSnapshot@v8@@QEBAIXZ=node.exe.?GetMaxSnapshotJSObjectId@HeapSnapshot@v8@@QEBAIXZ + ?GetMicrotaskQueue@Context@v8@@QEAAPEAVMicrotaskQueue@2@XZ=node.exe.?GetMicrotaskQueue@Context@v8@@QEAAPEAVMicrotaskQueue@2@XZ + ?GetMicrotasksPolicy@Isolate@v8@@QEBA?AW4MicrotasksPolicy@2@XZ=node.exe.?GetMicrotasksPolicy@Isolate@v8@@QEBA?AW4MicrotasksPolicy@2@XZ + ?GetMinor@Version@internal@v8@@SAHXZ=node.exe.?GetMinor@Version@internal@v8@@SAHXZ + ?GetModuleNamespace@Module@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetModuleNamespace@Module@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetModuleRequests@Module@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ=node.exe.?GetModuleRequests@Module@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + ?GetModuleRequestsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?GetModuleRequestsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVEnvironment@1@@Z=node.exe.?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVEnvironment@1@@Z + ?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVIsolateData@1@@Z=node.exe.?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVIsolateData@1@@Z + ?GetMutable@GlobalGCInfoTable@internal@cppgc@@SAAEAVGCInfoTable@23@XZ=node.exe.?GetMutable@GlobalGCInfoTable@internal@cppgc@@SAAEAVGCInfoTable@23@XZ + ?GetName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetName@HeapGraphEdge@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetName@HeapGraphEdge@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetName@HeapGraphNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetName@HeapGraphNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetNameFromTypeSignature@NameTraitBase@internal@cppgc@@KA?AUHeapObjectName@23@PEBD@Z=node.exe.?GetNameFromTypeSignature@NameTraitBase@internal@cppgc@@KA?AUHeapObjectName@23@PEBD@Z + ?GetNamespace@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?GetNamespace@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?GetNamespaceSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?GetNamespaceSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?GetNativeFunctionTemplate@Extension@v8@@UEAA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?GetNativeFunctionTemplate@Extension@v8@@UEAA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?GetNode@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@H@Z=node.exe.?GetNode@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@H@Z + ?GetNodeById@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@I@Z=node.exe.?GetNodeById@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@I@Z + ?GetNodeId@CpuProfileNode@v8@@QEBAIXZ=node.exe.?GetNodeId@CpuProfileNode@v8@@QEBAIXZ + ?GetNodeReport@node@@YAXPEAVEnvironment@1@PEBD1V?$Local@VValue@v8@@@v8@@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z=node.exe.?GetNodeReport@node@@YAXPEAVEnvironment@1@PEBD1V?$Local@VValue@v8@@@v8@@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + ?GetNodeReport@node@@YAXPEAVIsolate@v8@@PEBD1V?$Local@VValue@v8@@@3@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z=node.exe.?GetNodeReport@node@@YAXPEAVIsolate@v8@@PEBD1V?$Local@VValue@v8@@@3@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + ?GetNodesCount@HeapSnapshot@v8@@QEBAHXZ=node.exe.?GetNodesCount@HeapSnapshot@v8@@QEBAHXZ + ?GetNumberOfDataSlots@Isolate@v8@@SAIXZ=node.exe.?GetNumberOfDataSlots@Isolate@v8@@SAIXZ + ?GetNumberOfEmbedderDataFields@Context@v8@@QEAAIXZ=node.exe.?GetNumberOfEmbedderDataFields@Context@v8@@QEAAIXZ + ?GetObjectId@HeapProfiler@v8@@QEAAIPEAX@Z=node.exe.?GetObjectId@HeapProfiler@v8@@QEAAIPEAX@Z + ?GetObjectId@HeapProfiler@v8@@QEAAIV?$Local@VValue@v8@@@2@@Z=node.exe.?GetObjectId@HeapProfiler@v8@@QEAAIV?$Local@VValue@v8@@@2@@Z + ?GetObjectSizeForGarbageCollected@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z=node.exe.?GetObjectSizeForGarbageCollected@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z + ?GetObjectSizeForGarbageCollectedMixin@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z=node.exe.?GetObjectSizeForGarbageCollectedMixin@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z + ?GetOverloadResolution@CFunction@v8@@QEAA?AW4OverloadResolution@12@PEBV12@@Z=node.exe.?GetOverloadResolution@CFunction@v8@@QEAA?AW4OverloadResolution@12@PEBV12@@Z + ?GetOwnPropertyDescriptor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?GetOwnPropertyDescriptor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4PropertyFilter@2@W4KeyConversionMode@2@@Z=node.exe.?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4PropertyFilter@2@W4KeyConversionMode@2@@Z + ?GetParent@CpuProfileNode@v8@@QEBAPEBV12@XZ=node.exe.?GetParent@CpuProfileNode@v8@@QEBAPEBV12@XZ + ?GetPatch@Version@internal@v8@@SAHXZ=node.exe.?GetPatch@Version@internal@v8@@SAHXZ + ?GetPersistentRegion@StrongCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z=node.exe.?GetPersistentRegion@StrongCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z + ?GetPersistentRegion@StrongPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z=node.exe.?GetPersistentRegion@StrongPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z + ?GetPersistentRegion@WeakCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z=node.exe.?GetPersistentRegion@WeakCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z + ?GetPersistentRegion@WeakPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z=node.exe.?GetPersistentRegion@WeakPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z + ?GetPhase@ModuleRequest@v8@@QEBA?AW4ModuleImportPhase@2@XZ=node.exe.?GetPhase@ModuleRequest@v8@@QEBA?AW4ModuleImportPhase@2@XZ + ?GetPreviousCodeStartAddress@CodeEvent@v8@@QEAA_KXZ=node.exe.?GetPreviousCodeStartAddress@CodeEvent@v8@@QEAA_KXZ + ?GetPrivate@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z=node.exe.?GetPrivate@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + ?GetProducedCompileHints@Script@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@XZ=node.exe.?GetProducedCompileHints@Script@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@XZ + ?GetPromise@Resolver@Promise@v8@@QEAA?AV?$Local@VPromise@v8@@@3@XZ=node.exe.?GetPromise@Resolver@Promise@v8@@QEAA?AV?$Local@VPromise@v8@@@3@XZ + ?GetPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?GetPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4KeyCollectionMode@2@W4PropertyFilter@2@W4IndexFilter@2@W4KeyConversionMode@2@@Z=node.exe.?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4KeyCollectionMode@2@W4PropertyFilter@2@W4IndexFilter@2@W4KeyConversionMode@2@@Z + ?GetPrototype@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetPrototype@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetPrototypeV2@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetPrototypeV2@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetRealNamedProperty@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?GetRealNamedProperty@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?GetRealNamedPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?GetRealNamedPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?GetRealNamedPropertyAttributesInPrototypeChain@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?GetRealNamedPropertyAttributesInPrototypeChain@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?GetRealNamedPropertyInPrototypeChain@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?GetRealNamedPropertyInPrototypeChain@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?GetReplace@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetReplace@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetResourceName@Script@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetResourceName@Script@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetResourceName@ScriptOrModule@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetResourceName@ScriptOrModule@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetRoot@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@XZ=node.exe.?GetRoot@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@XZ + ?GetSONAME@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z=node.exe.?GetSONAME@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z + ?GetSample@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@H@Z=node.exe.?GetSample@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@H@Z + ?GetSampleEmbedderState@CpuProfile@v8@@QEBA?AW4EmbedderStateTag@2@H@Z=node.exe.?GetSampleEmbedderState@CpuProfile@v8@@QEBA?AW4EmbedderStateTag@2@H@Z + ?GetSampleState@CpuProfile@v8@@QEBA?AW4StateTag@2@H@Z=node.exe.?GetSampleState@CpuProfile@v8@@QEBA?AW4StateTag@2@H@Z + ?GetSampleTimestamp@CpuProfile@v8@@QEBA_JH@Z=node.exe.?GetSampleTimestamp@CpuProfile@v8@@QEBA_JH@Z + ?GetSamplesCount@CpuProfile@v8@@QEBAHXZ=node.exe.?GetSamplesCount@CpuProfile@v8@@QEBAHXZ + ?GetSandboxAddressSpace@V8@v8@@SAPEAVVirtualAddressSpace@2@XZ=node.exe.?GetSandboxAddressSpace@V8@v8@@SAPEAVVirtualAddressSpace@2@XZ + ?GetSandboxReservationSizeInBytes@V8@v8@@SA_KXZ=node.exe.?GetSandboxReservationSizeInBytes@V8@v8@@SA_KXZ + ?GetSandboxSizeInBytes@V8@v8@@SA_KXZ=node.exe.?GetSandboxSizeInBytes@V8@v8@@SA_KXZ + ?GetScriptColumn@CodeEvent@v8@@QEAAHXZ=node.exe.?GetScriptColumn@CodeEvent@v8@@QEAAHXZ + ?GetScriptColumnNumber@Function@v8@@QEBAHXZ=node.exe.?GetScriptColumnNumber@Function@v8@@QEBAHXZ + ?GetScriptId@CpuProfileNode@v8@@QEBAHXZ=node.exe.?GetScriptId@CpuProfileNode@v8@@QEBAHXZ + ?GetScriptId@StackFrame@v8@@QEBAHXZ=node.exe.?GetScriptId@StackFrame@v8@@QEBAHXZ + ?GetScriptLine@CodeEvent@v8@@QEAAHXZ=node.exe.?GetScriptLine@CodeEvent@v8@@QEAAHXZ + ?GetScriptLineNumber@Function@v8@@QEBAHXZ=node.exe.?GetScriptLineNumber@Function@v8@@QEBAHXZ + ?GetScriptName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetScriptName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + ?GetScriptName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetScriptName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetScriptName@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetScriptName@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetScriptNameOrSourceURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetScriptNameOrSourceURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetScriptOrigin@Function@v8@@QEBA?AVScriptOrigin@2@XZ=node.exe.?GetScriptOrigin@Function@v8@@QEBA?AVScriptOrigin@2@XZ + ?GetScriptOrigin@Message@v8@@QEBA?AVScriptOrigin@2@XZ=node.exe.?GetScriptOrigin@Message@v8@@QEBA?AVScriptOrigin@2@XZ + ?GetScriptResourceName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetScriptResourceName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetScriptResourceName@Message@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetScriptResourceName@Message@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?GetScriptResourceNameStr@CpuProfileNode@v8@@QEBAPEBDXZ=node.exe.?GetScriptResourceNameStr@CpuProfileNode@v8@@QEBAPEBDXZ + ?GetScriptSource@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetScriptSource@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetScriptSourceMappingURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetScriptSourceMappingURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetScriptStartPosition@Function@v8@@QEBAHXZ=node.exe.?GetScriptStartPosition@Function@v8@@QEBAHXZ + ?GetSearch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetSearch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetSecurityToken@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetSecurityToken@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetShallowSize@HeapGraphNode@v8@@QEBA_KXZ=node.exe.?GetShallowSize@HeapGraphNode@v8@@QEBA_KXZ + ?GetSharedArrayBufferFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VSharedArrayBuffer@v8@@@3@PEAVIsolate@3@I@Z=node.exe.?GetSharedArrayBufferFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VSharedArrayBuffer@v8@@@3@PEAVIsolate@3@I@Z + ?GetSharedArrayBufferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VSharedArrayBuffer@v8@@@3@@Z=node.exe.?GetSharedArrayBufferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VSharedArrayBuffer@v8@@@3@@Z + ?GetSharedMemoryStatistics@V8@v8@@SAXPEAVSharedMemoryStatistics@2@@Z=node.exe.?GetSharedMemoryStatistics@V8@v8@@SAXPEAVSharedMemoryStatistics@2@@Z + ?GetSharedValueConveyor@Delegate@ValueDeserializer@v8@@UEAAPEBVSharedValueConveyor@3@PEAVIsolate@3@@Z=node.exe.?GetSharedValueConveyor@Delegate@ValueDeserializer@v8@@UEAAPEBVSharedValueConveyor@3@PEAVIsolate@3@@Z + ?GetSnapshotCount@HeapProfiler@v8@@QEAAHXZ=node.exe.?GetSnapshotCount@HeapProfiler@v8@@QEAAHXZ + ?GetSource@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetSource@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?GetSource@RegExp@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetSource@RegExp@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetSourceLine@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetSourceLine@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?GetSourceMappingURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetSourceMappingURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetSourceMappingURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetSourceMappingURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetSourceOffset@ModuleRequest@v8@@QEBAHXZ=node.exe.?GetSourceOffset@ModuleRequest@v8@@QEBAHXZ + ?GetSourceType@CpuProfileNode@v8@@QEBA?AW4SourceType@12@XZ=node.exe.?GetSourceType@CpuProfileNode@v8@@QEBA?AW4SourceType@12@XZ + ?GetSourceURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetSourceURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetSourceURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetSourceURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetSpecifier@ModuleRequest@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetSpecifier@ModuleRequest@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetSplit@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetSplit@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetStackSample@Isolate@v8@@QEAAXAEBURegisterState@2@PEAPEAX_KPEAUSampleInfo@2@@Z=node.exe.?GetStackSample@Isolate@v8@@QEAAXAEBURegisterState@2@PEAPEAX_KPEAUSampleInfo@2@@Z + ?GetStackSample@TickSample@internal@v8@@SA_NPEAVIsolate@23@PEAURegisterState@3@W4RecordCEntryFrame@123@PEAPEAX_KPEAUSampleInfo@3@PEAW4StateTag@3@_N@Z=node.exe.?GetStackSample@TickSample@internal@v8@@SA_NPEAVIsolate@23@PEAURegisterState@3@W4RecordCEntryFrame@123@PEAPEAX_KPEAUSampleInfo@3@PEAW4StateTag@3@_N@Z + ?GetStackTrace@Exception@v8@@SA?AV?$Local@VStackTrace@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?GetStackTrace@Exception@v8@@SA?AV?$Local@VStackTrace@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?GetStackTrace@Message@v8@@QEBA?AV?$Local@VStackTrace@v8@@@2@XZ=node.exe.?GetStackTrace@Message@v8@@QEBA?AV?$Local@VStackTrace@v8@@@2@XZ + ?GetStackTraceLimit@Isolate@v8@@QEAAHXZ=node.exe.?GetStackTraceLimit@Isolate@v8@@QEAAHXZ + ?GetStalledTopLevelAwaitMessages@Module@v8@@QEAA?AU?$pair@V?$LocalVector@VModule@v8@@@v8@@V?$LocalVector@VMessage@v8@@@2@@__Cr@std@@PEAVIsolate@2@@Z=node.exe.?GetStalledTopLevelAwaitMessages@Module@v8@@QEAA?AU?$pair@V?$LocalVector@VModule@v8@@@v8@@V?$LocalVector@VMessage@v8@@@2@@__Cr@std@@PEAVIsolate@2@@Z + ?GetStartColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?GetStartColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + ?GetStartColumn@Message@v8@@QEBAHXZ=node.exe.?GetStartColumn@Message@v8@@QEBAHXZ + ?GetStartPosition@Message@v8@@QEBAHXZ=node.exe.?GetStartPosition@Message@v8@@QEBAHXZ + ?GetStartTime@CpuProfile@v8@@QEBA_JXZ=node.exe.?GetStartTime@CpuProfile@v8@@QEBA_JXZ + ?GetStaticDependencySpecifiers@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?GetStaticDependencySpecifiers@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?GetStatus@Module@v8@@QEBA?AW4Status@12@XZ=node.exe.?GetStatus@Module@v8@@QEBA?AW4Status@12@XZ + ?GetStatus@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?GetStatus@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?GetString@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z=node.exe.?GetString@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z + ?GetTarget@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?GetTarget@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?GetTitle@CpuProfile@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?GetTitle@CpuProfile@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?GetToNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ=node.exe.?GetToNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ + ?GetToPrimitive@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetToPrimitive@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetToStringTag@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetToStringTag@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetTopDownRoot@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@XZ=node.exe.?GetTopDownRoot@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@XZ + ?GetTraceDescriptor@TraceTraitFromInnerAddressImpl@internal@cppgc@@SA?AUTraceDescriptor@3@PEBX@Z=node.exe.?GetTraceDescriptor@TraceTraitFromInnerAddressImpl@internal@cppgc@@SA?AUTraceDescriptor@3@PEBX@Z + ?GetTracingController@Platform@cppgc@@UEAAPEAVTracingController@v8@@XZ=node.exe.?GetTracingController@Platform@cppgc@@UEAAPEAVTracingController@v8@@XZ + ?GetTracingController@node@@YAPEAVTracingController@v8@@XZ=node.exe.?GetTracingController@node@@YAPEAVTracingController@v8@@XZ + ?GetType@HeapGraphEdge@v8@@QEBA?AW4Type@12@XZ=node.exe.?GetType@HeapGraphEdge@v8@@QEBA?AW4Type@12@XZ + ?GetType@HeapGraphNode@v8@@QEBA?AW4Type@12@XZ=node.exe.?GetType@HeapGraphNode@v8@@QEBA?AW4Type@12@XZ + ?GetTypeInfo@CFunction@v8@@QEBAPEBVCFunctionInfo@2@XZ=node.exe.?GetTypeInfo@CFunction@v8@@QEBAPEBVCFunctionInfo@2@XZ + ?GetUnboundModuleScript@Module@v8@@QEAA?AV?$Local@VUnboundModuleScript@v8@@@2@XZ=node.exe.?GetUnboundModuleScript@Module@v8@@QEAA?AV?$Local@VUnboundModuleScript@v8@@@2@XZ + ?GetUnboundScript@Script@v8@@QEAA?AV?$Local@VUnboundScript@v8@@@2@XZ=node.exe.?GetUnboundScript@Script@v8@@QEAA?AV?$Local@VUnboundScript@v8@@@2@XZ + ?GetUnscopables@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z=node.exe.?GetUnscopables@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + ?GetVersion@V8@v8@@SAPEBDXZ=node.exe.?GetVersion@V8@v8@@SAPEBDXZ + ?GetVersion@Version@internal@v8@@SAPEBDXZ=node.exe.?GetVersion@Version@internal@v8@@SAPEBDXZ + ?GetWasmFunctionIndex@Message@v8@@QEBAHXZ=node.exe.?GetWasmFunctionIndex@Message@v8@@QEBAHXZ + ?GetWasmModuleFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VWasmModuleObject@v8@@@3@PEAVIsolate@3@I@Z=node.exe.?GetWasmModuleFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VWasmModuleObject@v8@@@3@PEAVIsolate@3@I@Z + ?GetWasmModuleTransferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VWasmModuleObject@v8@@@3@@Z=node.exe.?GetWasmModuleTransferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VWasmModuleObject@v8@@@3@@Z + ?GetWireBytesRef@CompiledWasmModule@v8@@QEAA?AV?$MemorySpan@$$CBE@2@XZ=node.exe.?GetWireBytesRef@CompiledWasmModule@v8@@QEAA?AV?$MemorySpan@$$CBE@2@XZ + ?GetWireFormatVersion@ValueDeserializer@v8@@QEBAIXZ=node.exe.?GetWireFormatVersion@ValueDeserializer@v8@@QEBAIXZ + ?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBX0AEAUParams@123@@Z=node.exe.?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBX0AEAUParams@123@@Z + ?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBXAEAUParams@123@@Z=node.exe.?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBXAEAUParams@123@@Z + ?Global@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ=node.exe.?Global@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + ?GlobalizeReference@api_internal@v8@@YAPEA_KPEAVIsolate@internal@2@_K@Z=node.exe.?GlobalizeReference@api_internal@v8@@YAPEA_KPEAVIsolate@internal@2@_K@Z + ?GlobalizeTracedReference@internal@v8@@YAPEA_KPEAVIsolate@12@_KPEA_KW4TracedReferenceStoreMode@12@W4TracedReferenceHandling@12@@Z=node.exe.?GlobalizeTracedReference@internal@v8@@YAPEA_KPEAVIsolate@12@_KPEA_KW4TracedReferenceStoreMode@12@W4TracedReferenceHandling@12@@Z + ?HandleExternalMemoryInterrupt@Isolate@v8@@AEAAXXZ=node.exe.?HandleExternalMemoryInterrupt@Isolate@v8@@AEAAXXZ + ?HandleMovableReference@Visitor@cppgc@@MEAAXPEAPEBX@Z=node.exe.?HandleMovableReference@Visitor@cppgc@@MEAAXPEAPEBX@Z + ?Has@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Has@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z=node.exe.?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + ?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Has@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Has@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?HasBuffer@ArrayBufferView@v8@@QEBA_NXZ=node.exe.?HasBuffer@ArrayBufferView@v8@@QEBA_NXZ + ?HasCaught@TryCatch@v8@@QEBA_NXZ=node.exe.?HasCaught@TryCatch@v8@@QEBA_NXZ + ?HasCustomHostObject@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@@Z=node.exe.?HasCustomHostObject@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@@Z + ?HasHandler@Promise@v8@@QEBA_NXZ=node.exe.?HasHandler@Promise@v8@@QEBA_NXZ + ?HasIndexedLookupInterceptor@Object@v8@@QEBA_NXZ=node.exe.?HasIndexedLookupInterceptor@Object@v8@@QEBA_NXZ + ?HasInstance@Buffer@node@@YA_NV?$Local@VObject@v8@@@v8@@@Z=node.exe.?HasInstance@Buffer@node@@YA_NV?$Local@VObject@v8@@@v8@@@Z + ?HasInstance@Buffer@node@@YA_NV?$Local@VValue@v8@@@v8@@@Z=node.exe.?HasInstance@Buffer@node@@YA_NV?$Local@VValue@v8@@@v8@@@Z + ?HasInstance@FunctionTemplate@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z=node.exe.?HasInstance@FunctionTemplate@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z + ?HasNamedLookupInterceptor@Object@v8@@QEBA_NXZ=node.exe.?HasNamedLookupInterceptor@Object@v8@@QEBA_NXZ + ?HasOptions@CFunctionInfo@v8@@QEBA_NXZ=node.exe.?HasOptions@CFunctionInfo@v8@@QEBA_NXZ + ?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z=node.exe.?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + ?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?HasPendingBackgroundTasks@Isolate@v8@@QEAA_NXZ=node.exe.?HasPendingBackgroundTasks@Isolate@v8@@QEAA_NXZ + ?HasPendingException@Isolate@v8@@QEAA_NXZ=node.exe.?HasPendingException@Isolate@v8@@QEAA_NXZ + ?HasPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z=node.exe.?HasPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + ?HasRealIndexedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z=node.exe.?HasRealIndexedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + ?HasRealNamedCallbackProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?HasRealNamedCallbackProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?HasRealNamedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z=node.exe.?HasRealNamedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + ?HasTemplateLiteralObject@Context@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z=node.exe.?HasTemplateLiteralObject@Context@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z + ?HasTerminated@TryCatch@v8@@QEBA_NXZ=node.exe.?HasTerminated@TryCatch@v8@@QEBA_NXZ + ?HasTopLevelAwait@Module@v8@@QEBA_NXZ=node.exe.?HasTopLevelAwait@Module@v8@@QEBA_NXZ + ?Hash@Version@internal@v8@@SAIXZ=node.exe.?Hash@Version@internal@v8@@SAIXZ + ?HostDefinedOptions@ScriptOrModule@v8@@QEAA?AV?$Local@VData@v8@@@2@XZ=node.exe.?HostDefinedOptions@ScriptOrModule@v8@@QEAA?AV?$Local@VData@v8@@@2@XZ + ?HostInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@SAXV?$Local@VContext@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VObject@v8@@@5@@Z=node.exe.?HostInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@SAXV?$Local@VContext@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VObject@v8@@@5@@Z + ?ImportModuleDynamically@loader@node@@YA?AV?$MaybeLocal@VPromise@v8@@@v8@@V?$Local@VContext@v8@@@4@V?$Local@VData@v8@@@4@V?$Local@VValue@v8@@@4@V?$Local@VString@v8@@@4@V?$Local@VFixedArray@v8@@@4@@Z=node.exe.?ImportModuleDynamically@loader@node@@YA?AV?$MaybeLocal@VPromise@v8@@@v8@@V?$Local@VContext@v8@@@4@V?$Local@VData@v8@@@4@V?$Local@VValue@v8@@@4@V?$Local@VString@v8@@@4@V?$Local@VFixedArray@v8@@@4@@Z + ?InContext@Isolate@v8@@QEAA_NXZ=node.exe.?InContext@Isolate@v8@@QEAA_NXZ + ?InYoungGenerationForStickyMarkbits@HeapLayout@internal@v8@@CA_NPEBVMemoryChunk@23@V?$Tagged@VHeapObject@internal@v8@@@23@@Z=node.exe.?InYoungGenerationForStickyMarkbits@HeapLayout@internal@v8@@CA_NPEBVMemoryChunk@23@V?$Tagged@VHeapObject@internal@v8@@@23@@Z + ?IncreaseHeapLimitForDebugging@Isolate@v8@@QEAAXXZ=node.exe.?IncreaseHeapLimitForDebugging@Isolate@v8@@QEAAXXZ + ?Inherit@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z=node.exe.?Inherit@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z + ?Init@TickSample@internal@v8@@QEAAXPEAVIsolate@23@AEBURegisterState@3@W4RecordCEntryFrame@123@_N3VTimeDelta@base@3@@Z=node.exe.?Init@TickSample@internal@v8@@QEAAXPEAVIsolate@23@AEBURegisterState@3@W4RecordCEntryFrame@123@_N3VTimeDelta@base@3@@Z + ?InitialTableLimit@GCInfoTable@internal@cppgc@@AEBAGXZ=node.exe.?InitialTableLimit@GCInfoTable@internal@cppgc@@AEBAGXZ + ?Initialize@GlobalGCInfoTable@internal@cppgc@@SAXAEAVPageAllocator@v8@@@Z=node.exe.?Initialize@GlobalGCInfoTable@internal@cppgc@@SAXAEAVPageAllocator@v8@@@Z + ?Initialize@HandleScope@v8@@IEAAXPEAVIsolate@2@@Z=node.exe.?Initialize@HandleScope@v8@@IEAAXPEAVIsolate@2@@Z + ?Initialize@Isolate@v8@@SAXPEAV12@AEBUCreateParams@12@@Z=node.exe.?Initialize@Isolate@v8@@SAXPEAV12@AEBUCreateParams@12@@Z + ?Initialize@Locker@v8@@AEAAXPEAVIsolate@2@@Z=node.exe.?Initialize@Locker@v8@@AEAAXPEAVIsolate@2@@Z + ?Initialize@ThreadIsolation@internal@v8@@SAXPEAVThreadIsolatedAllocator@3@@Z=node.exe.?Initialize@ThreadIsolation@internal@v8@@SAXPEAVThreadIsolatedAllocator@3@@Z + ?Initialize@Unlocker@v8@@AEAAXPEAVIsolate@2@@Z=node.exe.?Initialize@Unlocker@v8@@AEAAXPEAVIsolate@2@@Z + ?Initialize@V8@v8@@CA_NH@Z=node.exe.?Initialize@V8@v8@@CA_NH@Z + ?Initialize@V8@v8@@SA_NXZ=node.exe.?Initialize@V8@v8@@SA_NXZ + ?InitializeBeforeThreadCreation@SandboxHardwareSupport@v8@@SAXXZ=node.exe.?InitializeBeforeThreadCreation@SandboxHardwareSupport@v8@@SAXXZ + ?InitializeContext@node@@YA?AV?$Maybe@_N@v8@@V?$Local@VContext@v8@@@3@@Z=node.exe.?InitializeContext@node@@YA?AV?$Maybe@_N@v8@@V?$Local@VContext@v8@@@3@@Z + ?InitializeExternalStartupData@V8@v8@@SAXPEBD@Z=node.exe.?InitializeExternalStartupData@V8@v8@@SAXPEBD@Z + ?InitializeExternalStartupDataFromFile@V8@v8@@SAXPEBD@Z=node.exe.?InitializeExternalStartupDataFromFile@V8@v8@@SAXPEBD@Z + ?InitializeICU@V8@v8@@SA_NPEBD@Z=node.exe.?InitializeICU@V8@v8@@SA_NPEBD@Z + ?InitializeICUDefaultLocation@V8@v8@@SA_NPEBD0@Z=node.exe.?InitializeICUDefaultLocation@V8@v8@@SA_NPEBD0@Z + ?InitializeNodeWithArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4Flags@ProcessInitializationFlags@1@@Z=node.exe.?InitializeNodeWithArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4Flags@ProcessInitializationFlags@1@@Z + ?InitializeOncePerProcess@node@@YA?AV?$unique_ptr@VInitializationResult@node@@U?$default_delete@VInitializationResult@node@@@__Cr@std@@@__Cr@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@34@W4Flags@ProcessInitializationFlags@1@@Z=node.exe.?InitializeOncePerProcess@node@@YA?AV?$unique_ptr@VInitializationResult@node@@U?$default_delete@VInitializationResult@node@@@__Cr@std@@@__Cr@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@34@W4Flags@ProcessInitializationFlags@1@@Z + ?InitializePlatform@V8@v8@@SAXPEAVPlatform@2@@Z=node.exe.?InitializePlatform@V8@v8@@SAXPEAVPlatform@2@@Z + ?InitializeProcess@cppgc@@YAXPEAVPageAllocator@v8@@_K@Z=node.exe.?InitializeProcess@cppgc@@YAXPEAVPageAllocator@v8@@_K@Z + ?InstallConditionalFeatures@Isolate@v8@@QEAAXV?$Local@VContext@v8@@@2@@Z=node.exe.?InstallConditionalFeatures@Isolate@v8@@QEAAXV?$Local@VContext@v8@@@2@@Z + ?InstanceOf@Value@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z=node.exe.?InstanceOf@Value@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z + ?InstanceTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ=node.exe.?InstanceTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ + ?Instantiate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?Instantiate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?InstantiateModule@Module@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@P6A?AV?$MaybeLocal@VModule@v8@@@2@0V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@V?$Local@VModule@v8@@@2@@ZP6A?AV?$MaybeLocal@VObject@v8@@@2@0123@Z@Z=node.exe.?InstantiateModule@Module@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@P6A?AV?$MaybeLocal@VModule@v8@@@2@0V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@V?$Local@VModule@v8@@@2@@ZP6A?AV?$MaybeLocal@VObject@v8@@@2@0123@Z@Z + ?InstantiateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?InstantiateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?Instrumentation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?Instrumentation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?Int32Value@Value@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?Int32Value@Value@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + ?Int64Value@BigInt@v8@@QEBA_JPEA_N@Z=node.exe.?Int64Value@BigInt@v8@@QEBA_JPEA_N@Z + ?IntegerValue@Value@v8@@QEBA?AV?$Maybe@_J@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?IntegerValue@Value@v8@@QEBA?AV?$Maybe@_J@2@V?$Local@VContext@v8@@@2@@Z + ?InternalFieldCount@Object@v8@@QEBAHXZ=node.exe.?InternalFieldCount@Object@v8@@QEBAHXZ + ?InternalFieldCount@Object@v8@@SAHAEBV?$BasicTracedReference@VObject@v8@@@2@@Z=node.exe.?InternalFieldCount@Object@v8@@SAHAEBV?$BasicTracedReference@VObject@v8@@@2@@Z + ?InternalFieldCount@Object@v8@@SAHAEBV?$PersistentBase@VObject@v8@@@2@@Z=node.exe.?InternalFieldCount@Object@v8@@SAHAEBV?$PersistentBase@VObject@v8@@@2@@Z + ?InternalFieldCount@ObjectTemplate@v8@@QEBAHXZ=node.exe.?InternalFieldCount@ObjectTemplate@v8@@QEBAHXZ + ?InternalFieldOutOfBounds@api_internal@v8@@YAXH@Z=node.exe.?InternalFieldOutOfBounds@api_internal@v8@@YAXH@Z + ?InternalizeString@String@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z=node.exe.?InternalizeString@String@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + ?IsApiWrapper@Object@v8@@QEBA_NXZ=node.exe.?IsApiWrapper@Object@v8@@QEBA_NXZ + ?IsArgumentsObject@Value@v8@@QEBA_NXZ=node.exe.?IsArgumentsObject@Value@v8@@QEBA_NXZ + ?IsArray@Value@v8@@QEBA_NXZ=node.exe.?IsArray@Value@v8@@QEBA_NXZ + ?IsArrayBuffer@Value@v8@@QEBA_NXZ=node.exe.?IsArrayBuffer@Value@v8@@QEBA_NXZ + ?IsArrayBufferView@Value@v8@@QEBA_NXZ=node.exe.?IsArrayBufferView@Value@v8@@QEBA_NXZ + ?IsAsyncFunction@Value@v8@@QEBA_NXZ=node.exe.?IsAsyncFunction@Value@v8@@QEBA_NXZ + ?IsAvailable@OptimizingCompileDispatcherQueue@internal@v8@@QEAA_NXZ=node.exe.?IsAvailable@OptimizingCompileDispatcherQueue@internal@v8@@QEAA_NXZ + ?IsBaseConsistent@CageBaseGlobal@internal@cppgc@@CA_NXZ=node.exe.?IsBaseConsistent@CageBaseGlobal@internal@cppgc@@CA_NXZ + ?IsBigInt64Array@Value@v8@@QEBA_NXZ=node.exe.?IsBigInt64Array@Value@v8@@QEBA_NXZ + ?IsBigInt@Value@v8@@QEBA_NXZ=node.exe.?IsBigInt@Value@v8@@QEBA_NXZ + ?IsBigIntObject@Value@v8@@QEBA_NXZ=node.exe.?IsBigIntObject@Value@v8@@QEBA_NXZ + ?IsBigUint64Array@Value@v8@@QEBA_NXZ=node.exe.?IsBigUint64Array@Value@v8@@QEBA_NXZ + ?IsBoolean@Value@v8@@QEBA_NXZ=node.exe.?IsBoolean@Value@v8@@QEBA_NXZ + ?IsBooleanObject@Value@v8@@QEBA_NXZ=node.exe.?IsBooleanObject@Value@v8@@QEBA_NXZ + ?IsCacheable@ExternalStringResourceBase@String@v8@@UEBA_NXZ=node.exe.?IsCacheable@ExternalStringResourceBase@String@v8@@UEBA_NXZ + ?IsCallable@Object@v8@@QEBA_NXZ=node.exe.?IsCallable@Object@v8@@QEBA_NXZ + ?IsCandidate@Version@internal@v8@@SA_NXZ=node.exe.?IsCandidate@Version@internal@v8@@SA_NXZ + ?IsCodeGenerationFromStringsAllowed@Context@v8@@QEBA_NXZ=node.exe.?IsCodeGenerationFromStringsAllowed@Context@v8@@QEBA_NXZ + ?IsCodeLike@Object@v8@@QEBA_NPEAVIsolate@2@@Z=node.exe.?IsCodeLike@Object@v8@@QEBA_NPEAVIsolate@2@@Z + ?IsCodeLike@ObjectTemplate@v8@@QEBA_NXZ=node.exe.?IsCodeLike@ObjectTemplate@v8@@QEBA_NXZ + ?IsConstructor@Object@v8@@QEBA_NXZ=node.exe.?IsConstructor@Object@v8@@QEBA_NXZ + ?IsConstructor@StackFrame@v8@@QEBA_NXZ=node.exe.?IsConstructor@StackFrame@v8@@QEBA_NXZ + ?IsContext@Data@v8@@QEBA_NXZ=node.exe.?IsContext@Data@v8@@QEBA_NXZ + ?IsCookieEncryptionEnabled@fuses@electron@@YA_NXZ=node.exe.?IsCookieEncryptionEnabled@fuses@electron@@YA_NXZ + ?IsCreationThread@PersistentRegion@internal@cppgc@@AEAA_NXZ=node.exe.?IsCreationThread@PersistentRegion@internal@cppgc@@AEAA_NXZ + ?IsCurrent@Isolate@v8@@QEBA_NXZ=node.exe.?IsCurrent@Isolate@v8@@QEBA_NXZ + ?IsDataView@Value@v8@@QEBA_NXZ=node.exe.?IsDataView@Value@v8@@QEBA_NXZ + ?IsDate@Value@v8@@QEBA_NXZ=node.exe.?IsDate@Value@v8@@QEBA_NXZ + ?IsDead@Isolate@v8@@QEAA_NXZ=node.exe.?IsDead@Isolate@v8@@QEAA_NXZ + ?IsDetachable@ArrayBuffer@v8@@QEBA_NXZ=node.exe.?IsDetachable@ArrayBuffer@v8@@QEBA_NXZ + ?IsEmbeddedAsarIntegrityValidationEnabled@fuses@electron@@YA_NXZ=node.exe.?IsEmbeddedAsarIntegrityValidationEnabled@fuses@electron@@YA_NXZ + ?IsEnabled@WriteBarrier@internal@cppgc@@SA_NXZ=node.exe.?IsEnabled@WriteBarrier@internal@cppgc@@SA_NXZ + ?IsEnvironmentStopping@node@@YA_NPEAVIsolate@v8@@@Z=My_IsEnvironmentStopping_node + ?IsEval@StackFrame@v8@@QEBA_NXZ=node.exe.?IsEval@StackFrame@v8@@QEBA_NXZ + ?IsExecutionTerminating@Isolate@v8@@QEAA_NXZ=node.exe.?IsExecutionTerminating@Isolate@v8@@QEAA_NXZ + ?IsExternal@String@v8@@QEBA_NXZ=node.exe.?IsExternal@String@v8@@QEBA_NXZ + ?IsExternal@Value@v8@@QEBA_NXZ=node.exe.?IsExternal@Value@v8@@QEBA_NXZ + ?IsExternalOneByte@String@v8@@QEBA_NXZ=node.exe.?IsExternalOneByte@String@v8@@QEBA_NXZ + ?IsExternalTwoByte@String@v8@@QEBA_NXZ=node.exe.?IsExternalTwoByte@String@v8@@QEBA_NXZ + ?IsFalse@Value@v8@@QEBA_NXZ=node.exe.?IsFalse@Value@v8@@QEBA_NXZ + ?IsFixedArray@Data@v8@@QEBA_NXZ=node.exe.?IsFixedArray@Data@v8@@QEBA_NXZ + ?IsFloat16Array@Value@v8@@QEBA_NXZ=node.exe.?IsFloat16Array@Value@v8@@QEBA_NXZ + ?IsFloat32Array@Value@v8@@QEBA_NXZ=node.exe.?IsFloat32Array@Value@v8@@QEBA_NXZ + ?IsFloat64Array@Value@v8@@QEBA_NXZ=node.exe.?IsFloat64Array@Value@v8@@QEBA_NXZ + ?IsFunction@Value@v8@@QEBA_NXZ=node.exe.?IsFunction@Value@v8@@QEBA_NXZ + ?IsFunctionTemplate@Data@v8@@QEBA_NXZ=node.exe.?IsFunctionTemplate@Data@v8@@QEBA_NXZ + ?IsGarbageCollectionAllowed@DisallowGarbageCollectionScope@subtle@cppgc@@SA_NAEAVHeapHandle@3@@Z=node.exe.?IsGarbageCollectionAllowed@DisallowGarbageCollectionScope@subtle@cppgc@@SA_NAEAVHeapHandle@3@@Z + ?IsGeneratorFunction@Value@v8@@QEBA_NXZ=node.exe.?IsGeneratorFunction@Value@v8@@QEBA_NXZ + ?IsGeneratorObject@Value@v8@@QEBA_NXZ=node.exe.?IsGeneratorObject@Value@v8@@QEBA_NXZ + ?IsGrantFileProtocolExtraPrivilegesEnabled@fuses@electron@@YA_NXZ=node.exe.?IsGrantFileProtocolExtraPrivilegesEnabled@fuses@electron@@YA_NXZ + ?IsGraphAsync@Module@v8@@QEBA_NXZ=node.exe.?IsGraphAsync@Module@v8@@QEBA_NXZ + ?IsHeapLimitIncreasedForDebugging@Isolate@v8@@QEAA_NXZ=node.exe.?IsHeapLimitIncreasedForDebugging@Isolate@v8@@QEAA_NXZ + ?IsHeapObjectAliveImpl@LivenessBroker@cppgc@@AEBA_NPEBX@Z=node.exe.?IsHeapObjectAliveImpl@LivenessBroker@cppgc@@AEBA_NPEBX@Z + ?IsHeapObjectOld@testing@cppgc@@YA_NPEAX@Z=node.exe.?IsHeapObjectOld@testing@cppgc@@YA_NPEAX@Z + ?IsHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z=node.exe.?IsHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z + ?IsImmutableProto@ObjectTemplate@v8@@QEBA_NXZ=node.exe.?IsImmutableProto@ObjectTemplate@v8@@QEBA_NXZ + ?IsInAtomicPause@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z=node.exe.?IsInAtomicPause@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + ?IsInUse@Isolate@v8@@QEAA_NXZ=node.exe.?IsInUse@Isolate@v8@@QEAA_NXZ + ?IsInt16Array@Value@v8@@QEBA_NXZ=node.exe.?IsInt16Array@Value@v8@@QEBA_NXZ + ?IsInt32@Value@v8@@QEBA_NXZ=node.exe.?IsInt32@Value@v8@@QEBA_NXZ + ?IsInt32Array@Value@v8@@QEBA_NXZ=node.exe.?IsInt32Array@Value@v8@@QEBA_NXZ + ?IsInt8Array@Value@v8@@QEBA_NXZ=node.exe.?IsInt8Array@Value@v8@@QEBA_NXZ + ?IsInvalid@V8StackTraceId@v8_inspector@@QEBA_NXZ=node.exe.?IsInvalid@V8StackTraceId@v8_inspector@@QEBA_NXZ + ?IsLeafTemplateForApiObject@FunctionTemplate@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z=node.exe.?IsLeafTemplateForApiObject@FunctionTemplate@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + ?IsLoadBrowserProcessSpecificV8SnapshotEnabled@fuses@electron@@YA_NXZ=node.exe.?IsLoadBrowserProcessSpecificV8SnapshotEnabled@fuses@electron@@YA_NXZ + ?IsLocked@Locker@v8@@SA_NPEAVIsolate@2@@Z=node.exe.?IsLocked@Locker@v8@@SA_NPEAVIsolate@2@@Z + ?IsMap@Value@v8@@QEBA_NXZ=node.exe.?IsMap@Value@v8@@QEBA_NXZ + ?IsMapIterator@Value@v8@@QEBA_NXZ=node.exe.?IsMapIterator@Value@v8@@QEBA_NXZ + ?IsMarking@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z=node.exe.?IsMarking@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + ?IsModule@Data@v8@@QEBA_NXZ=node.exe.?IsModule@Data@v8@@QEBA_NXZ + ?IsModuleNamespaceObject@Value@v8@@QEBA_NXZ=node.exe.?IsModuleNamespaceObject@Value@v8@@QEBA_NXZ + ?IsName@Value@v8@@QEBA_NXZ=node.exe.?IsName@Value@v8@@QEBA_NXZ + ?IsNativeError@Value@v8@@QEBA_NXZ=node.exe.?IsNativeError@Value@v8@@QEBA_NXZ + ?IsNodeCliInspectEnabled@fuses@electron@@YA_NXZ=node.exe.?IsNodeCliInspectEnabled@fuses@electron@@YA_NXZ + ?IsNodeOptionsEnabled@fuses@electron@@YA_NXZ=node.exe.?IsNodeOptionsEnabled@fuses@electron@@YA_NXZ + ?IsNotIndicativeOfMemoryLeakAtExit@ModuleWrap@loader@node@@UEBA_NXZ=node.exe.?IsNotIndicativeOfMemoryLeakAtExit@ModuleWrap@loader@node@@UEBA_NXZ + ?IsNull@Value@v8@@QEBA_NXZ=node.exe.?IsNull@Value@v8@@QEBA_NXZ + ?IsNullOrUndefined@Value@v8@@QEBA_NXZ=node.exe.?IsNullOrUndefined@Value@v8@@QEBA_NXZ + ?IsNumber@Value@v8@@QEBA_NXZ=node.exe.?IsNumber@Value@v8@@QEBA_NXZ + ?IsNumberObject@Value@v8@@QEBA_NXZ=node.exe.?IsNumberObject@Value@v8@@QEBA_NXZ + ?IsObject@Value@v8@@QEBA_NXZ=node.exe.?IsObject@Value@v8@@QEBA_NXZ + ?IsObjectTemplate@Data@v8@@QEBA_NXZ=node.exe.?IsObjectTemplate@Data@v8@@QEBA_NXZ + ?IsOneByte@String@v8@@QEBA_NXZ=node.exe.?IsOneByte@String@v8@@QEBA_NXZ + ?IsOnlyLoadAppFromAsarEnabled@fuses@electron@@YA_NXZ=node.exe.?IsOnlyLoadAppFromAsarEnabled@fuses@electron@@YA_NXZ + ?IsOpaque@Message@v8@@QEBA_NXZ=node.exe.?IsOpaque@Message@v8@@QEBA_NXZ + ?IsPrivate@Data@v8@@QEBA_NXZ=node.exe.?IsPrivate@Data@v8@@QEBA_NXZ + ?IsPromise@Value@v8@@QEBA_NXZ=node.exe.?IsPromise@Value@v8@@QEBA_NXZ + ?IsProxy@Value@v8@@QEBA_NXZ=node.exe.?IsProxy@Value@v8@@QEBA_NXZ + ?IsRegExp@Value@v8@@QEBA_NXZ=node.exe.?IsRegExp@Value@v8@@QEBA_NXZ + ?IsResizableByUserJavaScript@ArrayBuffer@v8@@QEBA_NXZ=node.exe.?IsResizableByUserJavaScript@ArrayBuffer@v8@@QEBA_NXZ + ?IsResizableByUserJavaScript@BackingStore@v8@@QEBA_NXZ=node.exe.?IsResizableByUserJavaScript@BackingStore@v8@@QEBA_NXZ + ?IsRevoked@Proxy@v8@@QEBA_NXZ=node.exe.?IsRevoked@Proxy@v8@@QEBA_NXZ + ?IsRunAsNodeEnabled@fuses@electron@@YA_NXZ=node.exe.?IsRunAsNodeEnabled@fuses@electron@@YA_NXZ + ?IsRunningMicrotasks@MicrotasksScope@v8@@SA_NPEAVIsolate@2@@Z=node.exe.?IsRunningMicrotasks@MicrotasksScope@v8@@SA_NPEAVIsolate@2@@Z + ?IsSandboxConfiguredSecurely@V8@v8@@SA_NXZ=node.exe.?IsSandboxConfiguredSecurely@V8@v8@@SA_NXZ + ?IsScriptSharedCrossOrigin@CpuProfileNode@v8@@QEBA_NXZ=node.exe.?IsScriptSharedCrossOrigin@CpuProfileNode@v8@@QEBA_NXZ + ?IsSet@CageBaseGlobal@internal@cppgc@@SA_NXZ=node.exe.?IsSet@CageBaseGlobal@internal@cppgc@@SA_NXZ + ?IsSet@Value@v8@@QEBA_NXZ=node.exe.?IsSet@Value@v8@@QEBA_NXZ + ?IsSetIterator@Value@v8@@QEBA_NXZ=node.exe.?IsSetIterator@Value@v8@@QEBA_NXZ + ?IsShared@BackingStore@v8@@QEBA_NXZ=node.exe.?IsShared@BackingStore@v8@@QEBA_NXZ + ?IsSharedArrayBuffer@Value@v8@@QEBA_NXZ=node.exe.?IsSharedArrayBuffer@Value@v8@@QEBA_NXZ + ?IsSharedCrossOrigin@Message@v8@@QEBA_NXZ=node.exe.?IsSharedCrossOrigin@Message@v8@@QEBA_NXZ + ?IsSourceTextModule@Module@v8@@QEBA_NXZ=node.exe.?IsSourceTextModule@Module@v8@@QEBA_NXZ + ?IsString@Value@v8@@QEBA_NXZ=node.exe.?IsString@Value@v8@@QEBA_NXZ + ?IsStringObject@Value@v8@@QEBA_NXZ=node.exe.?IsStringObject@Value@v8@@QEBA_NXZ + ?IsSweeping@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z=node.exe.?IsSweeping@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + ?IsSweepingOnOwningThread@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z=node.exe.?IsSweepingOnOwningThread@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + ?IsSymbol@Value@v8@@QEBA_NXZ=node.exe.?IsSymbol@Value@v8@@QEBA_NXZ + ?IsSymbolObject@Value@v8@@QEBA_NXZ=node.exe.?IsSymbolObject@Value@v8@@QEBA_NXZ + ?IsSyntheticModule@Module@v8@@QEBA_NXZ=node.exe.?IsSyntheticModule@Module@v8@@QEBA_NXZ + ?IsTakingSnapshot@HeapProfiler@v8@@QEAA_NXZ=node.exe.?IsTakingSnapshot@HeapProfiler@v8@@QEAA_NXZ + ?IsTrue@Value@v8@@QEBA_NXZ=node.exe.?IsTrue@Value@v8@@QEBA_NXZ + ?IsTypedArray@Value@v8@@QEBA_NXZ=node.exe.?IsTypedArray@Value@v8@@QEBA_NXZ + ?IsUint16Array@Value@v8@@QEBA_NXZ=node.exe.?IsUint16Array@Value@v8@@QEBA_NXZ + ?IsUint32@Value@v8@@QEBA_NXZ=node.exe.?IsUint32@Value@v8@@QEBA_NXZ + ?IsUint32Array@Value@v8@@QEBA_NXZ=node.exe.?IsUint32Array@Value@v8@@QEBA_NXZ + ?IsUint8Array@Value@v8@@QEBA_NXZ=node.exe.?IsUint8Array@Value@v8@@QEBA_NXZ + ?IsUint8ClampedArray@Value@v8@@QEBA_NXZ=node.exe.?IsUint8ClampedArray@Value@v8@@QEBA_NXZ + ?IsUndefined@Value@v8@@QEBA_NXZ=node.exe.?IsUndefined@Value@v8@@QEBA_NXZ + ?IsUndetectable@Object@v8@@QEBA_NXZ=node.exe.?IsUndetectable@Object@v8@@QEBA_NXZ + ?IsUserJavaScript@StackFrame@v8@@QEBA_NXZ=node.exe.?IsUserJavaScript@StackFrame@v8@@QEBA_NXZ + ?IsValid@StartupData@v8@@QEBA_NXZ=node.exe.?IsValid@StartupData@v8@@QEBA_NXZ + ?IsValue@Data@v8@@QEBA_NXZ=node.exe.?IsValue@Data@v8@@QEBA_NXZ + ?IsVerbose@TryCatch@v8@@QEBA_NXZ=node.exe.?IsVerbose@TryCatch@v8@@QEBA_NXZ + ?IsWasm@StackFrame@v8@@QEBA_NXZ=node.exe.?IsWasm@StackFrame@v8@@QEBA_NXZ + ?IsWasmMemoryObject@Value@v8@@QEBA_NXZ=node.exe.?IsWasmMemoryObject@Value@v8@@QEBA_NXZ + ?IsWasmModuleObject@Value@v8@@QEBA_NXZ=node.exe.?IsWasmModuleObject@Value@v8@@QEBA_NXZ + ?IsWasmNull@Value@v8@@QEBA_NXZ=node.exe.?IsWasmNull@Value@v8@@QEBA_NXZ + ?IsWeakMap@Value@v8@@QEBA_NXZ=node.exe.?IsWeakMap@Value@v8@@QEBA_NXZ + ?IsWeakRef@Value@v8@@QEBA_NXZ=node.exe.?IsWeakRef@Value@v8@@QEBA_NXZ + ?IsWeakSet@Value@v8@@QEBA_NXZ=node.exe.?IsWeakSet@Value@v8@@QEBA_NXZ + ?IsWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX@Z=node.exe.?IsWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX@Z + ?IsolateFromNeverReadOnlySpaceObject@internal@v8@@YAPEAVIsolate@12@_K@Z=node.exe.?IsolateFromNeverReadOnlySpaceObject@internal@v8@@YAPEAVIsolate@12@_K@Z + ?IsolateInBackgroundNotification@Isolate@v8@@QEAAXXZ=node.exe.?IsolateInBackgroundNotification@Isolate@v8@@QEAAXXZ + ?IsolateInForegroundNotification@Isolate@v8@@QEAAXXZ=node.exe.?IsolateInForegroundNotification@Isolate@v8@@QEAAXXZ + ?Iterate@Array@v8@@QEAA?AV?$Maybe@X@2@V?$Local@VContext@v8@@@2@P6A?AW4CallbackResult@12@IV?$Local@VValue@v8@@@2@PEAX@Z2@Z=node.exe.?Iterate@Array@v8@@QEAA?AV?$Maybe@X@2@V?$Local@VContext@v8@@@2@P6A?AW4CallbackResult@12@IV?$Local@VValue@v8@@@2@PEAX@Z2@Z + ?Iterate@CrossThreadPersistentRegion@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z=node.exe.?Iterate@CrossThreadPersistentRegion@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z + ?Iterate@PersistentRegionBase@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z=node.exe.?Iterate@PersistentRegionBase@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z + ?JSStackComparableAddressPrivate@BackupIncumbentScope@Context@v8@@AEBA_KXZ=node.exe.?JSStackComparableAddressPrivate@BackupIncumbentScope@Context@v8@@AEBA_KXZ + ?JSStackComparableAddressPrivate@TryCatch@v8@@AEAA_KXZ=node.exe.?JSStackComparableAddressPrivate@TryCatch@v8@@AEAA_KXZ + ?JitPage@JitPageReference@ThreadIsolation@internal@v8@@QEAAPEAV0234@XZ=node.exe.?JitPage@JitPageReference@ThreadIsolation@internal@v8@@QEAAPEAV0234@XZ + ?Leave@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z=node.exe.?Leave@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + ?Leave@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z=node.exe.?Leave@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + ?Length@Array@v8@@QEBAIXZ=node.exe.?Length@Array@v8@@QEBAIXZ + ?Length@Buffer@node@@YA_KV?$Local@VObject@v8@@@v8@@@Z=node.exe.?Length@Buffer@node@@YA_KV?$Local@VObject@v8@@@v8@@@Z + ?Length@Buffer@node@@YA_KV?$Local@VValue@v8@@@v8@@@Z=node.exe.?Length@Buffer@node@@YA_KV?$Local@VValue@v8@@@v8@@@Z + ?Length@FixedArray@v8@@QEBAHXZ=node.exe.?Length@FixedArray@v8@@QEBAHXZ + ?Length@OptimizingCompileDispatcherQueue@internal@v8@@QEAAHXZ=node.exe.?Length@OptimizingCompileDispatcherQueue@internal@v8@@QEAAHXZ + ?Length@PrimitiveArray@v8@@QEBAHXZ=node.exe.?Length@PrimitiveArray@v8@@QEBAHXZ + ?Length@String@v8@@QEBAHXZ=node.exe.?Length@String@v8@@QEBAHXZ + ?Length@TypedArray@v8@@QEAA_KXZ=node.exe.?Length@TypedArray@v8@@QEAA_KXZ + ?LimitForTesting@GCInfoTable@internal@cppgc@@QEBAGXZ=node.exe.?LimitForTesting@GCInfoTable@internal@cppgc@@QEBAGXZ + ?Line@SourceLocation@v8@@QEBA_KXZ=node.exe.?Line@SourceLocation@v8@@QEBA_KXZ + ?LineOffset@ScriptOrigin@v8@@QEBAHXZ=node.exe.?LineOffset@ScriptOrigin@v8@@QEBAHXZ + ?Link@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?Link@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?LinkExistingOrCreate@V8SerializationDuplicateTracker@v8_inspector@@QEAA?AV?$unique_ptr@VDictionaryValue@protocol@v8_inspector@@U?$default_delete@VDictionaryValue@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@PEA_N@Z=node.exe.?LinkExistingOrCreate@V8SerializationDuplicateTracker@v8_inspector@@QEAA?AV?$unique_ptr@VDictionaryValue@protocol@v8_inspector@@U?$default_delete@VDictionaryValue@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@PEA_N@Z + ?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z=node.exe.?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z + ?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@AEBUStartExecutionCallbackInfo@node@@@Z@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z=node.exe.?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@AEBUStartExecutionCallbackInfo@node@@@Z@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z + ?LocaleConfigurationChangeNotification@Isolate@v8@@QEAAXXZ=node.exe.?LocaleConfigurationChangeNotification@Isolate@v8@@QEAAXXZ + ?Lock@ExternalStringResourceBase@String@v8@@MEBAXXZ=node.exe.?Lock@ExternalStringResourceBase@String@v8@@MEBAXXZ + ?LookupAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z=node.exe.?LookupAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z + ?LookupJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z=node.exe.?LookupJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z + ?LookupJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z=node.exe.?LookupJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + ?LookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z=node.exe.?LookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + ?LookupJumpTableAllocations@ThreadIsolation@internal@v8@@SA?AVWritableJumpTablePair@23@_K000@Z=node.exe.?LookupJumpTableAllocations@ThreadIsolation@internal@v8@@SA?AVWritableJumpTablePair@23@_K000@Z + ?LookupWritableJitPage@ThreadIsolation@internal@v8@@SA?AVWritableJitPage@23@_K0@Z=node.exe.?LookupWritableJitPage@ThreadIsolation@internal@v8@@SA?AVWritableJitPage@23@_K0@Z + ?LowMemoryNotification@Isolate@v8@@QEAAXXZ=node.exe.?LowMemoryNotification@Isolate@v8@@QEAAXXZ + ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEBDHPEAV?$Local@VValue@v8@@@4@@Z=node.exe.?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEBDHPEAV?$Local@VValue@v8@@@4@@Z + ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VFunction@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z=node.exe.?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VFunction@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z + ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VString@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z=node.exe.?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VString@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z + ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV23@@Z=node.exe.?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV23@@Z + ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV23@@Z=node.exe.?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV23@@Z + ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV23@@Z=node.exe.?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV23@@Z + ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z=node.exe.?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z=node.exe.?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z=node.exe.?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + ?MakeExecutable@ThreadIsolation@internal@v8@@SA_N_K0@Z=node.exe.?MakeExecutable@ThreadIsolation@internal@v8@@SA_N_K0@Z + ?MakeExternal@String@v8@@QEAA_NPEAVExternalOneByteStringResource@12@@Z=node.exe.?MakeExternal@String@v8@@QEAA_NPEAVExternalOneByteStringResource@12@@Z + ?MakeExternal@String@v8@@QEAA_NPEAVExternalStringResource@12@@Z=node.exe.?MakeExternal@String@v8@@QEAA_NPEAVExternalStringResource@12@@Z + ?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z=node.exe.?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z + ?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalStringResource@12@@Z=node.exe.?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalStringResource@12@@Z + ?MakeWeak@api_internal@v8@@YAXPEAPEA_K@Z=node.exe.?MakeWeak@api_internal@v8@@YAXPEAPEA_K@Z + ?MakeWeak@api_internal@v8@@YAXPEA_KPEAXP6AXAEBV?$WeakCallbackInfo@X@2@@ZW4WeakCallbackType@2@@Z=node.exe.?MakeWeak@api_internal@v8@@YAXPEA_KPEAXP6AXAEBV?$WeakCallbackInfo@X@2@@ZW4WeakCallbackType@2@@Z + ?MarkAsHandled@Promise@v8@@QEAAXXZ=node.exe.?MarkAsHandled@Promise@v8@@QEAAXXZ + ?MarkAsSilent@Promise@v8@@QEAAXXZ=node.exe.?MarkAsSilent@Promise@v8@@QEAAXXZ + ?MarkAsUndetectable@ObjectTemplate@v8@@QEAAXXZ=node.exe.?MarkAsUndetectable@ObjectTemplate@v8@@QEAAXXZ + ?Matches@TypecheckWitness@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z=node.exe.?Matches@TypecheckWitness@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + ?MaxByteLength@ArrayBuffer@v8@@QEBA_KXZ=node.exe.?MaxByteLength@ArrayBuffer@v8@@QEBA_KXZ + ?MaxByteLength@BackingStore@v8@@QEBA_KXZ=node.exe.?MaxByteLength@BackingStore@v8@@QEBA_KXZ + ?MaxByteLength@SharedArrayBuffer@v8@@QEBA_KXZ=node.exe.?MaxByteLength@SharedArrayBuffer@v8@@QEBA_KXZ + ?MaxTableSize@GCInfoTable@internal@cppgc@@AEBA_KXZ=node.exe.?MaxTableSize@GCInfoTable@internal@cppgc@@AEBA_KXZ + ?MaybeNew@ArrayBuffer@v8@@SA?AV?$MaybeLocal@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z=node.exe.?MaybeNew@ArrayBuffer@v8@@SA?AV?$MaybeLocal@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + ?MeasureMemory@Isolate@v8@@QEAA_NV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@W4MeasureMemoryExecution@2@@Z=node.exe.?MeasureMemory@Isolate@v8@@QEAA_NV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@W4MeasureMemoryExecution@2@@Z + ?MeasurementComplete@MeasureMemoryDelegate@v8@@UEAAXUResult@12@@Z=node.exe.?MeasurementComplete@MeasureMemoryDelegate@v8@@UEAAXUResult@12@@Z + ?MemoryInfo@ModuleWrap@loader@node@@UEBAXPEAVMemoryTracker@3@@Z=node.exe.?MemoryInfo@ModuleWrap@loader@node@@UEBAXPEAVMemoryTracker@3@@Z + ?MemoryInfoName@ModuleWrap@loader@node@@UEBAPEBDXZ=node.exe.?MemoryInfoName@ModuleWrap@loader@node@@UEBAPEBDXZ + ?MemoryPressureNotification@Isolate@v8@@QEAAXW4MemoryPressureLevel@2@@Z=node.exe.?MemoryPressureNotification@Isolate@v8@@QEAAXW4MemoryPressureLevel@2@@Z + ?Merge@JitPageReference@ThreadIsolation@internal@v8@@QEAAXAEAV1234@@Z=node.exe.?Merge@JitPageReference@ThreadIsolation@internal@v8@@QEAAXAEAV1234@@Z + ?MergeFlags@?$CTypeInfoBuilder@H$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ=node.exe.?MergeFlags@?$CTypeInfoBuilder@H$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + ?MergeFlags@?$CTypeInfoBuilder@I$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ=node.exe.?MergeFlags@?$CTypeInfoBuilder@I$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + ?MergeFlags@?$CTypeInfoBuilder@M$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ=node.exe.?MergeFlags@?$CTypeInfoBuilder@M$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + ?MergeFlags@?$CTypeInfoBuilder@N$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ=node.exe.?MergeFlags@?$CTypeInfoBuilder@N$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + ?MergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ=node.exe.?MergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ + ?Message@TryCatch@v8@@QEBA?AV?$Local@VMessage@v8@@@2@XZ=node.exe.?Message@TryCatch@v8@@QEBA?AV?$Local@VMessage@v8@@@2@XZ + ?MoveGlobalReference@api_internal@v8@@YAXPEAPEA_K0@Z=node.exe.?MoveGlobalReference@api_internal@v8@@YAXPEAPEA_K0@Z + ?MoveTracedReference@internal@v8@@YAXPEAPEA_K0@Z=node.exe.?MoveTracedReference@internal@v8@@YAXPEAPEA_K0@Z + ?Name@Private@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?Name@Private@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z=node.exe.?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z + ?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@PEAV?$Local@VValue@v8@@@2@_K@Z=node.exe.?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@PEAV?$Local@VValue@v8@@@2@_K@Z + ?New@Array@v8@@SA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@_KV?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@XZ@__Cr@std@@@Z=node.exe.?New@Array@v8@@SA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@_KV?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@XZ@__Cr@std@@@Z + ?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z=node.exe.?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z + ?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z=node.exe.?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + ?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_J@Z=node.exe.?New@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_J@Z + ?New@BigIntObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_J@Z=node.exe.?New@BigIntObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_J@Z + ?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Boolean@v8@@SA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@_N@Z=node.exe.?New@Boolean@v8@@SA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@_N@Z + ?New@BooleanObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_N@Z=node.exe.?New@BooleanObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_N@Z + ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_K@Z=node.exe.?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_K@Z + ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_KP6AX1PEAX@Z3@Z=node.exe.?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_KP6AX1PEAX@Z3@Z + ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@V?$Local@VString@v8@@@4@W4encoding@2@@Z=node.exe.?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@V?$Local@VString@v8@@@4@W4encoding@2@@Z + ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@_K@Z=node.exe.?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@_K@Z + ?New@Buffer@node@@YA?AV?$MaybeLocal@VUint8Array@v8@@@v8@@PEAVIsolate@4@V?$Local@VArrayBuffer@v8@@@4@_K2@Z=node.exe.?New@Buffer@node@@YA?AV?$MaybeLocal@VUint8Array@v8@@@v8@@PEAVIsolate@4@V?$Local@VArrayBuffer@v8@@@4@_K2@Z + ?New@Context@v8@@SA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@UDeserializeInternalFieldsCallback@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z=node.exe.?New@Context@v8@@SA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@UDeserializeInternalFieldsCallback@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z + ?New@CpuProfiler@v8@@SAPEAV12@PEAVIsolate@2@W4CpuProfilingNamingMode@2@W4CpuProfilingLoggingMode@2@@Z=node.exe.?New@CpuProfiler@v8@@SAPEAV12@PEAVIsolate@2@W4CpuProfilingNamingMode@2@W4CpuProfilingLoggingMode@2@@Z + ?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@N@Z=node.exe.?New@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@N@Z + ?New@DictionaryTemplate@v8@@SA?AV?$Local@VDictionaryTemplate@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@2@@Z=node.exe.?New@DictionaryTemplate@v8@@SA?AV?$Local@VDictionaryTemplate@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@2@@Z + ?New@External@v8@@SA?AV?$Local@VExternal@v8@@@2@PEAVIsolate@2@PEAX@Z=node.exe.?New@External@v8@@SA?AV?$Local@VExternal@v8@@@2@PEAVIsolate@2@PEAX@Z + ?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Function@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@@Z=node.exe.?New@Function@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@@Z + ?New@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@PEBVCFunction@2@GGG@Z=node.exe.?New@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@PEBVCFunction@2@GGG@Z + ?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@H@Z=node.exe.?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@H@Z + ?New@Isolate@v8@@SAPEAV12@AEBUCreateParams@12@@Z=node.exe.?New@Isolate@v8@@SAPEAV12@AEBUCreateParams@12@@Z + ?New@Map@v8@@SA?AV?$Local@VMap@v8@@@2@PEAVIsolate@2@@Z=node.exe.?New@Map@v8@@SA?AV?$Local@VMap@v8@@@2@PEAVIsolate@2@@Z + ?New@MicrotaskQueue@v8@@SA?AV?$unique_ptr@VMicrotaskQueue@v8@@U?$default_delete@VMicrotaskQueue@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@W4MicrotasksPolicy@2@@Z=node.exe.?New@MicrotaskQueue@v8@@SA?AV?$unique_ptr@VMicrotaskQueue@v8@@U?$default_delete@VMicrotaskQueue@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@W4MicrotasksPolicy@2@@Z + ?New@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?New@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?New@Number@v8@@SA?AV?$Local@VNumber@v8@@@2@PEAVIsolate@2@N@Z=node.exe.?New@Number@v8@@SA?AV?$Local@VNumber@v8@@@2@PEAVIsolate@2@N@Z + ?New@NumberObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@N@Z=node.exe.?New@NumberObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@N@Z + ?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z=node.exe.?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z + ?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@PEAV?$Local@VName@v8@@@2@PEAV52@_K@Z=node.exe.?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@PEAV?$Local@VName@v8@@@2@PEAV52@_K@Z + ?New@ObjectTemplate@v8@@SA?AV?$Local@VObjectTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z=node.exe.?New@ObjectTemplate@v8@@SA?AV?$Local@VObjectTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + ?New@PrimitiveArray@v8@@SA?AV?$Local@VPrimitiveArray@v8@@@2@PEAVIsolate@2@H@Z=node.exe.?New@PrimitiveArray@v8@@SA?AV?$Local@VPrimitiveArray@v8@@@2@PEAVIsolate@2@H@Z + ?New@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?New@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?New@Proxy@v8@@SA?AV?$MaybeLocal@VProxy@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@1@Z=node.exe.?New@Proxy@v8@@SA?AV?$MaybeLocal@VProxy@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@1@Z + ?New@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@@Z=node.exe.?New@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@@Z + ?New@Resolver@Promise@v8@@SA?AV?$MaybeLocal@VResolver@Promise@v8@@@3@V?$Local@VContext@v8@@@3@@Z=node.exe.?New@Resolver@Promise@v8@@SA?AV?$MaybeLocal@VResolver@Promise@v8@@@3@V?$Local@VContext@v8@@@3@@Z + ?New@Set@v8@@SA?AV?$Local@VSet@v8@@@2@PEAVIsolate@2@@Z=node.exe.?New@Set@v8@@SA?AV?$Local@VSet@v8@@@2@PEAVIsolate@2@@Z + ?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z=node.exe.?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z + ?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z=node.exe.?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + ?New@Signature@v8@@SA?AV?$Local@VSignature@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z=node.exe.?New@Signature@v8@@SA?AV?$Local@VSignature@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + ?New@StringObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?New@StringObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?New@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z=node.exe.?New@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + ?New@SymbolObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VSymbol@v8@@@2@@Z=node.exe.?New@SymbolObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VSymbol@v8@@@2@@Z + ?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + ?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z=node.exe.?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + ?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z=node.exe.?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + ?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z=node.exe.?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z + ?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z=node.exe.?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + ?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z=node.exe.?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z + ?NewContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVIsolate@3@V?$Local@VObjectTemplate@v8@@@3@@Z=node.exe.?NewContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVIsolate@3@V?$Local@VObjectTemplate@v8@@@3@@Z + ?NewDefaultAllocator@Allocator@ArrayBuffer@v8@@SAPEAV123@XZ=node.exe.?NewDefaultAllocator@Allocator@ArrayBuffer@v8@@SAPEAV123@XZ + ?NewExternalOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z=node.exe.?NewExternalOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z + ?NewExternalTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalStringResource@12@@Z=node.exe.?NewExternalTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalStringResource@12@@Z + ?NewFromOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBEW4NewStringType@2@H@Z=node.exe.?NewFromOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBEW4NewStringType@2@H@Z + ?NewFromTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBGW4NewStringType@2@H@Z=node.exe.?NewFromTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBGW4NewStringType@2@H@Z + ?NewFromUnsigned@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_K@Z=node.exe.?NewFromUnsigned@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_K@Z + ?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@I@Z=node.exe.?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@I@Z + ?NewFromUtf8@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z=node.exe.?NewFromUtf8@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z + ?NewFromUtf8Literal@String@v8@@CA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z=node.exe.?NewFromUtf8Literal@String@v8@@CA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z + ?NewFromWords@BigInt@v8@@SA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@HHPEB_K@Z=node.exe.?NewFromWords@BigInt@v8@@SA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@HHPEB_K@Z + ?NewInstance@DictionaryTemplate@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@2@@Z=node.exe.?NewInstance@DictionaryTemplate@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@2@@Z + ?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z=node.exe.?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z + ?NewInstance@ObjectTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?NewInstance@ObjectTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?NewInstanceWithSideEffectType@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@W4SideEffectType@2@@Z=node.exe.?NewInstanceWithSideEffectType@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@W4SideEffectType@2@@Z + ?NewIsolate@node@@YAPEAVIsolate@v8@@PEAVArrayBufferAllocator@1@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z=node.exe.?NewIsolate@node@@YAPEAVIsolate@v8@@PEAVArrayBufferAllocator@1@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z + ?NewIsolate@node@@YAPEAVIsolate@v8@@V?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z=node.exe.?NewIsolate@node@@YAPEAVIsolate@v8@@V?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z + ?NewRemoteContext@Context@v8@@SA?AV?$MaybeLocal@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@@Z=node.exe.?NewRemoteContext@Context@v8@@SA?AV?$MaybeLocal@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@@Z + ?NewRemoteInstance@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@XZ=node.exe.?NewRemoteInstance@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@XZ + ?NewResizableBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@_K0@Z=node.exe.?NewResizableBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@_K0@Z + ?NewWithBacktrackLimit@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@I@Z=node.exe.?NewWithBacktrackLimit@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@I@Z + ?NewWithCFunctionOverloads@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z=node.exe.?NewWithCFunctionOverloads@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z + ?NewWithCache@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4SideEffectType@2@@Z=node.exe.?NewWithCache@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4SideEffectType@2@@Z + ?NodesInUse@CrossThreadPersistentRegion@internal@cppgc@@QEBA_KXZ=node.exe.?NodesInUse@CrossThreadPersistentRegion@internal@cppgc@@QEBA_KXZ + ?NodesInUse@PersistentRegionBase@internal@cppgc@@QEBA_KXZ=node.exe.?NodesInUse@PersistentRegionBase@internal@cppgc@@QEBA_KXZ + ?NotifyIsolateDisposal@Recorder@metrics@v8@@UEAAXXZ=node.exe.?NotifyIsolateDisposal@Recorder@metrics@v8@@UEAAXXZ + ?NumberOfGCInfos@GCInfoTable@internal@cppgc@@QEBAGXZ=node.exe.?NumberOfGCInfos@GCInfoTable@internal@cppgc@@QEBAGXZ + ?NumberOfHandles@HandleScope@v8@@SAHPEAVIsolate@2@@Z=node.exe.?NumberOfHandles@HandleScope@v8@@SAHPEAVIsolate@2@@Z + ?NumberOfHeapSpaces@Isolate@v8@@QEAA_KXZ=node.exe.?NumberOfHeapSpaces@Isolate@v8@@QEAA_KXZ + ?NumberOfTrackedHeapObjectTypes@Isolate@v8@@QEAA_KXZ=node.exe.?NumberOfTrackedHeapObjectTypes@Isolate@v8@@QEAA_KXZ + ?NumberValue@Value@v8@@QEBA?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?NumberValue@Value@v8@@QEBA?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z + ?OOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?OOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?ObjectProtoToString@Object@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ObjectProtoToString@Object@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?OffsetFromAddress@CagedHeapBase@internal@cppgc@@SA_KPEBX@Z=node.exe.?OffsetFromAddress@CagedHeapBase@internal@cppgc@@SA_KPEBX@Z + ?OnBytesReceived@WasmStreaming@v8@@QEAAXPEBE_K@Z=node.exe.?OnBytesReceived@WasmStreaming@v8@@QEAAXPEBE_K@Z + ?OnFatalError@node@@YAXPEBD0@Z=node.exe.?OnFatalError@node@@YAXPEBD0@Z + ?Options@ScriptOrigin@v8@@QEBA?AVScriptOriginOptions@2@XZ=node.exe.?Options@ScriptOrigin@v8@@QEBA?AVScriptOriginOptions@2@XZ + ?Other@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?Other@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?PCIsInV8@Unwinder@v8@@SA_N_KPEBUMemoryRange@2@PEAX@Z=node.exe.?PCIsInV8@Unwinder@v8@@SA_N_KPEBUMemoryRange@2@PEAX@Z + ?Parse@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z=node.exe.?Parse@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + ?Parse@JSON@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z=node.exe.?Parse@JSON@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + ?ParseEncoding@node@@YA?AW4encoding@1@PEAVIsolate@v8@@V?$Local@VValue@v8@@@4@W421@@Z=node.exe.?ParseEncoding@node@@YA?AW4encoding@1@PEAVIsolate@v8@@V?$Local@VValue@v8@@@4@W421@@Z + ?PerformCheckpoint@MicrotasksScope@v8@@SAXPEAVIsolate@2@@Z=node.exe.?PerformCheckpoint@MicrotasksScope@v8@@SAXPEAVIsolate@2@@Z + ?PerformMarkingStep@StandaloneTestingHeap@testing@cppgc@@QEAA_NW4EmbedderStackState@3@@Z=node.exe.?PerformMarkingStep@StandaloneTestingHeap@testing@cppgc@@QEAA_NW4EmbedderStackState@3@@Z + ?PerformMicrotaskCheckpoint@Isolate@v8@@QEAAXXZ=node.exe.?PerformMicrotaskCheckpoint@Isolate@v8@@QEAAXXZ + ?PostJob@Platform@cppgc@@UEAA?AV?$unique_ptr@VJobHandle@v8@@U?$default_delete@VJobHandle@v8@@@__Cr@std@@@__Cr@std@@W4TaskPriority@v8@@V?$unique_ptr@VJobTask@v8@@U?$default_delete@VJobTask@v8@@@__Cr@std@@@45@@Z=node.exe.?PostJob@Platform@cppgc@@UEAA?AV?$unique_ptr@VJobHandle@v8@@U?$default_delete@VJobHandle@v8@@@__Cr@std@@@__Cr@std@@W4TaskPriority@v8@@V?$unique_ptr@VJobTask@v8@@U?$default_delete@VJobTask@v8@@@__Cr@std@@@45@@Z + ?PrepareInstall@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ=node.exe.?PrepareInstall@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ + ?PrepareInstallPredictable@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ=node.exe.?PrepareInstallPredictable@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ + ?PrepareStackTraceCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@V?$Local@VArray@v8@@@3@@Z=node.exe.?PrepareStackTraceCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@V?$Local@VArray@v8@@@3@@Z + ?PreviewEntries@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@PEA_N@Z=node.exe.?PreviewEntries@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@PEA_N@Z + ?PreviousGCWasConservative@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z=node.exe.?PreviousGCWasConservative@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + ?PrintCurrentStackTrace@Message@v8@@SAXPEAVIsolate@2@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z=node.exe.?PrintCurrentStackTrace@Message@v8@@SAXPEAVIsolate@2@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + ?Prioritize@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXV?$Tagged@VSharedFunctionInfo@internal@v8@@@23@@Z=node.exe.?Prioritize@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXV?$Tagged@VSharedFunctionInfo@internal@v8@@@23@@Z + ?ProcessGlobalArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4OptionEnvvarSettings@1@@Z=node.exe.?ProcessGlobalArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4OptionEnvvarSettings@1@@Z + ?PromiseRejectCallback@node@@YAXVPromiseRejectMessage@v8@@@Z=node.exe.?PromiseRejectCallback@node@@YAXVPromiseRejectMessage@v8@@@Z + ?PromiseRejection@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?PromiseRejection@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?PrototypeTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ=node.exe.?PrototypeTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ + ?QueryObjects@HeapProfiler@v8@@QEAAXV?$Local@VContext@v8@@@2@PEAVQueryObjectPredicate@2@PEAV?$vector@V?$Global@VObject@v8@@@v8@@V?$allocator@V?$Global@VObject@v8@@@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?QueryObjects@HeapProfiler@v8@@QEAAXV?$Local@VContext@v8@@@2@PEAVQueryObjectPredicate@2@PEAV?$vector@V?$Global@VObject@v8@@@v8@@V?$allocator@V?$Global@VObject@v8@@@v8@@@__Cr@std@@@__Cr@std@@@Z + ?QueueIndex@OptimizingCompileDispatcherQueue@internal@v8@@AEAAHH@Z=node.exe.?QueueIndex@OptimizingCompileDispatcherQueue@internal@v8@@AEAAHH@Z + ?QuickIsFalse@Value@v8@@AEBA_NXZ=node.exe.?QuickIsFalse@Value@v8@@AEBA_NXZ + ?QuickIsNull@Value@v8@@AEBA_NXZ=node.exe.?QuickIsNull@Value@v8@@AEBA_NXZ + ?QuickIsNullOrUndefined@Value@v8@@AEBA_NXZ=node.exe.?QuickIsNullOrUndefined@Value@v8@@AEBA_NXZ + ?QuickIsString@Value@v8@@AEBA_NXZ=node.exe.?QuickIsString@Value@v8@@AEBA_NXZ + ?QuickIsTrue@Value@v8@@AEBA_NXZ=node.exe.?QuickIsTrue@Value@v8@@AEBA_NXZ + ?QuickIsUndefined@Value@v8@@AEBA_NXZ=node.exe.?QuickIsUndefined@Value@v8@@AEBA_NXZ + ?RangeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?RangeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?ReThrow@TryCatch@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?ReThrow@TryCatch@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?ReadDouble@ValueDeserializer@v8@@QEAA_NPEAN@Z=node.exe.?ReadDouble@ValueDeserializer@v8@@QEAA_NPEAN@Z + ?ReadHeader@ValueDeserializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ReadHeader@ValueDeserializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@@Z + ?ReadHostObject@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VObject@v8@@@3@PEAVIsolate@3@@Z=node.exe.?ReadHostObject@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VObject@v8@@@3@PEAVIsolate@3@@Z + ?ReadOnlyPrototype@FunctionTemplate@v8@@QEAAXXZ=node.exe.?ReadOnlyPrototype@FunctionTemplate@v8@@QEAAXXZ + ?ReadRawBytes@ValueDeserializer@v8@@QEAA_N_KPEAPEBX@Z=node.exe.?ReadRawBytes@ValueDeserializer@v8@@QEAA_N_KPEAPEBX@Z + ?ReadUint32@ValueDeserializer@v8@@QEAA_NPEAI@Z=node.exe.?ReadUint32@ValueDeserializer@v8@@QEAA_NPEAI@Z + ?ReadUint64@ValueDeserializer@v8@@QEAA_NPEA_K@Z=node.exe.?ReadUint64@ValueDeserializer@v8@@QEAA_NPEA_K@Z + ?ReadValue@ValueDeserializer@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ReadValue@ValueDeserializer@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?Reallocate@Allocator@ArrayBuffer@v8@@UEAAPEAXPEAX_K1@Z=node.exe.?Reallocate@Allocator@ArrayBuffer@v8@@UEAAPEAXPEAX_K1@Z + ?Reallocate@BackingStore@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V345@_K@Z=node.exe.?Reallocate@BackingStore@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V345@_K@Z + ?ReallocateBufferMemory@Delegate@ValueSerializer@v8@@UEAAPEAXPEAX_KPEA_K@Z=node.exe.?ReallocateBufferMemory@Delegate@ValueSerializer@v8@@UEAAPEAXPEAX_KPEA_K@Z + ?RecordDependency@CompilationDependencies@compiler@internal@v8@@QEAAXPEBVCompilationDependency@234@@Z=node.exe.?RecordDependency@CompilationDependencies@compiler@internal@v8@@QEAAXPEBVCompilationDependency@234@@Z + ?ReferenceError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?ReferenceError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?RefillFreeList@PersistentRegionBase@internal@cppgc@@AEAAXXZ=node.exe.?RefillFreeList@PersistentRegionBase@internal@cppgc@@AEAAXXZ + ?RefillFreeListAndAllocateNode@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z=node.exe.?RefillFreeListAndAllocateNode@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + ?RegisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z=node.exe.?RegisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z + ?RegisterExtension@v8@@YAXV?$unique_ptr@VExtension@v8@@U?$default_delete@VExtension@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?RegisterExtension@v8@@YAXV?$unique_ptr@VExtension@v8@@U?$default_delete@VExtension@v8@@@__Cr@std@@@__Cr@std@@@Z + ?RegisterExternalReferences@ModuleWrap@loader@node@@SAXPEAVExternalReferenceRegistry@3@@Z=node.exe.?RegisterExternalReferences@ModuleWrap@loader@node@@SAXPEAVExternalReferenceRegistry@3@@Z + ?RegisterInstructionStreamAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0_N@Z=node.exe.?RegisterInstructionStreamAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0_N@Z + ?RegisterJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z=node.exe.?RegisterJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z + ?RegisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z=node.exe.?RegisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z + ?RegisterJitAllocations@ThreadIsolation@internal@v8@@SAX_KAEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@W4JitAllocationType@123@@Z=node.exe.?RegisterJitAllocations@ThreadIsolation@internal@v8@@SAX_KAEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@W4JitAllocationType@123@@Z + ?RegisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z=node.exe.?RegisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z + ?RegisterNewGCInfo@GCInfoTable@internal@cppgc@@QEAAGAEAU?$atomic@G@__Cr@std@@AEBUGCInfo@23@@Z=node.exe.?RegisterNewGCInfo@GCInfoTable@internal@cppgc@@QEAAGAEAU?$atomic@G@__Cr@std@@AEBUGCInfo@23@@Z + ?RegisterWeakCallback@Visitor@cppgc@@UEAAXP6AXAEBVLivenessBroker@2@PEBX@Z1@Z=node.exe.?RegisterWeakCallback@Visitor@cppgc@@UEAAXP6AXAEBVLivenessBroker@2@PEBX@Z1@Z + ?Reject@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z=node.exe.?Reject@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z + ?Release@ValueSerializer@v8@@QEAA?AU?$pair@PEAE_K@__Cr@std@@XZ=node.exe.?Release@ValueSerializer@v8@@QEAA?AU?$pair@PEAE_K@__Cr@std@@XZ + ?RemoveBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z=node.exe.?RemoveBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + ?RemoveBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z=node.exe.?RemoveBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z + ?RemoveCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z=node.exe.?RemoveCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + ?RemoveEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z=node.exe.?RemoveEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z + ?RemoveEnvironmentCleanupHookInternal@node@@YAXPEAUACHHandle@1@@Z=node.exe.?RemoveEnvironmentCleanupHookInternal@node@@YAXPEAUACHHandle@1@@Z + ?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z=node.exe.?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z + ?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z=node.exe.?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z + ?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z=node.exe.?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z + ?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z=node.exe.?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z + ?RemoveMessageListeners@Isolate@v8@@QEAAXP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z=node.exe.?RemoveMessageListeners@Isolate@v8@@QEAAXP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z + ?RemoveMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z=node.exe.?RemoveMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + ?RemoveNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z1@Z=node.exe.?RemoveNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z1@Z + ?RemovePrototype@FunctionTemplate@v8@@QEAAXXZ=node.exe.?RemovePrototype@FunctionTemplate@v8@@QEAAXXZ + ?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@@Z=node.exe.?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@@Z + ?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@W4EmbedderStackState@cppgc@@@Z=node.exe.?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@W4EmbedderStackState@cppgc@@@Z + ?RequestInterrupt@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z=node.exe.?RequestInterrupt@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + ?RequestInterrupt@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z=node.exe.?RequestInterrupt@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z + ?Reset@LongTaskStats@metrics@v8@@SAXPEAVIsolate@3@@Z=node.exe.?Reset@LongTaskStats@metrics@v8@@SAXPEAVIsolate@3@@Z + ?Reset@TryCatch@v8@@QEAAXXZ=node.exe.?Reset@TryCatch@v8@@QEAAXXZ + ?ResetForTesting@AgeTable@internal@cppgc@@QEAAXXZ=node.exe.?ResetForTesting@AgeTable@internal@cppgc@@QEAAXXZ + ?ResetInternal@TryCatch@v8@@AEAAXXZ=node.exe.?ResetInternal@TryCatch@v8@@AEAAXXZ + ?Resize@ExplicitManagementImpl@internal@cppgc@@CA_NPEAX_K@Z=node.exe.?Resize@ExplicitManagementImpl@internal@cppgc@@CA_NPEAX_K@Z + ?Resize@GCInfoTable@internal@cppgc@@AEAAXXZ=node.exe.?Resize@GCInfoTable@internal@cppgc@@AEAAXXZ + ?Resolve@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z=node.exe.?Resolve@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z + ?ResolveModuleCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VModule@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VString@v8@@@5@V?$Local@VFixedArray@v8@@@5@V?$Local@VModule@v8@@@5@@Z=node.exe.?ResolveModuleCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VModule@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VString@v8@@@5@V?$Local@VFixedArray@v8@@@5@V?$Local@VModule@v8@@@5@@Z + ?ResourceName@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?ResourceName@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?RestoreOriginalHeapLimit@Isolate@v8@@QEAAXXZ=node.exe.?RestoreOriginalHeapLimit@Isolate@v8@@QEAAXXZ + ?Result@Promise@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?Result@Promise@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + ?ReturnInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@XZ=node.exe.?ReturnInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@XZ + ?ReturnInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@XZ=node.exe.?ReturnInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@XZ + ?Revoke@Proxy@v8@@QEAAXXZ=node.exe.?Revoke@Proxy@v8@@QEAAXXZ + ?Run@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ=node.exe.?Run@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ + ?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@@Z=node.exe.?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@@Z + ?Run@ScriptStreamingTask@ScriptCompiler@v8@@QEAAXXZ=node.exe.?Run@ScriptStreamingTask@ScriptCompiler@v8@@QEAAXXZ + ?RunAtExit@node@@YAXPEAVEnvironment@1@@Z=node.exe.?RunAtExit@node@@YAXPEAVEnvironment@1@@Z + ?SameValue@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z=node.exe.?SameValue@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + ?ScriptId@Function@v8@@QEBAHXZ=node.exe.?ScriptId@Function@v8@@QEBAHXZ + ?ScriptId@Module@v8@@QEBAHXZ=node.exe.?ScriptId@Module@v8@@QEBAHXZ + ?ScriptId@ScriptOrigin@v8@@QEBAHXZ=node.exe.?ScriptId@ScriptOrigin@v8@@QEBAHXZ + ?SelfSize@ModuleWrap@loader@node@@UEBA_KXZ=node.exe.?SelfSize@ModuleWrap@loader@node@@UEBA_KXZ + ?Serialize@CompiledWasmModule@v8@@QEAA?AUOwnedBuffer@2@XZ=node.exe.?Serialize@CompiledWasmModule@v8@@QEAA?AUOwnedBuffer@2@XZ + ?Serialize@CpuProfile@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z=node.exe.?Serialize@CpuProfile@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z + ?Serialize@HeapSnapshot@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z=node.exe.?Serialize@HeapSnapshot@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z + ?Set@Map@v8@@QEAA?AV?$MaybeLocal@VMap@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z=node.exe.?Set@Map@v8@@QEAA?AV?$MaybeLocal@VMap@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z + ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z=node.exe.?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z + ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z=node.exe.?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z + ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1V?$MaybeLocal@VObject@v8@@@2@@Z=node.exe.?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1V?$MaybeLocal@VObject@v8@@@2@@Z + ?Set@PrimitiveArray@v8@@QEAAXPEAVIsolate@2@HV?$Local@VPrimitive@v8@@@2@@Z=node.exe.?Set@PrimitiveArray@v8@@QEAAXPEAVIsolate@2@HV?$Local@VPrimitive@v8@@@2@@Z + ?Set@Template@v8@@QEAAXPEAVIsolate@2@PEBDV?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z=node.exe.?Set@Template@v8@@QEAAXPEAVIsolate@2@PEBDV?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + ?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z=node.exe.?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + ?SetAbortOnUncaughtExceptionCallback@Isolate@v8@@QEAAXP6A_NPEAV12@@Z@Z=node.exe.?SetAbortOnUncaughtExceptionCallback@Isolate@v8@@QEAAXP6A_NPEAV12@@Z@Z + ?SetAbortScriptExecution@Context@v8@@QEAAXP6AXPEAVIsolate@2@V?$Local@VContext@v8@@@2@@Z@Z=node.exe.?SetAbortScriptExecution@Context@v8@@QEAAXP6AXPEAVIsolate@2@V?$Local@VContext@v8@@@2@@Z@Z + ?SetAcceptAnyReceiver@FunctionTemplate@v8@@QEAAX_N@Z=node.exe.?SetAcceptAnyReceiver@FunctionTemplate@v8@@QEAAX_N@Z + ?SetAccessCheckCallback@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@Z2@Z=node.exe.?SetAccessCheckCallback@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@Z2@Z + ?SetAccessCheckCallbackAndHandler@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@ZAEBUNamedPropertyHandlerConfiguration@2@AEBUIndexedPropertyHandlerConfiguration@2@2@Z=node.exe.?SetAccessCheckCallbackAndHandler@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@ZAEBUNamedPropertyHandlerConfiguration@2@AEBUIndexedPropertyHandlerConfiguration@2@2@Z + ?SetAccessorProperty@Object@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunction@v8@@@2@1W4PropertyAttribute@2@@Z=node.exe.?SetAccessorProperty@Object@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunction@v8@@@2@1W4PropertyAttribute@2@@Z + ?SetAccessorProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@1W4PropertyAttribute@2@@Z=node.exe.?SetAccessorProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@1W4PropertyAttribute@2@@Z + ?SetAddCrashKeyCallback@Isolate@v8@@QEAAXP6AXW4CrashKeyId@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z=node.exe.?SetAddCrashKeyCallback@Isolate@v8@@QEAAXP6AXW4CrashKeyId@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z + ?SetAddHistogramSampleFunction@Isolate@v8@@QEAAXP6AXPEAXH@Z@Z=node.exe.?SetAddHistogramSampleFunction@Isolate@v8@@QEAAXP6AXPEAXH@Z@Z + ?SetAge@AgeTable@internal@cppgc@@QEAAX_KW4Age@123@@Z=node.exe.?SetAge@AgeTable@internal@cppgc@@QEAAX_KW4Age@123@@Z + ?SetAgeForRange@AgeTable@internal@cppgc@@QEAAX_K0W4Age@123@W4AdjacentCardsPolicy@123@@Z=node.exe.?SetAgeForRange@AgeTable@internal@cppgc@@QEAAX_K0W4Age@123@W4AdjacentCardsPolicy@123@@Z + ?SetAlignedPointerInEmbedderData@Context@v8@@QEAAXHPEAX@Z=node.exe.?SetAlignedPointerInEmbedderData@Context@v8@@QEAAXHPEAX@Z + ?SetAlignedPointerInInternalField@Object@v8@@QEAAXHPEAX@Z=node.exe.?SetAlignedPointerInInternalField@Object@v8@@QEAAXHPEAX@Z + ?SetAlignedPointerInInternalFields@Object@v8@@QEAAXHQEAHQEAPEAX@Z=node.exe.?SetAlignedPointerInInternalFields@Object@v8@@QEAAXHQEAHQEAPEAX@Z + ?SetAllowAtomicsWait@Isolate@v8@@QEAAX_N@Z=node.exe.?SetAllowAtomicsWait@Isolate@v8@@QEAAX_N@Z + ?SetAllowWasmCodeGenerationCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z@Z=node.exe.?SetAllowWasmCodeGenerationCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z@Z + ?SetAtomicsWaitCallback@Isolate@v8@@QEAAXP6AXW4AtomicsWaitEvent@12@V?$Local@VSharedArrayBuffer@v8@@@2@_K_JNPEAVAtomicsWaitWakeHandle@12@PEAX@Z5@Z=node.exe.?SetAtomicsWaitCallback@Isolate@v8@@QEAAXP6AXW4AtomicsWaitEvent@12@V?$Local@VSharedArrayBuffer@v8@@@2@_K_JNPEAVAtomicsWaitWakeHandle@12@PEAX@Z5@Z + ?SetBatterySaverMode@Isolate@v8@@QEAAX_N@Z=node.exe.?SetBatterySaverMode@Isolate@v8@@QEAAX_N@Z + ?SetCallAsFunctionHandler@ObjectTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@@Z=node.exe.?SetCallAsFunctionHandler@ObjectTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@@Z + ?SetCallHandler@FunctionTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z=node.exe.?SetCallHandler@FunctionTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z + ?SetCaptureMessage@TryCatch@v8@@QEAAX_N@Z=node.exe.?SetCaptureMessage@TryCatch@v8@@QEAAX_N@Z + ?SetCaptureStackTraceForUncaughtExceptions@Isolate@v8@@QEAAX_NHW4StackTraceOptions@StackTrace@2@@Z=node.exe.?SetCaptureStackTraceForUncaughtExceptions@Isolate@v8@@QEAAX_NHW4StackTraceOptions@StackTrace@2@@Z + ?SetClassName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z=node.exe.?SetClassName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + ?SetCodeLike@ObjectTemplate@v8@@QEAAXXZ=node.exe.?SetCodeLike@ObjectTemplate@v8@@QEAAXXZ + ?SetCompiledModuleBytes@WasmStreaming@v8@@QEAA_NPEBE_K@Z=node.exe.?SetCompiledModuleBytes@WasmStreaming@v8@@QEAA_NPEBE_K@Z + ?SetContinuationPreservedEmbedderData@Isolate@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z=node.exe.?SetContinuationPreservedEmbedderData@Isolate@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + ?SetCounterFunction@Isolate@v8@@QEAAXP6APEAHPEBD@Z@Z=node.exe.?SetCounterFunction@Isolate@v8@@QEAAXP6APEAHPEBD@Z@Z + ?SetCppgcReference@node@@YAXPEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEAX@Z=node.exe.?SetCppgcReference@node@@YAXPEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEAX@Z + ?SetCreateHistogramFunction@Isolate@v8@@QEAAXP6APEAXPEBDHH_K@Z@Z=node.exe.?SetCreateHistogramFunction@Isolate@v8@@QEAAXP6APEAXPEBDHH_K@Z@Z + ?SetData@Isolate@v8@@QEAAXIPEAX@Z=node.exe.?SetData@Isolate@v8@@QEAAXIPEAX@Z + ?SetDcheckErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z=node.exe.?SetDcheckErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z + ?SetDefaultContext@SnapshotCreator@v8@@QEAAXV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z=node.exe.?SetDefaultContext@SnapshotCreator@v8@@QEAAXV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z + ?SetDetachKey@ArrayBuffer@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z=node.exe.?SetDetachKey@ArrayBuffer@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + ?SetEmbedderData@Context@v8@@QEAAXHV?$Local@VValue@v8@@@2@@Z=node.exe.?SetEmbedderData@Context@v8@@QEAAXHV?$Local@VValue@v8@@@2@@Z + ?SetEmbedderRootsHandler@Isolate@v8@@QEAAXPEAVEmbedderRootsHandler@2@@Z=node.exe.?SetEmbedderRootsHandler@Isolate@v8@@QEAAXPEAVEmbedderRootsHandler@2@@Z + ?SetEntropySource@V8@v8@@SAXP6A_NPEAE_K@Z@Z=node.exe.?SetEntropySource@V8@v8@@SAXP6A_NPEAE_K@Z@Z + ?SetErrorMessageForCodeGenerationFromStrings@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z=node.exe.?SetErrorMessageForCodeGenerationFromStrings@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + ?SetErrorMessageForWasmCodeGeneration@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z=node.exe.?SetErrorMessageForWasmCodeGeneration@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + ?SetEventLogger@Isolate@v8@@QEAAXP6AXPEBDH@Z@Z=node.exe.?SetEventLogger@Isolate@v8@@QEAAXP6AXPEBDH@Z@Z + ?SetExceptionContext@FunctionTemplate@v8@@QEAAXW4ExceptionContext@2@@Z=node.exe.?SetExceptionContext@FunctionTemplate@v8@@QEAAXW4ExceptionContext@2@@Z + ?SetExceptionPropagationCallback@Isolate@v8@@QEAAXP6AXVExceptionPropagationMessage@2@@Z@Z=node.exe.?SetExceptionPropagationCallback@Isolate@v8@@QEAAXP6AXVExceptionPropagationMessage@2@@Z@Z + ?SetFailedAccessCheckCallbackFunction@Isolate@v8@@QEAAXP6AXV?$Local@VObject@v8@@@2@W4AccessType@2@V?$Local@VValue@v8@@@2@@Z@Z=node.exe.?SetFailedAccessCheckCallbackFunction@Isolate@v8@@QEAAXP6AXV?$Local@VObject@v8@@@2@W4AccessType@2@V?$Local@VValue@v8@@@2@@Z@Z + ?SetFatalErrorHandler@Isolate@v8@@QEAAXP6AXPEBD0@Z@Z=node.exe.?SetFatalErrorHandler@Isolate@v8@@QEAAXP6AXPEBD0@Z@Z + ?SetFatalErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z=node.exe.?SetFatalErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z + ?SetFatalMemoryErrorCallback@V8@v8@@SAXP6AXPEBDAEBUOOMDetails@2@@Z@Z=node.exe.?SetFatalMemoryErrorCallback@V8@v8@@SAXP6AXPEBDAEBUOOMDetails@2@@Z@Z + ?SetFilterETWSessionByURLCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z=node.exe.?SetFilterETWSessionByURLCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z + ?SetFlagsFromCommandLine@V8@v8@@SAXPEAHPEAPEAD_N@Z=node.exe.?SetFlagsFromCommandLine@V8@v8@@SAXPEAHPEAPEAD_N@Z + ?SetFlagsFromString@V8@v8@@SAXPEBD@Z=node.exe.?SetFlagsFromString@V8@v8@@SAXPEBD@Z + ?SetFlagsFromString@V8@v8@@SAXPEBD_K@Z=node.exe.?SetFlagsFromString@V8@v8@@SAXPEBD_K@Z + ?SetGetDetachednessCallback@HeapProfiler@v8@@QEAAXP6A?AW4Detachedness@Node@EmbedderGraph@2@PEAVIsolate@2@AEBV?$Local@VValue@v8@@@2@GPEAX@Z2@Z=node.exe.?SetGetDetachednessCallback@HeapProfiler@v8@@QEAAXP6A?AW4Detachedness@Node@EmbedderGraph@2@PEAVIsolate@2@AEBV?$Local@VValue@v8@@@2@GPEAX@Z2@Z + ?SetGetExternallyAllocatedMemoryInBytesCallback@Isolate@v8@@QEAAXP6A_KXZ@Z=node.exe.?SetGetExternallyAllocatedMemoryInBytesCallback@Isolate@v8@@QEAAXP6A_KXZ@Z + ?SetHandler@ObjectTemplate@v8@@QEAAXAEBUIndexedPropertyHandlerConfiguration@2@@Z=node.exe.?SetHandler@ObjectTemplate@v8@@QEAAXAEBUIndexedPropertyHandlerConfiguration@2@@Z + ?SetHandler@ObjectTemplate@v8@@QEAAXAEBUNamedPropertyHandlerConfiguration@2@@Z=node.exe.?SetHandler@ObjectTemplate@v8@@QEAAXAEBUNamedPropertyHandlerConfiguration@2@@Z + ?SetHostCreateShadowRealmContextCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VContext@v8@@@2@V?$Local@VContext@v8@@@2@@Z@Z=node.exe.?SetHostCreateShadowRealmContextCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VContext@v8@@@2@V?$Local@VContext@v8@@@2@@Z@Z + ?SetHostImportModuleDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@@Z@Z=node.exe.?SetHostImportModuleDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@@Z@Z + ?SetHostImportModuleWithPhaseDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@W4ModuleImportPhase@2@V?$Local@VFixedArray@v8@@@2@@Z@Z=node.exe.?SetHostImportModuleWithPhaseDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@W4ModuleImportPhase@2@V?$Local@VFixedArray@v8@@@2@@Z@Z + ?SetHostInitializeImportMetaObjectCallback@Isolate@v8@@QEAAXP6AXV?$Local@VContext@v8@@@2@V?$Local@VModule@v8@@@2@V?$Local@VObject@v8@@@2@@Z@Z=node.exe.?SetHostInitializeImportMetaObjectCallback@Isolate@v8@@QEAAXP6AXV?$Local@VContext@v8@@@2@V?$Local@VModule@v8@@@2@V?$Local@VObject@v8@@@2@@Z@Z + ?SetId@DiscardedSamplesDelegate@v8@@AEAAXI@Z=node.exe.?SetId@DiscardedSamplesDelegate@v8@@AEAAXI@Z + ?SetIdle@Isolate@v8@@QEAAX_N@Z=node.exe.?SetIdle@Isolate@v8@@QEAAX_N@Z + ?SetImmutableProto@ObjectTemplate@v8@@QEAAXXZ=node.exe.?SetImmutableProto@ObjectTemplate@v8@@QEAAXXZ + ?SetImportModuleDynamicallyCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?SetImportModuleDynamicallyCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?SetInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?SetInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?SetIntegrityLevel@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@W4IntegrityLevel@2@@Z=node.exe.?SetIntegrityLevel@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@W4IntegrityLevel@2@@Z + ?SetInterfaceName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z=node.exe.?SetInterfaceName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + ?SetInternalField@Object@v8@@QEAAXHV?$Local@VData@v8@@@2@@Z=node.exe.?SetInternalField@Object@v8@@QEAAXHV?$Local@VData@v8@@@2@@Z + ?SetInternalFieldCount@ObjectTemplate@v8@@QEAAXH@Z=node.exe.?SetInternalFieldCount@ObjectTemplate@v8@@QEAAXH@Z + ?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VModule@v8@@@2@@Z=node.exe.?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VModule@v8@@@2@@Z + ?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VUnboundScript@v8@@@2@@Z=node.exe.?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VUnboundScript@v8@@@2@@Z + ?SetIntrinsicDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@W4Intrinsic@2@W4PropertyAttribute@2@@Z=node.exe.?SetIntrinsicDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@W4Intrinsic@2@W4PropertyAttribute@2@@Z + ?SetIsLoading@Isolate@v8@@QEAAX_N@Z=node.exe.?SetIsLoading@Isolate@v8@@QEAAX_N@Z + ?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@@Z=node.exe.?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@@Z + ?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@AEBUIsolateSettings@1@@Z=node.exe.?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@AEBUIsolateSettings@1@@Z + ?SetJavaScriptCompileHintsMagicEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z=node.exe.?SetJavaScriptCompileHintsMagicEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + ?SetJitCodeEventHandler@Isolate@v8@@QEAAXW4JitCodeEventOptions@2@P6AXPEBUJitCodeEvent@2@@Z@Z=node.exe.?SetJitCodeEventHandler@Isolate@v8@@QEAAXW4JitCodeEventOptions@2@P6AXPEBUJitCodeEvent@2@@Z@Z + ?SetKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAXV?$Local@VValue@v8@@@v8@@PEAVDictionaryValue@protocol@2@@Z=node.exe.?SetKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAXV?$Local@VValue@v8@@@v8@@PEAVDictionaryValue@protocol@2@@Z + ?SetLazyDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@6@Z=node.exe.?SetLazyDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@6@Z + ?SetLazyDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@5@Z=node.exe.?SetLazyDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@5@Z + ?SetLength@FunctionTemplate@v8@@QEAAXH@Z=node.exe.?SetLength@FunctionTemplate@v8@@QEAAXH@Z + ?SetMaxAsyncTaskStacksForTest@v8_inspector@@YAXPEAVV8Inspector@1@H@Z=node.exe.?SetMaxAsyncTaskStacksForTest@v8_inspector@@YAXPEAVV8Inspector@1@H@Z + ?SetMetricsRecorder@Isolate@v8@@QEAAXAEBV?$shared_ptr@VRecorder@metrics@v8@@@__Cr@std@@@Z=node.exe.?SetMetricsRecorder@Isolate@v8@@QEAAXAEBV?$shared_ptr@VRecorder@metrics@v8@@@__Cr@std@@@Z + ?SetMicrotaskQueue@Context@v8@@QEAAXPEAVMicrotaskQueue@2@@Z=node.exe.?SetMicrotaskQueue@Context@v8@@QEAAXPEAVMicrotaskQueue@2@@Z + ?SetMicrotasksPolicy@Isolate@v8@@QEAAXW4MicrotasksPolicy@2@@Z=node.exe.?SetMicrotasksPolicy@Isolate@v8@@QEAAXW4MicrotasksPolicy@2@@Z + ?SetModifyCodeGenerationFromStringsCallback@Isolate@v8@@QEAAXP6A?AUModifyCodeGenerationFromStringsResult@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@_N@Z@Z=node.exe.?SetModifyCodeGenerationFromStringsCallback@Isolate@v8@@QEAAXP6A?AUModifyCodeGenerationFromStringsResult@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@_N@Z@Z + ?SetMoreFunctionsCanBeSerializedCallback@WasmStreaming@v8@@QEAAXV?$function@$$A6AXVCompiledWasmModule@v8@@@Z@__Cr@std@@@Z=node.exe.?SetMoreFunctionsCanBeSerializedCallback@WasmStreaming@v8@@QEAAXV?$function@$$A6AXVCompiledWasmModule@v8@@@Z@__Cr@std@@@Z + ?SetName@Function@v8@@QEAAXV?$Local@VString@v8@@@2@@Z=node.exe.?SetName@Function@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + ?SetNativeDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z4W4PropertyAttribute@2@W4SideEffectType@2@8@Z=node.exe.?SetNativeDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z4W4PropertyAttribute@2@W4SideEffectType@2@8@Z + ?SetNativeDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4SideEffectType@2@7@Z=node.exe.?SetNativeDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4SideEffectType@2@7@Z + ?SetOOMErrorHandler@Isolate@v8@@QEAAXP6AXPEBDAEBUOOMDetails@2@@Z@Z=node.exe.?SetOOMErrorHandler@Isolate@v8@@QEAAXP6AXPEBDAEBUOOMDetails@2@@Z@Z + ?SetPrepareStackTraceCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VArray@v8@@@2@@Z@Z=node.exe.?SetPrepareStackTraceCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VArray@v8@@@2@@Z@Z + ?SetPriority@Isolate@v8@@QEAAXW4Priority@12@@Z=node.exe.?SetPriority@Isolate@v8@@QEAAXW4Priority@12@@Z + ?SetPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?SetPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?SetPrivate@Template@v8@@QEAAXV?$Local@VPrivate@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z=node.exe.?SetPrivate@Template@v8@@QEAAXV?$Local@VPrivate@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + ?SetProcessExitHandler@node@@YAXPEAVEnvironment@1@$$QEAV?$function@$$A6AXPEAVEnvironment@node@@H@Z@__Cr@std@@@Z=node.exe.?SetProcessExitHandler@node@@YAXPEAVEnvironment@1@$$QEAV?$function@$$A6AXPEAVEnvironment@node@@H@Z@__Cr@std@@@Z + ?SetPromiseHook@Isolate@v8@@QEAAXP6AXW4PromiseHookType@2@V?$Local@VPromise@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z=node.exe.?SetPromiseHook@Isolate@v8@@QEAAXP6AXW4PromiseHookType@2@V?$Local@VPromise@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z + ?SetPromiseHooks@Context@v8@@QEAAXV?$Local@VFunction@v8@@@2@000@Z=node.exe.?SetPromiseHooks@Context@v8@@QEAAXV?$Local@VFunction@v8@@@2@000@Z + ?SetPromiseRejectCallback@Isolate@v8@@QEAAXP6AXVPromiseRejectMessage@2@@Z@Z=node.exe.?SetPromiseRejectCallback@Isolate@v8@@QEAAXP6AXVPromiseRejectMessage@2@@Z@Z + ?SetPrototype@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?SetPrototype@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?SetPrototypeProviderTemplate@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z=node.exe.?SetPrototypeProviderTemplate@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z + ?SetPrototypeV2@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?SetPrototypeV2@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?SetRAILMode@Isolate@v8@@QEAAXW4RAILMode@2@@Z=node.exe.?SetRAILMode@Isolate@v8@@QEAAXW4RAILMode@2@@Z + ?SetReturnAddressLocationResolver@V8@v8@@SAXP6A_K_K@Z@Z=node.exe.?SetReturnAddressLocationResolver@V8@v8@@SAXP6A_K_K@Z@Z + ?SetSamplingInterval@CpuProfiler@v8@@QEAAXH@Z=node.exe.?SetSamplingInterval@CpuProfiler@v8@@QEAAXH@Z + ?SetSecurityToken@Context@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z=node.exe.?SetSecurityToken@Context@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + ?SetSharedArrayBufferConstructorEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z=node.exe.?SetSharedArrayBufferConstructorEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + ?SetSnapshotDataBlob@V8@v8@@SAXPEAVStartupData@2@@Z=node.exe.?SetSnapshotDataBlob@V8@v8@@SAXPEAVStartupData@2@@Z + ?SetStackLimit@Isolate@v8@@QEAAX_K@Z=node.exe.?SetStackLimit@Isolate@v8@@QEAAX_K@Z + ?SetSupportsLegacyWireFormat@ValueDeserializer@v8@@QEAAX_N@Z=node.exe.?SetSupportsLegacyWireFormat@ValueDeserializer@v8@@QEAAX_N@Z + ?SetSyntheticExport@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z=node.exe.?SetSyntheticExport@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + ?SetSyntheticModuleExport@Module@v8@@QEAA?AV?$Maybe@_N@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?SetSyntheticModuleExport@Module@v8@@QEAA?AV?$Maybe@_N@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?SetTracingController@node@@YAXPEAVTracingController@v8@@@Z=node.exe.?SetTracingController@node@@YAXPEAVTracingController@v8@@@Z + ?SetTreatArrayBufferViewsAsHostObjects@ValueSerializer@v8@@QEAAX_N@Z=node.exe.?SetTreatArrayBufferViewsAsHostObjects@ValueSerializer@v8@@QEAAX_N@Z + ?SetUnhandledExceptionCallback@V8@v8@@SAXP6AHPEAU_EXCEPTION_POINTERS@@@Z@Z=node.exe.?SetUnhandledExceptionCallback@V8@v8@@SAXP6AHPEAU_EXCEPTION_POINTERS@@@Z@Z + ?SetUrl@WasmStreaming@v8@@QEAAXPEBD_K@Z=node.exe.?SetUrl@WasmStreaming@v8@@QEAAXPEBD_K@Z + ?SetUseCounterCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4UseCounterFeature@12@@Z@Z=node.exe.?SetUseCounterCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4UseCounterFeature@12@@Z@Z + ?SetUsePreciseSampling@CpuProfiler@v8@@QEAAX_N@Z=node.exe.?SetUsePreciseSampling@CpuProfiler@v8@@QEAAX_N@Z + ?SetVerbose@TryCatch@v8@@QEAAX_N@Z=node.exe.?SetVerbose@TryCatch@v8@@QEAAX_N@Z + ?SetWasmAsyncResolvePromiseCallback@Isolate@v8@@QEAAXP6AXPEAV12@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@V?$Local@VValue@v8@@@2@W4WasmAsyncSuccess@2@@Z@Z=node.exe.?SetWasmAsyncResolvePromiseCallback@Isolate@v8@@QEAAXP6AXPEAV12@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@V?$Local@VValue@v8@@@2@W4WasmAsyncSuccess@2@@Z@Z + ?SetWasmImportedStringsEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z=node.exe.?SetWasmImportedStringsEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + ?SetWasmInstanceCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z=node.exe.?SetWasmInstanceCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + ?SetWasmJSPIEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z=node.exe.?SetWasmJSPIEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + ?SetWasmLoadSourceMapCallback@Isolate@v8@@QEAAXP6A?AV?$Local@VString@v8@@@2@PEAV12@PEBD@Z@Z=node.exe.?SetWasmLoadSourceMapCallback@Isolate@v8@@QEAAXP6A?AV?$Local@VString@v8@@@2@PEAV12@PEBD@Z@Z + ?SetWasmModuleCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z=node.exe.?SetWasmModuleCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + ?SetWasmStreamingCallback@Isolate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z=node.exe.?SetWasmStreamingCallback@Isolate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + ?ShouldAbortOnUncaughtException@node@@YA_NPEAVIsolate@v8@@@Z=node.exe.?ShouldAbortOnUncaughtException@node@@YA_NPEAVIsolate@v8@@@Z + ?ShouldMergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEBA_NXZ=node.exe.?ShouldMergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEBA_NXZ + ?ShouldThrowOnError@internal@v8@@YA_NPEAVIsolate@12@@Z=node.exe.?ShouldThrowOnError@internal@v8@@YA_NPEAVIsolate@12@@Z + ?Shrink@JitPageReference@ThreadIsolation@internal@v8@@QEAAXPEAVJitPage@234@@Z=node.exe.?Shrink@JitPageReference@ThreadIsolation@internal@v8@@QEAAXPEAVJitPage@234@@Z + ?ShutdownProcess@cppgc@@YAXXZ=node.exe.?ShutdownProcess@cppgc@@YAXXZ + ?Size@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ=node.exe.?Size@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + ?Size@Map@v8@@QEBA_KXZ=node.exe.?Size@Map@v8@@QEBA_KXZ + ?Size@Set@v8@@QEBA_KXZ=node.exe.?Size@Set@v8@@QEBA_KXZ + ?SlowGetAlignedPointerFromEmbedderData@Context@v8@@AEAAPEAXH@Z=node.exe.?SlowGetAlignedPointerFromEmbedderData@Context@v8@@AEAAPEAXH@Z + ?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXH@Z=node.exe.?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXH@Z + ?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXPEAVIsolate@2@H@Z=node.exe.?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXPEAVIsolate@2@H@Z + ?SlowGetEmbedderData@Context@v8@@AEAA?AV?$Local@VValue@v8@@@2@H@Z=node.exe.?SlowGetEmbedderData@Context@v8@@AEAA?AV?$Local@VValue@v8@@@2@H@Z + ?SlowGetInternalField@Object@v8@@AEAA?AV?$Local@VData@v8@@@2@H@Z=node.exe.?SlowGetInternalField@Object@v8@@AEAA?AV?$Local@VData@v8@@@2@H@Z + ?SourceMapUrl@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?SourceMapUrl@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?SourceOffsetToLocation@Module@v8@@QEBA?AVLocation@2@H@Z=node.exe.?SourceOffsetToLocation@Module@v8@@QEBA?AVLocation@2@H@Z + ?SourceTextAvailable@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXPEAVIsolate@3@V?$Local@VString@v8@@@3@AEBVScriptOrigin@3@@Z=node.exe.?SourceTextAvailable@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXPEAVIsolate@3@V?$Local@VString@v8@@@3@AEBVScriptOrigin@3@@Z + ?SpinEventLoop@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z=node.exe.?SpinEventLoop@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z + ?SplitJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z=node.exe.?SplitJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + ?SplitJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z=node.exe.?SplitJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + ?SplitJitPages@ThreadIsolation@internal@v8@@CA?AU?$pair@VJitPageReference@ThreadIsolation@internal@v8@@V1234@@__Cr@std@@_K000@Z=node.exe.?SplitJitPages@ThreadIsolation@internal@v8@@CA?AU?$pair@VJitPageReference@ThreadIsolation@internal@v8@@V1234@@__Cr@std@@_K000@Z + ?StackTrace@TryCatch@v8@@QEBA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?StackTrace@TryCatch@v8@@QEBA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?StackTrace@TryCatch@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?StackTrace@TryCatch@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z=node.exe.?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z + ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@_N@Z=node.exe.?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@_N@Z + ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + ?Start@node@@YAHHQEAPEAD@Z=node.exe.?Start@node@@YAHHQEAPEAD@Z + ?StartConsumingCodeCache@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?StartConsumingCodeCache@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z + ?StartConsumingCodeCacheOnBackground@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?StartConsumingCodeCacheOnBackground@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z + ?StartGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ=node.exe.?StartGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ + ?StartOfAllocationAt@JitPageReference@ThreadIsolation@internal@v8@@QEAA_K_K@Z=node.exe.?StartOfAllocationAt@JitPageReference@ThreadIsolation@internal@v8@@QEAA_K_K@Z + ?StartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA?AV?$optional@_K@__Cr@std@@_K@Z=node.exe.?StartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA?AV?$optional@_K@__Cr@std@@_K@Z + ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z=node.exe.?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z=node.exe.?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z + ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@_N@Z=node.exe.?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@_N@Z + ?StartSamplingHeapProfiler@HeapProfiler@v8@@QEAA_N_KHW4SamplingFlags@12@@Z=node.exe.?StartSamplingHeapProfiler@HeapProfiler@v8@@QEAA_N_KHW4SamplingFlags@12@@Z + ?StartStreaming@ScriptCompiler@v8@@SAPEAVScriptStreamingTask@12@PEAVIsolate@2@PEAVStreamedSource@12@W4ScriptType@2@W4CompileOptions@12@P6A_NHPEAX@Z4@Z=node.exe.?StartStreaming@ScriptCompiler@v8@@SAPEAVScriptStreamingTask@12@PEAVIsolate@2@PEAVStreamedSource@12@W4ScriptType@2@W4CompileOptions@12@P6A_NHPEAX@Z4@Z + ?StartTrackingHeapObjects@HeapProfiler@v8@@QEAAX_N@Z=node.exe.?StartTrackingHeapObjects@HeapProfiler@v8@@QEAAX_N@Z + ?State@Promise@v8@@QEAA?AW4PromiseState@12@XZ=node.exe.?State@Promise@v8@@QEAA?AW4PromiseState@12@XZ + ?SteeleMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z=node.exe.?SteeleMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z + ?SteeleMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z=node.exe.?SteeleMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z + ?SteeleMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z=node.exe.?SteeleMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z + ?Step@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?Step@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?Stop@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@I@Z=node.exe.?Stop@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@I@Z + ?Stop@node@@YAHPEAVEnvironment@1@W4Flags@StopFlags@1@@Z=node.exe.?Stop@node@@YAHPEAVEnvironment@1@W4Flags@StopFlags@1@@Z + ?StopProfiling@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@V?$Local@VString@v8@@@2@@Z=node.exe.?StopProfiling@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@V?$Local@VString@v8@@@2@@Z + ?StopSamplingHeapProfiler@HeapProfiler@v8@@QEAAXXZ=node.exe.?StopSamplingHeapProfiler@HeapProfiler@v8@@QEAAXXZ + ?StopTrackingHeapObjects@HeapProfiler@v8@@QEAAXXZ=node.exe.?StopTrackingHeapObjects@HeapProfiler@v8@@QEAAXXZ + ?StrictEquals@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z=node.exe.?StrictEquals@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + ?StringEquals@String@v8@@QEBA_NV?$Local@VString@v8@@@2@@Z=node.exe.?StringEquals@String@v8@@QEBA_NV?$Local@VString@v8@@@2@@Z + ?Stringify@JSON@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z=node.exe.?Stringify@JSON@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z + ?SupportsCppClassNamesAsObjectNames@NameProvider@cppgc@@SA_NXZ=node.exe.?SupportsCppClassNamesAsObjectNames@NameProvider@cppgc@@SA_NXZ + ?SyntaxError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?SyntaxError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?SyntheticModuleEvaluationStepsCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VModule@v8@@@5@@Z=node.exe.?SyntheticModuleEvaluationStepsCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VModule@v8@@@5@@Z + ?SystemClockTimeMillis@Platform@v8@@KANXZ=node.exe.?SystemClockTimeMillis@Platform@v8@@KANXZ + ?TableSlotForTesting@GCInfoTable@internal@cppgc@@QEAAAEAUGCInfo@23@G@Z=node.exe.?TableSlotForTesting@GCInfoTable@internal@cppgc@@QEAAAEAUGCInfo@23@G@Z + ?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@AEBUHeapSnapshotOptions@12@@Z=node.exe.?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@AEBUHeapSnapshotOptions@12@@Z + ?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@PEAVActivityControl@2@PEAVObjectNameResolver@12@_N2@Z=node.exe.?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@PEAVActivityControl@2@PEAVObjectNameResolver@12@_N2@Z + ?TearDownOncePerProcess@node@@YAXXZ=node.exe.?TearDownOncePerProcess@node@@YAXXZ + ?Terminate@CppHeap@v8@@QEAAXXZ=node.exe.?Terminate@CppHeap@v8@@QEAAXXZ + ?TerminateExecution@Isolate@v8@@QEAAXXZ=node.exe.?TerminateExecution@Isolate@v8@@QEAAXXZ + ?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@1@Z=node.exe.?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@1@Z + ?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z=node.exe.?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z + ?ThrowError@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z=node.exe.?ThrowError@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z + ?ThrowException@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V32@@Z=node.exe.?ThrowException@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V32@@Z + ?ToArrayIndex@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToArrayIndex@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToBigInt@Value@v8@@QEBA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToBigInt@Value@v8@@QEBA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToBoolean@Value@v8@@QEBA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@@Z=node.exe.?ToBoolean@Value@v8@@QEBA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@@Z + ?ToDetailString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToDetailString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToISOString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?ToISOString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?ToInt32@Value@v8@@QEBA?AV?$MaybeLocal@VInt32@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToInt32@Value@v8@@QEBA?AV?$MaybeLocal@VInt32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToInteger@Value@v8@@QEBA?AV?$MaybeLocal@VInteger@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToInteger@Value@v8@@QEBA?AV?$MaybeLocal@VInteger@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToLocalEmpty@api_internal@v8@@YAXXZ=node.exe.?ToLocalEmpty@api_internal@v8@@YAXXZ + ?ToNumber@Value@v8@@QEBA?AV?$MaybeLocal@VNumber@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToNumber@Value@v8@@QEBA?AV?$MaybeLocal@VNumber@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToNumeric@Value@v8@@QEBA?AV?$MaybeLocal@VNumeric@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToNumeric@Value@v8@@QEBA?AV?$MaybeLocal@VNumeric@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToObject@Value@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToObject@Value@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToPrimitive@Value@v8@@QEBA?AV?$MaybeLocal@VPrimitive@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToPrimitive@Value@v8@@QEBA?AV?$MaybeLocal@VPrimitive@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToString@SourceLocation@v8@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ=node.exe.?ToString@SourceLocation@v8@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + ?ToString@V8StackTraceId@v8_inspector@@QEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ=node.exe.?ToString@V8StackTraceId@v8_inspector@@QEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ + ?ToString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToUTCString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?ToUTCString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?ToUint32@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?ToUint32@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + ?ToWordsArray@BigInt@v8@@QEBAXPEAH0PEA_K@Z=node.exe.?ToWordsArray@BigInt@v8@@QEBAXPEAH0PEA_K@Z + ?ToggleMainThreadMarking@StandaloneTestingHeap@testing@cppgc@@QEAAX_N@Z=node.exe.?ToggleMainThreadMarking@StandaloneTestingHeap@testing@cppgc@@QEAAX_N@Z + ?TotalAllocatedObjectSize@ProcessHeapStatistics@cppgc@@SA_KXZ=node.exe.?TotalAllocatedObjectSize@ProcessHeapStatistics@cppgc@@SA_KXZ + ?TotalAllocatedSpace@ProcessHeapStatistics@cppgc@@SA_KXZ=node.exe.?TotalAllocatedSpace@ProcessHeapStatistics@cppgc@@SA_KXZ + ?TransferArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z=node.exe.?TransferArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z + ?TransferArrayBuffer@ValueSerializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z=node.exe.?TransferArrayBuffer@ValueSerializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z + ?TransferSharedArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VSharedArrayBuffer@v8@@@2@@Z=node.exe.?TransferSharedArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VSharedArrayBuffer@v8@@@2@@Z + ?TransitionDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@@Z=node.exe.?TransitionDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@@Z + ?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVEnvironment@1@PEBD1AEBV234@V?$Local@VValue@v8@@@v8@@@Z=node.exe.?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVEnvironment@1@PEBD1AEBV234@V?$Local@VValue@v8@@@v8@@@Z + ?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVIsolate@v8@@PEBD1AEBV234@V?$Local@VValue@v8@@@6@@Z=node.exe.?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVIsolate@v8@@PEBD1AEBV234@V?$Local@VValue@v8@@@6@@Z + ?TryAllocateNodeFromFreeList@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z=node.exe.?TryAllocateNodeFromFreeList@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + ?TryGetCurrent@Isolate@v8@@SAPEAV12@XZ=node.exe.?TryGetCurrent@Isolate@v8@@SAPEAV12@XZ + ?TryHandleWebAssemblyTrapWindows@v8@@YA_NPEAU_EXCEPTION_POINTERS@@@Z=node.exe.?TryHandleWebAssemblyTrapWindows@v8@@YA_NPEAU_EXCEPTION_POINTERS@@@Z + ?TryLookupJitPage@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z=node.exe.?TryLookupJitPage@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z + ?TryLookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z=node.exe.?TryLookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z + ?TryResetRoot@EmbedderRootsHandler@v8@@UEAA_NAEBV?$TracedReference@VValue@v8@@@2@@Z=node.exe.?TryResetRoot@EmbedderRootsHandler@v8@@UEAA_NAEBV?$TracedReference@VValue@v8@@@2@@Z + ?TryUnwindV8Frames@Unwinder@v8@@SA_NAEBUJSEntryStubs@2@_KPEBUMemoryRange@2@PEAURegisterState@2@PEBX@Z=node.exe.?TryUnwindV8Frames@Unwinder@v8@@SA_NAEBUJSEntryStubs@2@_KPEBUMemoryRange@2@PEAURegisterState@2@PEBX@Z + ?TypeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?TypeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?TypeOf@Value@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z=node.exe.?TypeOf@Value@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + ?UVException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD111@Z=node.exe.?UVException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD111@Z + ?Uint32Value@Value@v8@@QEBA?AV?$Maybe@I@2@V?$Local@VContext@v8@@@2@@Z=node.exe.?Uint32Value@Value@v8@@QEBA?AV?$Maybe@I@2@V?$Local@VContext@v8@@@2@@Z + ?Uint64Value@BigInt@v8@@QEBA_KPEA_N@Z=node.exe.?Uint64Value@BigInt@v8@@QEBA_KPEA_N@Z + ?Unaccount@ExternalStringResourceBase@String@v8@@UEAAXPEAVIsolate@3@@Z=node.exe.?Unaccount@ExternalStringResourceBase@String@v8@@UEAAXPEAVIsolate@3@@Z + ?Unlock@ExternalStringResourceBase@String@v8@@MEBAXXZ=node.exe.?Unlock@ExternalStringResourceBase@String@v8@@MEBAXXZ + ?Unpack@WasmStreaming@v8@@SA?AV?$shared_ptr@VWasmStreaming@v8@@@__Cr@std@@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?Unpack@WasmStreaming@v8@@SA?AV?$shared_ptr@VWasmStreaming@v8@@@__Cr@std@@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + ?UnregisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z=node.exe.?UnregisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z + ?UnregisterAllocationsExcept@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0AEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@@Z=node.exe.?UnregisterAllocationsExcept@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0AEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@@Z + ?UnregisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z=node.exe.?UnregisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z + ?UnregisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z=node.exe.?UnregisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z + ?UnregisterRange@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0@Z=node.exe.?UnregisterRange@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0@Z + ?UnregisterWasmAllocation@ThreadIsolation@internal@v8@@SAX_K0@Z=node.exe.?UnregisterWasmAllocation@ThreadIsolation@internal@v8@@SAX_K0@Z + ?Unwrap@Object@v8@@CAPEAXPEAVIsolate@2@_KUCppHeapPointerTagRange@2@@Z=node.exe.?Unwrap@Object@v8@@CAPEAXPEAVIsolate@2@_KUCppHeapPointerTagRange@2@@Z + ?Update@TypecheckWitness@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z=node.exe.?Update@TypecheckWitness@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + ?UpdateDataCache@ExternalOneByteStringResource@String@v8@@QEAAXXZ=node.exe.?UpdateDataCache@ExternalOneByteStringResource@String@v8@@QEAAXXZ + ?UpdateDataCache@ExternalStringResource@String@v8@@QEAAXXZ=node.exe.?UpdateDataCache@ExternalStringResource@String@v8@@QEAAXXZ + ?UpdateLoadStartTime@Isolate@v8@@QEAAXXZ=node.exe.?UpdateLoadStartTime@Isolate@v8@@QEAAXXZ + ?UseDefaultSecurityToken@Context@v8@@QEAAXXZ=node.exe.?UseDefaultSecurityToken@Context@v8@@QEAAXXZ + ?UseDetailedSourcePositionsForProfiling@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z=node.exe.?UseDetailedSourcePositionsForProfiling@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z + ?Utf8Length@String@v8@@QEBAHPEAVIsolate@2@@Z=node.exe.?Utf8Length@String@v8@@QEBAHPEAVIsolate@2@@Z + ?V8Node@EmbedderGraph@v8@@UEAAPEAVNode@12@AEBV?$Local@VData@v8@@@2@@Z=node.exe.?V8Node@EmbedderGraph@v8@@UEAAPEAVNode@12@AEBV?$Local@VData@v8@@@2@@Z + ?ValidateIndex@FastApiTypedArrayBase@v8@@QEBAX_K@Z=node.exe.?ValidateIndex@FastApiTypedArrayBase@v8@@QEBAX_K@Z + ?Value@Boolean@v8@@QEBA_NXZ=node.exe.?Value@Boolean@v8@@QEBA_NXZ + ?Value@External@v8@@QEBAPEAXXZ=node.exe.?Value@External@v8@@QEBAPEAXXZ + ?Value@Int32@v8@@QEBAHXZ=node.exe.?Value@Int32@v8@@QEBAHXZ + ?Value@Integer@v8@@QEBA_JXZ=node.exe.?Value@Integer@v8@@QEBA_JXZ + ?Value@Number@v8@@QEBANXZ=node.exe.?Value@Number@v8@@QEBANXZ + ?Value@Uint32@v8@@QEBAIXZ=node.exe.?Value@Uint32@v8@@QEBAIXZ + ?ValueOf@BigIntObject@v8@@QEBA?AV?$Local@VBigInt@v8@@@2@XZ=node.exe.?ValueOf@BigIntObject@v8@@QEBA?AV?$Local@VBigInt@v8@@@2@XZ + ?ValueOf@BooleanObject@v8@@QEBA_NXZ=node.exe.?ValueOf@BooleanObject@v8@@QEBA_NXZ + ?ValueOf@Date@v8@@QEBANXZ=node.exe.?ValueOf@Date@v8@@QEBANXZ + ?ValueOf@NumberObject@v8@@QEBANXZ=node.exe.?ValueOf@NumberObject@v8@@QEBANXZ + ?ValueOf@StringObject@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ=node.exe.?ValueOf@StringObject@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + ?ValueOf@SymbolObject@v8@@QEBA?AV?$Local@VSymbol@v8@@@2@XZ=node.exe.?ValueOf@SymbolObject@v8@@QEBA?AV?$Local@VSymbol@v8@@@2@XZ + ?VerifyExternalStringResource@String@v8@@AEBAXPEAVExternalStringResource@12@@Z=node.exe.?VerifyExternalStringResource@String@v8@@AEBAXPEAVExternalStringResource@12@@Z + ?VerifyExternalStringResourceBase@String@v8@@AEBAXPEAVExternalStringResourceBase@12@W4Encoding@12@@Z=node.exe.?VerifyExternalStringResourceBase@String@v8@@AEBAXPEAVExternalStringResourceBase@12@W4Encoding@12@@Z + ?VerifyHandleIsNonEmpty@internal@v8@@YAX_N@Z=node.exe.?VerifyHandleIsNonEmpty@internal@v8@@YAX_N@Z + ?VerifyHostDefinedOptions@ScriptOrigin@v8@@AEBAXXZ=node.exe.?VerifyHostDefinedOptions@ScriptOrigin@v8@@AEBAXXZ + ?VerifyOnStack@?$StackAllocated@$00@api_internal@v8@@IEBAXXZ=node.exe.?VerifyOnStack@?$StackAllocated@$00@api_internal@v8@@IEBAXXZ + ?Visit@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@@Z=node.exe.?Visit@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@@Z + ?VisitEphemeron@Visitor@cppgc@@MEAAXPEBX0UTraceDescriptor@2@@Z=node.exe.?VisitEphemeron@Visitor@cppgc@@MEAAXPEBX0UTraceDescriptor@2@@Z + ?VisitExternalResources@Isolate@v8@@QEAAXPEAVExternalResourceVisitor@2@@Z=node.exe.?VisitExternalResources@Isolate@v8@@QEAAXPEAVExternalResourceVisitor@2@@Z + ?VisitExternalString@ExternalResourceVisitor@v8@@UEAAXV?$Local@VString@v8@@@2@@Z=node.exe.?VisitExternalString@ExternalResourceVisitor@v8@@UEAAXV?$Local@VString@v8@@@2@@Z + ?VisitMultipleCompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z=node.exe.?VisitMultipleCompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z + ?VisitMultipleUncompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z=node.exe.?VisitMultipleUncompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z + ?VisitPersistentHandle@PersistentHandleVisitor@v8@@UEAAXPEAV?$Persistent@VValue@v8@@V?$NonCopyablePersistentTraits@VValue@v8@@@2@@2@G@Z=node.exe.?VisitPersistentHandle@PersistentHandleVisitor@v8@@UEAAXPEAV?$Persistent@VValue@v8@@V?$NonCopyablePersistentTraits@VValue@v8@@@2@@2@G@Z + ?VisitRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@AEBVSourceLocation@v8@@@Z=node.exe.?VisitRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@AEBVSourceLocation@v8@@@Z + ?VisitWeak@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@P6AXAEBVLivenessBroker@2@0@Z0@Z=node.exe.?VisitWeak@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@P6AXAEBVLivenessBroker@2@0@Z0@Z + ?VisitWeakContainer@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@1P6AXAEBVLivenessBroker@2@0@Z0@Z=node.exe.?VisitWeakContainer@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@1P6AXAEBVLivenessBroker@2@0@Z0@Z + ?VisitWeakRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@P6AXAEBVLivenessBroker@3@0@Z0AEBVSourceLocation@v8@@@Z=node.exe.?VisitWeakRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@P6AXAEBVLivenessBroker@3@0@Z0AEBVSourceLocation@v8@@@Z + ?Wake@AtomicsWaitWakeHandle@Isolate@v8@@QEAAXXZ=node.exe.?Wake@AtomicsWaitWakeHandle@Isolate@v8@@QEAAXXZ + ?WasDetached@ArrayBuffer@v8@@QEBA_NXZ=node.exe.?WasDetached@ArrayBuffer@v8@@QEBA_NXZ + ?WasmCompileError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?WasmCompileError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?WasmLinkError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?WasmLinkError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?WasmRuntimeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z=node.exe.?WasmRuntimeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + ?WinapiErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z=node.exe.?WinapiErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z + ?WordCount@BigInt@v8@@QEBAHXZ=node.exe.?WordCount@BigInt@v8@@QEBAHXZ + ?Wrap@Object@v8@@CAXPEAVIsolate@2@_KW4CppHeapPointerTag@2@PEAX@Z=node.exe.?Wrap@Object@v8@@CAXPEAVIsolate@2@_KW4CppHeapPointerTag@2@PEAX@Z + ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$BasicTracedReference@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z=node.exe.?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$BasicTracedReference@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$Local@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z=node.exe.?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$Local@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z=node.exe.?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + ?Write@String@v8@@QEBAHPEAVIsolate@2@PEAGHHH@Z=node.exe.?Write@String@v8@@QEBAHPEAVIsolate@2@PEAGHHH@Z + ?WriteDouble@ValueSerializer@v8@@QEAAXN@Z=node.exe.?WriteDouble@ValueSerializer@v8@@QEAAXN@Z + ?WriteHeader@ValueSerializer@v8@@QEAAXXZ=node.exe.?WriteHeader@ValueSerializer@v8@@QEAAXXZ + ?WriteHeapStatsChunk@OutputStream@v8@@UEAA?AW4WriteResult@12@PEAUHeapStatsUpdate@2@H@Z=node.exe.?WriteHeapStatsChunk@OutputStream@v8@@UEAA?AW4WriteResult@12@PEAUHeapStatsUpdate@2@H@Z + ?WriteHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z=node.exe.?WriteHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z + ?WriteOneByte@String@v8@@QEBAHPEAVIsolate@2@PEAEHHH@Z=node.exe.?WriteOneByte@String@v8@@QEBAHPEAVIsolate@2@PEAEHHH@Z + ?WriteProtectMemory@ThreadIsolation@internal@v8@@SA_N_K0W4Permission@PageAllocator@3@@Z=node.exe.?WriteProtectMemory@ThreadIsolation@internal@v8@@SA_N_K0W4Permission@PageAllocator@3@@Z + ?WriteRawBytes@ValueSerializer@v8@@QEAAXPEBX_K@Z=node.exe.?WriteRawBytes@ValueSerializer@v8@@QEAAXPEBX_K@Z + ?WriteUint32@ValueSerializer@v8@@QEAAXI@Z=node.exe.?WriteUint32@ValueSerializer@v8@@QEAAXI@Z + ?WriteUint64@ValueSerializer@v8@@QEAAX_K@Z=node.exe.?WriteUint64@ValueSerializer@v8@@QEAAX_K@Z + ?WriteUtf8@String@v8@@QEBAHPEAVIsolate@2@PEADHPEAHH@Z=node.exe.?WriteUtf8@String@v8@@QEBAHPEAVIsolate@2@PEADHPEAHH@Z + ?WriteValue@ValueSerializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z=node.exe.?WriteValue@ValueSerializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + ?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB=node.exe.?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + ?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + ?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + ?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + ?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + ?__annotate_contiguous_container@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z=node.exe.?__annotate_contiguous_container@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z + ?__annotate_contiguous_container@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z=node.exe.?__annotate_contiguous_container@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z + ?__annotate_delete@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ=node.exe.?__annotate_delete@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + ?__annotate_delete@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ=node.exe.?__annotate_delete@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + ?__annotate_increase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z=node.exe.?__annotate_increase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + ?__annotate_increase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z=node.exe.?__annotate_increase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + ?__annotate_new@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z=node.exe.?__annotate_new@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + ?__annotate_new@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z=node.exe.?__annotate_new@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + ?__annotate_shrink@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z=node.exe.?__annotate_shrink@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + ?__annotate_shrink@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z=node.exe.?__annotate_shrink@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + ?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z=node.exe.?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + ?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + ?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z=node.exe.?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + ?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + ?__base_destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z=node.exe.?__base_destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z + ?__base_destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z=node.exe.?__base_destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z + ?__clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ=node.exe.?__clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + ?__clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ=node.exe.?__clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + ?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z=node.exe.?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + ?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + ?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z=node.exe.?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + ?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z=node.exe.?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z + ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z=node.exe.?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z + ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z=node.exe.?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z + ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z=node.exe.?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z + ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z=node.exe.?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z + ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z=node.exe.?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z + ?__destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z=node.exe.?__destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z + ?__destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z=node.exe.?__destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z + ?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptFrame@v8@@XZ=node.exe.?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptFrame@v8@@XZ + ?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptFrame@v8@@XZ=node.exe.?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptFrame@v8@@XZ + ?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptInfo@v8@@XZ=node.exe.?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptInfo@v8@@XZ + ?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptInfo@v8@@XZ=node.exe.?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptInfo@v8@@XZ + ?__invariants@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ=node.exe.?__invariants@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + ?__invariants@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ=node.exe.?__invariants@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + ?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@PEAUCpuProfileDeoptFrame@v8@@@Z=node.exe.?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@PEAUCpuProfileDeoptFrame@v8@@@Z + ?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@PEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@PEBUCpuProfileDeoptFrame@v8@@@Z + ?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@PEAUCpuProfileDeoptInfo@v8@@@Z=node.exe.?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@PEAUCpuProfileDeoptInfo@v8@@@Z + ?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@PEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@PEBUCpuProfileDeoptInfo@v8@@@Z + ?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z=node.exe.?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + ?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z=node.exe.?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + ?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z=node.exe.?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + ?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z=node.exe.?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z=node.exe.?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z + ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z=node.exe.?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z=node.exe.?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z=node.exe.?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z + ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z=node.exe.?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z=node.exe.?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + ?__move_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@00@Z=node.exe.?__move_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@00@Z + ?__move_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@00@Z=node.exe.?__move_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@00@Z + ?__recommend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z=node.exe.?__recommend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z + ?__recommend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z=node.exe.?__recommend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z + ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptFrame@v8@@AEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@PEAU45@@Z=node.exe.?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptFrame@v8@@AEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@PEAU45@@Z + ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@@Z=node.exe.?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@@Z + ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptInfo@v8@@AEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@PEAU45@@Z=node.exe.?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptInfo@v8@@AEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@PEAU45@@Z + ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@@Z=node.exe.?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@@Z + ?__throw_length_error@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ=node.exe.?__throw_length_error@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + ?__throw_length_error@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ=node.exe.?__throw_length_error@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + ?__throw_out_of_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ=node.exe.?__throw_out_of_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + ?__throw_out_of_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ=node.exe.?__throw_out_of_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + ?__vallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z=node.exe.?__vallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + ?__vallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z=node.exe.?__vallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + ?__vdeallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ=node.exe.?__vdeallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + ?__vdeallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ=node.exe.?__vdeallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + ?allocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAPEA_K_K@Z=node.exe.?allocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAPEA_K_K@Z + ?allocator@GCInfoTable@internal@cppgc@@QEBAAEAVPageAllocator@v8@@XZ=node.exe.?allocator@GCInfoTable@internal@cppgc@@QEBAAEAVPageAllocator@v8@@XZ + ?allocator@ThreadIsolation@internal@v8@@CAPEAVThreadIsolatedAllocator@3@XZ=node.exe.?allocator@ThreadIsolation@internal@v8@@CAPEAVThreadIsolatedAllocator@3@XZ + ?array_buffer_allocator@CommonEnvironmentSetup@node@@QEBA?AV?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@XZ=node.exe.?array_buffer_allocator@CommonEnvironmentSetup@node@@QEBA?AV?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@XZ + ?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z=node.exe.?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z + ?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + ?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z=node.exe.?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z + ?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + ?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z=node.exe.?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z + ?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z=node.exe.?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z + ?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z=node.exe.?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z + ?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z=node.exe.?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z + ?auto_enable@Extension@v8@@QEAA_NXZ=node.exe.?auto_enable@Extension@v8@@QEAA_NXZ + ?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ=node.exe.?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ + ?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ=node.exe.?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ + ?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ=node.exe.?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ + ?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ=node.exe.?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ + ?begin@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ=node.exe.?begin@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ + ?begin@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?begin@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + ?begin@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?begin@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ + ?begin@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?begin@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ + ?begin@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?begin@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + ?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ + ?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + ?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ + ?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + ?begin@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ=node.exe.?begin@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ + ?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?beginUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ=node.exe.?beginUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ + ?build_@Version@internal@v8@@0HA=node.exe.?build_@Version@internal@v8@@0HA + ?bytecode_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ=node.exe.?bytecode_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + ?cached_data@ExternalOneByteStringResource@String@v8@@QEBAPEBDXZ=node.exe.?cached_data@ExternalOneByteStringResource@String@v8@@QEBAPEBDXZ + ?cached_data@ExternalStringResource@String@v8@@QEBAPEBGXZ=node.exe.?cached_data@ExternalStringResource@String@v8@@QEBAPEBGXZ + ?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NVStringView@2@@Z=node.exe.?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NVStringView@2@@Z + ?canExecuteScripts@V8InspectorClient@v8_inspector@@UEAA_NH@Z=node.exe.?canExecuteScripts@V8InspectorClient@v8_inspector@@UEAA_NH@Z + ?cancelTimer@V8InspectorClient@v8_inspector@@UEAAXPEAX@Z=node.exe.?cancelTimer@V8InspectorClient@v8_inspector@@UEAAXPEAX@Z + ?candidate_@Version@internal@v8@@0_NA=node.exe.?candidate_@Version@internal@v8@@0_NA + ?capacity@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ=node.exe.?capacity@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + ?capacity@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ=node.exe.?capacity@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + ?card@AgeTable@internal@cppgc@@AEBA_K_K@Z=node.exe.?card@AgeTable@internal@cppgc@@AEBA_K_K@Z + ?cbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?cbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + ?cbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?cbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + ?cend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?cend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + ?cend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?cend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + ?characters16@StringView@v8_inspector@@QEBAPEBGXZ=node.exe.?characters16@StringView@v8_inspector@@QEBAPEBGXZ + ?characters8@StringView@v8_inspector@@QEBAPEBEXZ=node.exe.?characters8@StringView@v8_inspector@@QEBAPEBEXZ + ?clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ=node.exe.?clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + ?clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ=node.exe.?clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + ?code_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ=node.exe.?code_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + ?code_range_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ=node.exe.?code_range_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + ?compilation_details@StreamedSource@ScriptCompiler@v8@@QEAAAEAUCompilationDetails@23@XZ=node.exe.?compilation_details@StreamedSource@ScriptCompiler@v8@@QEAAAEAUCompilationDetails@23@XZ + ?configurable@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?configurable@PropertyDescriptor@v8@@QEBA_NXZ + ?connect@V8Inspector@v8_inspector@@UEAA?AV?$unique_ptr@VV8InspectorSession@v8_inspector@@U?$default_delete@VV8InspectorSession@v8_inspector@@@__Cr@std@@@__Cr@std@@HPEAVChannel@12@VStringView@2@W4ClientTrustLevel@12@W4SessionPauseState@12@@Z=node.exe.?connect@V8Inspector@v8_inspector@@UEAA?AV?$unique_ptr@VV8InspectorSession@v8_inspector@@U?$default_delete@VV8InspectorSession@v8_inspector@@@__Cr@std@@@__Cr@std@@HPEAVChannel@12@VStringView@2@W4ClientTrustLevel@12@W4SessionPauseState@12@@Z + ?consoleAPIMessage@V8InspectorClient@v8_inspector@@UEAAXHW4MessageErrorLevel@Isolate@v8@@AEBVStringView@2@1IIPEAVV8StackTrace@2@@Z=node.exe.?consoleAPIMessage@V8InspectorClient@v8_inspector@@UEAAXHW4MessageErrorLevel@Isolate@v8@@AEBVStringView@2@1IIPEAVV8StackTrace@2@@Z + ?consoleClear@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?consoleClear@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?consoleTime@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z=node.exe.?consoleTime@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + ?consoleTimeEnd@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z=node.exe.?consoleTimeEnd@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + ?consoleTimeStamp@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z=node.exe.?consoleTimeStamp@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + ?context@CommonEnvironmentSetup@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ=node.exe.?context@CommonEnvironmentSetup@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ + ?context@ModuleWrap@loader@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ=node.exe.?context@ModuleWrap@loader@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ + ?cpu_profiler_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ=node.exe.?cpu_profiler_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + ?crbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ=node.exe.?crbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + ?crbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ=node.exe.?crbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + ?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@VStringView@2@@Z=node.exe.?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@VStringView@2@@Z + ?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@__Cr@std@@@__Cr@std@@PEAVIsolate@v8@@PEAVV8InspectorClient@2@@Z=node.exe.?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@__Cr@std@@@__Cr@std@@PEAVIsolate@v8@@PEAVV8InspectorClient@2@@Z + ?crend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ=node.exe.?crend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + ?crend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ=node.exe.?crend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + ?currentTimeMS@V8InspectorClient@v8_inspector@@UEAANXZ=node.exe.?currentTimeMS@V8InspectorClient@v8_inspector@@UEAANXZ + ?data16@ValueView@String@v8@@QEBAPEBGXZ=node.exe.?data16@ValueView@String@v8@@QEBAPEBGXZ + ?data8@ValueView@String@v8@@QEBAPEBEXZ=node.exe.?data8@ValueView@String@v8@@QEBAPEBEXZ + ?data@?$MemorySpan@$$CBD@v8@@QEBAPEBDXZ=node.exe.?data@?$MemorySpan@$$CBD@v8@@QEBAPEBDXZ + ?data@?$MemorySpan@$$CBE@v8@@QEBAPEBEXZ=node.exe.?data@?$MemorySpan@$$CBE@v8@@QEBAPEBEXZ + ?data@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBAPEBVCFunction@2@XZ=node.exe.?data@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBAPEBVCFunction@2@XZ + ?data@?$MemorySpan@E@v8@@QEBAPEAEXZ=node.exe.?data@?$MemorySpan@E@v8@@QEBAPEAEXZ + ?data@?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEBAPEAV?$Handle@VObject@internal@v8@@@internal@2@XZ=node.exe.?data@?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEBAPEAV?$Handle@VObject@internal@v8@@@internal@2@XZ + ?data@?$MemorySpan@_K@v8@@QEBAPEA_KXZ=node.exe.?data@?$MemorySpan@_K@v8@@QEBAPEA_KXZ + ?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptFrame@v8@@XZ=node.exe.?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptFrame@v8@@XZ + ?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptFrame@v8@@XZ=node.exe.?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptFrame@v8@@XZ + ?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptInfo@v8@@XZ=node.exe.?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptInfo@v8@@XZ + ?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptInfo@v8@@XZ=node.exe.?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptInfo@v8@@XZ + ?data@Binary@protocol@v8_inspector@@QEBAPEBEXZ=node.exe.?data@Binary@protocol@v8_inspector@@QEBAPEBEXZ + ?deallocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAXPEA_K_K@Z=node.exe.?deallocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAXPEA_K_K@Z + ?deepSerialize@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@UDeepSerializationResult@v8_inspector@@U?$default_delete@UDeepSerializationResult@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@HV?$Local@VObject@v8@@@7@@Z=node.exe.?deepSerialize@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@UDeepSerializationResult@v8_inspector@@U?$default_delete@UDeepSerializationResult@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@HV?$Local@VObject@v8@@@7@@Z + ?dependencies@Extension@v8@@QEBAPEAPEBDXZ=node.exe.?dependencies@Extension@v8@@QEBAPEAPEBDXZ + ?dependency_count@Extension@v8@@QEBAHXZ=node.exe.?dependency_count@Extension@v8@@QEBAHXZ + ?descriptionForValueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VContext@v8@@@v8@@V?$Local@VValue@v8@@@7@@Z=node.exe.?descriptionForValueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VContext@v8@@@v8@@V?$Local@VValue@v8@@@7@@Z + ?dispatchError@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VMessage@v8@@@4@V?$Local@VValue@v8@@@4@@Z=node.exe.?dispatchError@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VMessage@v8@@@4@V?$Local@VValue@v8@@@4@@Z + ?does_zap_garbage@HeapStatistics@v8@@QEAA_KXZ=node.exe.?does_zap_garbage@HeapStatistics@v8@@QEAA_KXZ + ?embedder_@Version@internal@v8@@0PEBDEB=node.exe.?embedder_@Version@internal@v8@@0PEBDEB + ?empty@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_NXZ=node.exe.?empty@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_NXZ + ?empty@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ=node.exe.?empty@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + ?empty@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ=node.exe.?empty@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + ?end@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ=node.exe.?end@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ + ?end@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?end@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + ?end@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?end@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ + ?end@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?end@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ + ?end@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ=node.exe.?end@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + ?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ + ?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + ?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ + ?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + ?end@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ=node.exe.?end@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ + ?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?endUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ=node.exe.?endUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ + ?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UEAA?AV?$Local@VContext@v8@@@v8@@H@Z=node.exe.?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UEAA?AV?$Local@VContext@v8@@@v8@@H@Z + ?enumerable@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?enumerable@PropertyDescriptor@v8@@QEBA_NXZ + ?env@CommonEnvironmentSetup@node@@QEBAPEAVEnvironment@2@XZ=node.exe.?env@CommonEnvironmentSetup@node@@QEBAPEAVEnvironment@2@XZ + ?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@0@Z=node.exe.?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@0@Z + ?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@@Z=node.exe.?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@@Z + ?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@0@Z=node.exe.?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@0@Z + ?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@@Z=node.exe.?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@@Z + ?event_loop@CommonEnvironmentSetup@node@@QEBAPEAUuv_loop_s@@XZ=node.exe.?event_loop@CommonEnvironmentSetup@node@@QEBAPEAUuv_loop_s@@XZ + ?executionContextId@V8ContextInfo@v8_inspector@@SAHV?$Local@VContext@v8@@@v8@@@Z=node.exe.?executionContextId@V8ContextInfo@v8_inspector@@SAHV?$Local@VContext@v8@@@v8@@@Z + ?external_memory@HeapStatistics@v8@@QEAA_KXZ=node.exe.?external_memory@HeapStatistics@v8@@QEAA_KXZ + ?external_script_source_size@HeapCodeStatistics@v8@@QEAA_KXZ=node.exe.?external_script_source_size@HeapCodeStatistics@v8@@QEAA_KXZ + ?fromBase64@Binary@protocol@v8_inspector@@SA?AV123@AEBVString16@3@PEA_N@Z=node.exe.?fromBase64@Binary@protocol@v8_inspector@@SA?AV123@AEBVString16@3@PEA_N@Z + ?fromBinary@Domain@API@Schema@protocol@v8_inspector@@SA?AV?$unique_ptr@VDomain@API@Schema@protocol@v8_inspector@@U?$default_delete@VDomain@API@Schema@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z=node.exe.?fromBinary@Domain@API@Schema@protocol@v8_inspector@@SA?AV?$unique_ptr@VDomain@API@Schema@protocol@v8_inspector@@U?$default_delete@VDomain@API@Schema@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + ?fromBinary@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z=node.exe.?fromBinary@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + ?fromBinary@SearchMatch@API@Debugger@protocol@v8_inspector@@SA?AV?$unique_ptr@VSearchMatch@API@Debugger@protocol@v8_inspector@@U?$default_delete@VSearchMatch@API@Debugger@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z=node.exe.?fromBinary@SearchMatch@API@Debugger@protocol@v8_inspector@@SA?AV?$unique_ptr@VSearchMatch@API@Debugger@protocol@v8_inspector@@U?$default_delete@VSearchMatch@API@Debugger@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + ?fromBinary@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z=node.exe.?fromBinary@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + ?fromBinary@StackTraceId@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTraceId@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTraceId@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z=node.exe.?fromBinary@StackTraceId@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTraceId@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTraceId@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + ?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$MemorySpan@$$CBE@v8@@@Z=node.exe.?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$MemorySpan@$$CBE@v8@@@Z + ?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$span@E@v8_crdtp@@@Z=node.exe.?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$span@E@v8_crdtp@@@Z + ?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEBG_K@Z=node.exe.?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEBG_K@Z + ?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEB_S_K@Z=node.exe.?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEB_S_K@Z + ?fromUTF8@String16@v8_inspector@@SA?AV12@PEBD_K@Z=node.exe.?fromUTF8@String16@v8_inspector@@SA?AV12@PEBD_K@Z + ?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ=node.exe.?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ + ?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ=node.exe.?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ + ?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ=node.exe.?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ + ?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ=node.exe.?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ + ?g_age_table_size_@CagedHeapBase@internal@cppgc@@0_KA=node.exe.?g_age_table_size_@CagedHeapBase@internal@cppgc@@0_KA + ?g_base_@CageBaseGlobal@internal@cppgc@@0TBase@123@A=node.exe.?g_base_@CageBaseGlobal@internal@cppgc@@0TBase@123@A + ?g_heap_base_@CagedHeapBase@internal@cppgc@@0_KA=node.exe.?g_heap_base_@CagedHeapBase@internal@cppgc@@0_KA + ?generateUniqueId@V8InspectorClient@v8_inspector@@UEAA_JXZ=node.exe.?generateUniqueId@V8InspectorClient@v8_inspector@@UEAA_JXZ + ?get@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?get@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?get_active_implementation@simdutf@@YAAEAV?$atomic_ptr@$$CBVimplementation@simdutf@@@internal@1@XZ=node.exe.?get_active_implementation@simdutf@@YAAEAV?$atomic_ptr@$$CBVimplementation@simdutf@@@internal@1@XZ + ?get_allocator@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ=node.exe.?get_allocator@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + ?get_allocator@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ=node.exe.?get_allocator@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + ?get_async_id@AsyncResource@node@@QEBANXZ=node.exe.?get_async_id@AsyncResource@node@@QEBANXZ + ?get_available_implementations@simdutf@@YAAEBVavailable_implementation_list@internal@1@XZ=node.exe.?get_available_implementations@simdutf@@YAAEBVavailable_implementation_list@internal@1@XZ + ?get_linked_module@binding@node@@YAPEAUnode_module@2@PEBD@Z=node.exe.?get_linked_module@binding@node@@YAPEAUnode_module@2@PEBD@Z + ?get_private@PropertyDescriptor@v8@@QEBAPEAUPrivateData@12@XZ=node.exe.?get_private@PropertyDescriptor@v8@@QEBAPEAUPrivateData@12@XZ + ?get_resource@AsyncResource@node@@QEAA?AV?$Local@VObject@v8@@@v8@@XZ=node.exe.?get_resource@AsyncResource@node@@QEAA?AV?$Local@VObject@v8@@@v8@@XZ + ?get_trigger_async_id@AsyncResource@node@@QEBANXZ=node.exe.?get_trigger_async_id@AsyncResource@node@@QEBANXZ + ?global_table_@GlobalGCInfoTable@internal@cppgc@@0PEAVGCInfoTable@23@EA=node.exe.?global_table_@GlobalGCInfoTable@internal@cppgc@@0PEAVGCInfoTable@23@EA + ?has_configurable@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?has_configurable@PropertyDescriptor@v8@@QEBA_NXZ + ?has_enumerable@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?has_enumerable@PropertyDescriptor@v8@@QEBA_NXZ + ?has_filter_context@CpuProfilingOptions@v8@@AEBA_NXZ=node.exe.?has_filter_context@CpuProfilingOptions@v8@@AEBA_NXZ + ?has_get@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?has_get@PropertyDescriptor@v8@@QEBA_NXZ + ?has_set@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?has_set@PropertyDescriptor@v8@@QEBA_NXZ + ?has_value@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?has_value@PropertyDescriptor@v8@@QEBA_NXZ + ?has_writable@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?has_writable@PropertyDescriptor@v8@@QEBA_NXZ + ?heap@StrongRootAllocatorBase@internal@v8@@QEBAPEAVHeap@23@XZ=node.exe.?heap@StrongRootAllocatorBase@internal@v8@@QEBAPEAVHeap@23@XZ + ?heap_size_limit@HeapStatistics@v8@@QEAA_KXZ=node.exe.?heap_size_limit@HeapStatistics@v8@@QEAA_KXZ + ?impl@StreamedSource@ScriptCompiler@v8@@QEBAPEAUScriptStreamingData@internal@3@XZ=node.exe.?impl@StreamedSource@ScriptCompiler@v8@@QEBAPEAUScriptStreamingData@internal@3@XZ + ?initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ=node.exe.?initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + ?initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ=node.exe.?initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@$$QEAUCpuProfileDeoptFrame@v8@@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@$$QEAUCpuProfileDeoptFrame@v8@@@Z + ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@AEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@AEBUCpuProfileDeoptFrame@v8@@@Z + ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z + ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@_KAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@_KAEBUCpuProfileDeoptFrame@v8@@@Z + ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@$$QEAUCpuProfileDeoptInfo@v8@@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@$$QEAUCpuProfileDeoptInfo@v8@@@Z + ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@AEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@AEBUCpuProfileDeoptInfo@v8@@@Z + ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z + ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@_KAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@_KAEBUCpuProfileDeoptInfo@v8@@@Z + ?installAdditionalCommandLineAPI@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VObject@v8@@@4@@Z=node.exe.?installAdditionalCommandLineAPI@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VObject@v8@@@4@@Z + ?is8Bit@StringView@v8_inspector@@QEBA_NXZ=node.exe.?is8Bit@StringView@v8_inspector@@QEBA_NXZ + ?isInspectableHeapObject@V8InspectorClient@v8_inspector@@UEAA_NV?$Local@VObject@v8@@@v8@@@Z=node.exe.?isInspectableHeapObject@V8InspectorClient@v8_inspector@@UEAA_NV?$Local@VObject@v8@@@v8@@@Z + ?isValid@V8DebuggerId@v8_inspector@@QEBA_NXZ=node.exe.?isValid@V8DebuggerId@v8_inspector@@QEBA_NXZ + ?is_one_byte@ValueView@String@v8@@QEBA_NXZ=node.exe.?is_one_byte@ValueView@String@v8@@QEBA_NXZ + ?isolate@CommonEnvironmentSetup@node@@QEBAPEAVIsolate@v8@@XZ=node.exe.?isolate@CommonEnvironmentSetup@node@@QEBAPEAVIsolate@v8@@XZ + ?isolate_data@CommonEnvironmentSetup@node@@QEBAPEAVIsolateData@2@XZ=node.exe.?isolate_data@CommonEnvironmentSetup@node@@QEBAPEAVIsolateData@2@XZ + ?kAllocationGranularity@AgeTable@internal@cppgc@@0_KB=node.exe.?kAllocationGranularity@AgeTable@internal@cppgc@@0_KB + ?kCardSizeInBytes@AgeTable@internal@cppgc@@2_KB=node.exe.?kCardSizeInBytes@AgeTable@internal@cppgc@@2_KB + ?kEmbedderFieldCount@ArrayBuffer@v8@@2HB=node.exe.?kEmbedderFieldCount@ArrayBuffer@v8@@2HB + ?kEmbedderFieldCount@ArrayBufferView@v8@@2HB=node.exe.?kEmbedderFieldCount@ArrayBufferView@v8@@2HB + ?kEmbedderFieldCount@Promise@v8@@2HB=node.exe.?kEmbedderFieldCount@Promise@v8@@2HB + ?kFlagCount@RegExp@v8@@2HB=node.exe.?kFlagCount@RegExp@v8@@2HB + ?kHeapBaseShift@?1??AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z@4_KB=node.exe.?kHeapBaseShift@?1??AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z@4_KB + ?kHiddenName@NameProvider@cppgc@@2QBDB=node.exe.?kHiddenName@NameProvider@cppgc@@2QBDB + ?kInitialWantedLimit@GCInfoTable@internal@cppgc@@2GB=node.exe.?kInitialWantedLimit@GCInfoTable@internal@cppgc@@2GB + ?kInternalFieldCount@ArrayBuffer@v8@@2HB=node.exe.?kInternalFieldCount@ArrayBuffer@v8@@2HB + ?kInternalFieldCount@ArrayBufferView@v8@@2HB=node.exe.?kInternalFieldCount@ArrayBufferView@v8@@2HB + ?kInternalFieldCount@SharedArrayBuffer@v8@@2HB=node.exe.?kInternalFieldCount@SharedArrayBuffer@v8@@2HB + ?kLineOffsetNotFound@Function@v8@@2HB=node.exe.?kLineOffsetNotFound@Function@v8@@2HB + ?kLowerHalfWordMask@CageBaseGlobal@internal@cppgc@@0_KB=node.exe.?kLowerHalfWordMask@CageBaseGlobal@internal@cppgc@@0_KB + ?kMB@ResourceConstraints@v8@@0_KB=node.exe.?kMB@ResourceConstraints@v8@@0_KB + ?kManagedTag@WasmStreaming@v8@@2W4ExternalPointerTag@internal@2@B=node.exe.?kManagedTag@WasmStreaming@v8@@2W4ExternalPointerTag@internal@2@B + ?kMaxByteLength@TypedArray@v8@@2_KB=node.exe.?kMaxByteLength@TypedArray@v8@@2_KB + ?kMaxFramesCount@TickSample@internal@v8@@2IB=node.exe.?kMaxFramesCount@TickSample@internal@v8@@2IB + ?kMaxFramesCountLog2@TickSample@internal@v8@@2IB=node.exe.?kMaxFramesCountLog2@TickSample@internal@v8@@2IB + ?kMaxIndex@GCInfoTable@internal@cppgc@@2GB=node.exe.?kMaxIndex@GCInfoTable@internal@cppgc@@2GB + ?kMaxLength@BigInt64Array@v8@@2_KB=node.exe.?kMaxLength@BigInt64Array@v8@@2_KB + ?kMaxLength@BigUint64Array@v8@@2_KB=node.exe.?kMaxLength@BigUint64Array@v8@@2_KB + ?kMaxLength@Float16Array@v8@@0_KB=node.exe.?kMaxLength@Float16Array@v8@@0_KB + ?kMaxLength@Float32Array@v8@@2_KB=node.exe.?kMaxLength@Float32Array@v8@@2_KB + ?kMaxLength@Float64Array@v8@@2_KB=node.exe.?kMaxLength@Float64Array@v8@@2_KB + ?kMaxLength@Int16Array@v8@@2_KB=node.exe.?kMaxLength@Int16Array@v8@@2_KB + ?kMaxLength@Int32Array@v8@@2_KB=node.exe.?kMaxLength@Int32Array@v8@@2_KB + ?kMaxLength@Int8Array@v8@@2_KB=node.exe.?kMaxLength@Int8Array@v8@@2_KB + ?kMaxLength@String@v8@@2HB=node.exe.?kMaxLength@String@v8@@2HB + ?kMaxLength@Uint16Array@v8@@2_KB=node.exe.?kMaxLength@Uint16Array@v8@@2_KB + ?kMaxLength@Uint32Array@v8@@2_KB=node.exe.?kMaxLength@Uint32Array@v8@@2_KB + ?kMaxLength@Uint8Array@v8@@2_KB=node.exe.?kMaxLength@Uint8Array@v8@@2_KB + ?kMaxLength@Uint8ClampedArray@v8@@2_KB=node.exe.?kMaxLength@Uint8ClampedArray@v8@@2_KB + ?kMinCodePagesBufferSize@Isolate@v8@@2_KB=node.exe.?kMinCodePagesBufferSize@Isolate@v8@@2_KB + ?kMinIndex@GCInfoTable@internal@cppgc@@2GB=node.exe.?kMinIndex@GCInfoTable@internal@cppgc@@2GB + ?kNoColumnInfo@Message@v8@@2HB=node.exe.?kNoColumnInfo@Message@v8@@2HB + ?kNoColumnNumberInfo@AllocationProfile@v8@@2HB=node.exe.?kNoColumnNumberInfo@AllocationProfile@v8@@2HB + ?kNoColumnNumberInfo@CpuProfileNode@v8@@2HB=node.exe.?kNoColumnNumberInfo@CpuProfileNode@v8@@2HB + ?kNoLineNumberInfo@AllocationProfile@v8@@2HB=node.exe.?kNoLineNumberInfo@AllocationProfile@v8@@2HB + ?kNoLineNumberInfo@CpuProfileNode@v8@@2HB=node.exe.?kNoLineNumberInfo@CpuProfileNode@v8@@2HB + ?kNoLineNumberInfo@Message@v8@@2HB=node.exe.?kNoLineNumberInfo@Message@v8@@2HB + ?kNoNameDeducible@NameProvider@cppgc@@2QBDB=node.exe.?kNoNameDeducible@NameProvider@cppgc@@2QBDB + ?kNoSampleLimit@CpuProfilingOptions@v8@@2IB=node.exe.?kNoSampleLimit@CpuProfilingOptions@v8@@2IB + ?kNoScriptId@UnboundScript@v8@@2HB=node.exe.?kNoScriptId@UnboundScript@v8@@2HB + ?kNoScriptIdInfo@Message@v8@@2HB=node.exe.?kNoScriptIdInfo@Message@v8@@2HB + ?kNoWasmFunctionIndexInfo@Message@v8@@2HB=node.exe.?kNoWasmFunctionIndexInfo@Message@v8@@2HB + ?kPersistentHandleNoClassId@HeapProfiler@v8@@2GB=node.exe.?kPersistentHandleNoClassId@HeapProfiler@v8@@2GB + ?kRequiredSize@AgeTable@internal@cppgc@@0_KB=node.exe.?kRequiredSize@AgeTable@internal@cppgc@@0_KB + ?kUnknownObjectId@HeapProfiler@v8@@2IB=node.exe.?kUnknownObjectId@HeapProfiler@v8@@2IB + ?length@FastApiTypedArrayBase@v8@@QEBA_KXZ=node.exe.?length@FastApiTypedArrayBase@v8@@QEBA_KXZ + ?length@StringView@v8_inspector@@QEBA_KXZ=node.exe.?length@StringView@v8_inspector@@QEBA_KXZ + ?length@Utf8Value@String@v8@@QEBAHXZ=node.exe.?length@Utf8Value@String@v8@@QEBAHXZ + ?length@Value@String@v8@@QEBAHXZ=node.exe.?length@Value@String@v8@@QEBAHXZ + ?length@ValueView@String@v8@@QEBAHXZ=node.exe.?length@ValueView@String@v8@@QEBAHXZ + ?major_@Version@internal@v8@@0HA=node.exe.?major_@Version@internal@v8@@0HA + ?malloced_memory@HeapStatistics@v8@@QEAA_KXZ=node.exe.?malloced_memory@HeapStatistics@v8@@QEAA_KXZ + ?maxAsyncCallStackDepthChanged@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?maxAsyncCallStackDepthChanged@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ=node.exe.?max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + ?max_samples@CpuProfilingOptions@v8@@QEBAIXZ=node.exe.?max_samples@CpuProfilingOptions@v8@@QEBAIXZ + ?max_size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ=node.exe.?max_size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + ?max_size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ=node.exe.?max_size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + ?max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ=node.exe.?max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + ?memoryInfo@V8InspectorClient@v8_inspector@@UEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@4@V?$Local@VContext@v8@@@4@@Z=node.exe.?memoryInfo@V8InspectorClient@v8_inspector@@UEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@4@V?$Local@VContext@v8@@@4@@Z + ?minor_@Version@internal@v8@@0HA=node.exe.?minor_@Version@internal@v8@@0HA + ?mode@CpuProfilingOptions@v8@@QEBA?AW4CpuProfilingMode@2@XZ=node.exe.?mode@CpuProfilingOptions@v8@@QEBA?AW4CpuProfilingMode@2@XZ + ?muteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?muteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?name@Extension@v8@@QEBAPEBDXZ=node.exe.?name@Extension@v8@@QEBAPEBDXZ + ?number_of_detached_contexts@HeapStatistics@v8@@QEAA_KXZ=node.exe.?number_of_detached_contexts@HeapStatistics@v8@@QEAA_KXZ + ?number_of_native_contexts@HeapStatistics@v8@@QEAA_KXZ=node.exe.?number_of_native_contexts@HeapStatistics@v8@@QEAA_KXZ + ?object_count@HeapObjectStatistics@v8@@QEAA_KXZ=node.exe.?object_count@HeapObjectStatistics@v8@@QEAA_KXZ + ?object_size@HeapObjectStatistics@v8@@QEAA_KXZ=node.exe.?object_size@HeapObjectStatistics@v8@@QEAA_KXZ + ?object_sub_type@HeapObjectStatistics@v8@@QEAAPEBDXZ=node.exe.?object_sub_type@HeapObjectStatistics@v8@@QEAAPEBDXZ + ?object_type@HeapObjectStatistics@v8@@QEAAPEBDXZ=node.exe.?object_type@HeapObjectStatistics@v8@@QEAAPEBDXZ + ?pair@V8DebuggerId@v8_inspector@@QEBA?AU?$pair@_J_J@__Cr@std@@XZ=node.exe.?pair@V8DebuggerId@v8_inspector@@QEBA?AU?$pair@_J_J@__Cr@std@@XZ + ?patch_@Version@internal@v8@@0HA=node.exe.?patch_@Version@internal@v8@@0HA + ?peak_malloced_memory@HeapStatistics@v8@@QEAA_KXZ=node.exe.?peak_malloced_memory@HeapStatistics@v8@@QEAA_KXZ + ?physical_space_size@HeapSpaceStatistics@v8@@QEAA_KXZ=node.exe.?physical_space_size@HeapSpaceStatistics@v8@@QEAA_KXZ + ?pop_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ=node.exe.?pop_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + ?pop_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ=node.exe.?pop_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + ?print@TickSample@internal@v8@@QEBAXXZ=node.exe.?print@TickSample@internal@v8@@QEBAXXZ + ?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptFrame@v8@@@Z=node.exe.?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptFrame@v8@@@Z + ?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptFrame@v8@@@Z + ?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptInfo@v8@@@Z=node.exe.?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptInfo@v8@@@Z + ?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptInfo@v8@@@Z + ?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXXZ=node.exe.?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXXZ + ?raw_filter_context@CpuProfilingOptions@v8@@AEBAPEAXXZ=node.exe.?raw_filter_context@CpuProfilingOptions@v8@@AEBAPEAXXZ + ?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ=node.exe.?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + ?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ=node.exe.?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + ?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ=node.exe.?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + ?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ=node.exe.?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + ?read_only_space_physical_size@SharedMemoryStatistics@v8@@QEAA_KXZ=node.exe.?read_only_space_physical_size@SharedMemoryStatistics@v8@@QEAA_KXZ + ?read_only_space_size@SharedMemoryStatistics@v8@@QEAA_KXZ=node.exe.?read_only_space_size@SharedMemoryStatistics@v8@@QEAA_KXZ + ?read_only_space_used_size@SharedMemoryStatistics@v8@@QEAA_KXZ=node.exe.?read_only_space_used_size@SharedMemoryStatistics@v8@@QEAA_KXZ + ?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ=node.exe.?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + ?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ=node.exe.?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + ?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ=node.exe.?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + ?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ=node.exe.?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + ?reserve@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z=node.exe.?reserve@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + ?reserve@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z=node.exe.?reserve@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + ?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z=node.exe.?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + ?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z=node.exe.?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + ?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z=node.exe.?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + ?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z=node.exe.?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + ?resourceNameToUrl@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@AEBVStringView@2@@Z=node.exe.?resourceNameToUrl@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@AEBVStringView@2@@Z + ?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?runMessageLoopOnInstrumentationPause@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?runMessageLoopOnInstrumentationPause@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?sampling_interval_us@CpuProfilingOptions@v8@@QEBAHXZ=node.exe.?sampling_interval_us@CpuProfilingOptions@v8@@QEBAHXZ + ?set@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?set@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?set_auto_enable@Extension@v8@@QEAAX_N@Z=node.exe.?set_auto_enable@Extension@v8@@QEAAX_N@Z + ?set_code_range_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z=node.exe.?set_code_range_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + ?set_configurable@PropertyDescriptor@v8@@QEAAX_N@Z=node.exe.?set_configurable@PropertyDescriptor@v8@@QEAAX_N@Z + ?set_enumerable@PropertyDescriptor@v8@@QEAAX_N@Z=node.exe.?set_enumerable@PropertyDescriptor@v8@@QEAAX_N@Z + ?set_initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z=node.exe.?set_initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + ?set_initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z=node.exe.?set_initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + ?set_max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z=node.exe.?set_max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + ?set_max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z=node.exe.?set_max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + ?set_stack_limit@ResourceConstraints@v8@@QEAAXPEAI@Z=node.exe.?set_stack_limit@ResourceConstraints@v8@@QEAAXPEAI@Z + ?shrink_to_fit@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ=node.exe.?shrink_to_fit@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + ?shrink_to_fit@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ=node.exe.?shrink_to_fit@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + ?size@?$MemorySpan@$$CBD@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@$$CBD@v8@@QEBA_KXZ + ?size@?$MemorySpan@$$CBE@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@$$CBE@v8@@QEBA_KXZ + ?size@?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBA_KXZ + ?size@?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBA_KXZ + ?size@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA_KXZ + ?size@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_KXZ + ?size@?$MemorySpan@E@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@E@v8@@QEBA_KXZ + ?size@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA_KXZ + ?size@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA_KXZ=node.exe.?size@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA_KXZ + ?size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ=node.exe.?size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + ?size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ=node.exe.?size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + ?size@Binary@protocol@v8_inspector@@QEBA_KXZ=node.exe.?size@Binary@protocol@v8_inspector@@QEBA_KXZ + ?snapshot_creator@CommonEnvironmentSetup@node@@QEAAPEAVSnapshotCreator@v8@@XZ=node.exe.?snapshot_creator@CommonEnvironmentSetup@node@@QEAAPEAVSnapshotCreator@v8@@XZ + ?soname_@Version@internal@v8@@0PEBDEB=node.exe.?soname_@Version@internal@v8@@0PEBDEB + ?source@Extension@v8@@QEBAPEBVExternalOneByteStringResource@String@2@XZ=node.exe.?source@Extension@v8@@QEBAPEBVExternalOneByteStringResource@String@2@XZ + ?source_length@Extension@v8@@QEBA_KXZ=node.exe.?source_length@Extension@v8@@QEBA_KXZ + ?source_url@CompiledWasmModule@v8@@QEBAAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ=node.exe.?source_url@CompiledWasmModule@v8@@QEBAAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + ?space_available_size@HeapSpaceStatistics@v8@@QEAA_KXZ=node.exe.?space_available_size@HeapSpaceStatistics@v8@@QEAA_KXZ + ?space_name@HeapSpaceStatistics@v8@@QEAAPEBDXZ=node.exe.?space_name@HeapSpaceStatistics@v8@@QEAAPEBDXZ + ?space_size@HeapSpaceStatistics@v8@@QEAA_KXZ=node.exe.?space_size@HeapSpaceStatistics@v8@@QEAA_KXZ + ?space_used_size@HeapSpaceStatistics@v8@@QEAA_KXZ=node.exe.?space_used_size@HeapSpaceStatistics@v8@@QEAA_KXZ + ?stack_limit@ResourceConstraints@v8@@QEBAPEAIXZ=node.exe.?stack_limit@ResourceConstraints@v8@@QEBAPEAIXZ + ?startRepeatingTimer@V8InspectorClient@v8_inspector@@UEAAXNP6AXPEAX@Z0@Z=node.exe.?startRepeatingTimer@V8InspectorClient@v8_inspector@@UEAAXNP6AXPEAX@Z0@Z + ?swap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z=node.exe.?swap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z + ?swap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z=node.exe.?swap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z + ?toBase64@Binary@protocol@v8_inspector@@QEBA?AVString16@3@XZ=node.exe.?toBase64@Binary@protocol@v8_inspector@@QEBA?AVString16@3@XZ + ?toString@V8DebuggerId@v8_inspector@@QEBA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ=node.exe.?toString@V8DebuggerId@v8_inspector@@QEBA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ + ?total_allocated_object_size_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A=node.exe.?total_allocated_object_size_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A + ?total_allocated_space_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A=node.exe.?total_allocated_space_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A + ?total_available_size@HeapStatistics@v8@@QEAA_KXZ=node.exe.?total_available_size@HeapStatistics@v8@@QEAA_KXZ + ?total_global_handles_size@HeapStatistics@v8@@QEAA_KXZ=node.exe.?total_global_handles_size@HeapStatistics@v8@@QEAA_KXZ + ?total_heap_size@HeapStatistics@v8@@QEAA_KXZ=node.exe.?total_heap_size@HeapStatistics@v8@@QEAA_KXZ + ?total_heap_size_executable@HeapStatistics@v8@@QEAA_KXZ=node.exe.?total_heap_size_executable@HeapStatistics@v8@@QEAA_KXZ + ?total_physical_size@HeapStatistics@v8@@QEAA_KXZ=node.exe.?total_physical_size@HeapStatistics@v8@@QEAA_KXZ + ?trusted_data_@ThreadIsolation@internal@v8@@0UTrustedData@123@A=node.exe.?trusted_data_@ThreadIsolation@internal@v8@@0UTrustedData@123@A + ?unmuteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z=node.exe.?unmuteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z + ?used_global_handles_size@HeapStatistics@v8@@QEAA_KXZ=node.exe.?used_global_handles_size@HeapStatistics@v8@@QEAA_KXZ + ?used_heap_size@HeapStatistics@v8@@QEAA_KXZ=node.exe.?used_heap_size@HeapStatistics@v8@@QEAA_KXZ + ?utf8@String16@v8_inspector@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ=node.exe.?utf8@String16@v8_inspector@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + ?value@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ=node.exe.?value@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + ?valueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@@Z=node.exe.?valueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@@Z + ?version_string_@Version@internal@v8@@0PEBDEB=node.exe.?version_string_@Version@internal@v8@@0PEBDEB + ?writable@PropertyDescriptor@v8@@QEBA_NXZ=node.exe.?writable@PropertyDescriptor@v8@@QEBA_NXZ + ?write_barrier_enabled_@WriteBarrier@internal@cppgc@@0VAtomicEntryFlag@23@A=node.exe.?write_barrier_enabled_@WriteBarrier@internal@cppgc@@0VAtomicEntryFlag@23@A + Cr_z_adler32=My_Cr_z_adler32 + Cr_z_adler32_combine=My_Cr_z_adler32_combine + Cr_z_adler32_z=My_Cr_z_adler32_z + Cr_z_compress=My_Cr_z_compress + Cr_z_compress2=My_Cr_z_compress2 + Cr_z_compressBound=My_Cr_z_compressBound + Cr_z_crc32=My_Cr_z_crc32 + Cr_z_crc32_combine=My_Cr_z_crc32_combine + Cr_z_crc32_combine_gen=My_Cr_z_crc32_combine_gen + Cr_z_crc32_combine_op=My_Cr_z_crc32_combine_op + Cr_z_crc32_z=My_Cr_z_crc32_z + Cr_z_deflate=My_Cr_z_deflate + Cr_z_deflateBound=My_Cr_z_deflateBound + Cr_z_deflateCopy=My_Cr_z_deflateCopy + Cr_z_deflateEnd=My_Cr_z_deflateEnd + Cr_z_deflateGetDictionary=My_Cr_z_deflateGetDictionary + Cr_z_deflateInit2_=My_Cr_z_deflateInit2_ + Cr_z_deflateInit_=My_Cr_z_deflateInit_ + Cr_z_deflateParams=My_Cr_z_deflateParams + Cr_z_deflatePending=My_Cr_z_deflatePending + Cr_z_deflatePrime=My_Cr_z_deflatePrime + Cr_z_deflateReset=My_Cr_z_deflateReset + Cr_z_deflateResetKeep=My_Cr_z_deflateResetKeep + Cr_z_deflateSetDictionary=My_Cr_z_deflateSetDictionary + Cr_z_deflateSetHeader=My_Cr_z_deflateSetHeader + Cr_z_deflateTune=My_Cr_z_deflateTune + Cr_z_get_crc_table=My_Cr_z_get_crc_table + Cr_z_uncompress=My_Cr_z_uncompress + Cr_z_uncompress2=My_Cr_z_uncompress2 + Cr_z_zError=My_Cr_z_zError + Cr_z_zlibCompileFlags=My_Cr_z_zlibCompileFlags + Cr_z_zlibVersion=My_Cr_z_zlibVersion + CrashForExceptionInNonABICompliantCodeRange=node.exe.CrashForExceptionInNonABICompliantCodeRange + ExportedContentMain=My_ExportedContentMain + GetHandleVerifier=My_GetHandleVerifier + IsSandboxedProcess=My_IsSandboxedProcess + NodeContextifyContextMetrics1=My_NodeContextifyContextMetrics1 + PerfTrace=My_PerfTrace + QQMain=My_QQMain + napi_acquire_threadsafe_function=node.exe.napi_acquire_threadsafe_function + napi_add_async_cleanup_hook=node.exe.napi_add_async_cleanup_hook + napi_add_env_cleanup_hook=node.exe.napi_add_env_cleanup_hook + napi_add_finalizer=node.exe.napi_add_finalizer + napi_adjust_external_memory=node.exe.napi_adjust_external_memory + napi_async_destroy=node.exe.napi_async_destroy + napi_async_init=node.exe.napi_async_init + napi_call_function=node.exe.napi_call_function + napi_call_threadsafe_function=node.exe.napi_call_threadsafe_function + napi_cancel_async_work=node.exe.napi_cancel_async_work + napi_check_object_type_tag=node.exe.napi_check_object_type_tag + napi_close_callback_scope=node.exe.napi_close_callback_scope + napi_close_escapable_handle_scope=node.exe.napi_close_escapable_handle_scope + napi_close_handle_scope=node.exe.napi_close_handle_scope + napi_coerce_to_bool=node.exe.napi_coerce_to_bool + napi_coerce_to_number=node.exe.napi_coerce_to_number + napi_coerce_to_object=node.exe.napi_coerce_to_object + napi_coerce_to_string=node.exe.napi_coerce_to_string + napi_create_array=node.exe.napi_create_array + napi_create_array_with_length=node.exe.napi_create_array_with_length + napi_create_arraybuffer=node.exe.napi_create_arraybuffer + napi_create_async_work=node.exe.napi_create_async_work + napi_create_bigint_int64=node.exe.napi_create_bigint_int64 + napi_create_bigint_uint64=node.exe.napi_create_bigint_uint64 + napi_create_bigint_words=node.exe.napi_create_bigint_words + napi_create_buffer=node.exe.napi_create_buffer + napi_create_buffer_copy=node.exe.napi_create_buffer_copy + napi_create_dataview=node.exe.napi_create_dataview + napi_create_date=node.exe.napi_create_date + napi_create_double=node.exe.napi_create_double + napi_create_error=node.exe.napi_create_error + napi_create_external=node.exe.napi_create_external + napi_create_external_arraybuffer=node.exe.napi_create_external_arraybuffer + napi_create_external_buffer=node.exe.napi_create_external_buffer + napi_create_function=node.exe.napi_create_function + napi_create_int32=node.exe.napi_create_int32 + napi_create_int64=node.exe.napi_create_int64 + napi_create_object=node.exe.napi_create_object + napi_create_promise=node.exe.napi_create_promise + napi_create_range_error=node.exe.napi_create_range_error + napi_create_reference=node.exe.napi_create_reference + napi_create_string_latin1=node.exe.napi_create_string_latin1 + napi_create_string_utf16=node.exe.napi_create_string_utf16 + napi_create_string_utf8=node.exe.napi_create_string_utf8 + napi_create_symbol=node.exe.napi_create_symbol + napi_create_threadsafe_function=node.exe.napi_create_threadsafe_function + napi_create_type_error=node.exe.napi_create_type_error + napi_create_typedarray=node.exe.napi_create_typedarray + napi_create_uint32=node.exe.napi_create_uint32 + napi_define_class=node.exe.napi_define_class + napi_define_properties=node.exe.napi_define_properties + napi_delete_async_work=node.exe.napi_delete_async_work + napi_delete_element=node.exe.napi_delete_element + napi_delete_property=node.exe.napi_delete_property + napi_delete_reference=node.exe.napi_delete_reference + napi_detach_arraybuffer=node.exe.napi_detach_arraybuffer + napi_escape_handle=node.exe.napi_escape_handle + napi_fatal_error=node.exe.napi_fatal_error + napi_fatal_exception=node.exe.napi_fatal_exception + napi_get_all_property_names=node.exe.napi_get_all_property_names + napi_get_and_clear_last_exception=node.exe.napi_get_and_clear_last_exception + napi_get_array_length=node.exe.napi_get_array_length + napi_get_arraybuffer_info=node.exe.napi_get_arraybuffer_info + napi_get_boolean=node.exe.napi_get_boolean + napi_get_buffer_info=node.exe.napi_get_buffer_info + napi_get_cb_info=node.exe.napi_get_cb_info + napi_get_dataview_info=node.exe.napi_get_dataview_info + napi_get_date_value=node.exe.napi_get_date_value + napi_get_element=node.exe.napi_get_element + napi_get_global=node.exe.napi_get_global + napi_get_instance_data=node.exe.napi_get_instance_data + napi_get_last_error_info=node.exe.napi_get_last_error_info + napi_get_named_property=node.exe.napi_get_named_property + napi_get_new_target=node.exe.napi_get_new_target + napi_get_node_version=node.exe.napi_get_node_version + napi_get_null=node.exe.napi_get_null + napi_get_property=node.exe.napi_get_property + napi_get_property_names=node.exe.napi_get_property_names + napi_get_prototype=node.exe.napi_get_prototype + napi_get_reference_value=node.exe.napi_get_reference_value + napi_get_threadsafe_function_context=node.exe.napi_get_threadsafe_function_context + napi_get_typedarray_info=node.exe.napi_get_typedarray_info + napi_get_undefined=node.exe.napi_get_undefined + napi_get_uv_event_loop=node.exe.napi_get_uv_event_loop + napi_get_value_bigint_int64=node.exe.napi_get_value_bigint_int64 + napi_get_value_bigint_uint64=node.exe.napi_get_value_bigint_uint64 + napi_get_value_bigint_words=node.exe.napi_get_value_bigint_words + napi_get_value_bool=node.exe.napi_get_value_bool + napi_get_value_double=node.exe.napi_get_value_double + napi_get_value_external=node.exe.napi_get_value_external + napi_get_value_int32=node.exe.napi_get_value_int32 + napi_get_value_int64=node.exe.napi_get_value_int64 + napi_get_value_string_latin1=node.exe.napi_get_value_string_latin1 + napi_get_value_string_utf16=node.exe.napi_get_value_string_utf16 + napi_get_value_string_utf8=node.exe.napi_get_value_string_utf8 + napi_get_value_uint32=node.exe.napi_get_value_uint32 + napi_get_version=node.exe.napi_get_version + napi_has_element=node.exe.napi_has_element + napi_has_named_property=node.exe.napi_has_named_property + napi_has_own_property=node.exe.napi_has_own_property + napi_has_property=node.exe.napi_has_property + napi_instanceof=node.exe.napi_instanceof + napi_is_array=node.exe.napi_is_array + napi_is_arraybuffer=node.exe.napi_is_arraybuffer + napi_is_buffer=node.exe.napi_is_buffer + napi_is_dataview=node.exe.napi_is_dataview + napi_is_date=node.exe.napi_is_date + napi_is_detached_arraybuffer=node.exe.napi_is_detached_arraybuffer + napi_is_error=node.exe.napi_is_error + napi_is_exception_pending=node.exe.napi_is_exception_pending + napi_is_promise=node.exe.napi_is_promise + napi_is_typedarray=node.exe.napi_is_typedarray + napi_make_callback=node.exe.napi_make_callback + napi_module_register=node.exe.napi_module_register + napi_new_instance=node.exe.napi_new_instance + napi_object_freeze=node.exe.napi_object_freeze + napi_object_seal=node.exe.napi_object_seal + napi_open_callback_scope=node.exe.napi_open_callback_scope + napi_open_escapable_handle_scope=node.exe.napi_open_escapable_handle_scope + napi_open_handle_scope=node.exe.napi_open_handle_scope + napi_queue_async_work=node.exe.napi_queue_async_work + napi_ref_threadsafe_function=node.exe.napi_ref_threadsafe_function + napi_reference_ref=node.exe.napi_reference_ref + napi_reference_unref=node.exe.napi_reference_unref + napi_reject_deferred=node.exe.napi_reject_deferred + napi_release_threadsafe_function=node.exe.napi_release_threadsafe_function + napi_remove_async_cleanup_hook=node.exe.napi_remove_async_cleanup_hook + napi_remove_env_cleanup_hook=node.exe.napi_remove_env_cleanup_hook + napi_remove_wrap=node.exe.napi_remove_wrap + napi_resolve_deferred=node.exe.napi_resolve_deferred + napi_run_script=node.exe.napi_run_script + napi_set_element=node.exe.napi_set_element + napi_set_instance_data=node.exe.napi_set_instance_data + napi_set_named_property=node.exe.napi_set_named_property + napi_set_property=node.exe.napi_set_property + napi_strict_equals=node.exe.napi_strict_equals + napi_throw=node.exe.napi_throw + napi_throw_error=node.exe.napi_throw_error + napi_throw_range_error=node.exe.napi_throw_range_error + napi_throw_type_error=node.exe.napi_throw_type_error + napi_type_tag_object=node.exe.napi_type_tag_object + napi_typeof=node.exe.napi_typeof + napi_unref_threadsafe_function=node.exe.napi_unref_threadsafe_function + napi_unwrap=node.exe.napi_unwrap + napi_wrap=node.exe.napi_wrap + node_api_create_external_string_latin1=node.exe.node_api_create_external_string_latin1 + node_api_create_external_string_utf16=node.exe.node_api_create_external_string_utf16 + node_api_create_property_key_latin1=node.exe.node_api_create_property_key_latin1 + node_api_create_property_key_utf16=node.exe.node_api_create_property_key_utf16 + node_api_create_property_key_utf8=node.exe.node_api_create_property_key_utf8 + node_api_create_syntax_error=node.exe.node_api_create_syntax_error + node_api_get_module_file_name=node.exe.node_api_get_module_file_name + node_api_post_finalizer=node.exe.node_api_post_finalizer + node_api_symbol_for=node.exe.node_api_symbol_for + node_api_throw_syntax_error=node.exe.node_api_throw_syntax_error + qq_magic_napi_register=node.exe.napi_module_register + qq_magic_node_register=node.exe.napi_module_register + sqlite3_dbdata_init=My_sqlite3_dbdata_init + uv_accept=node.exe.uv_accept + uv_async_init=node.exe.uv_async_init + uv_async_send=node.exe.uv_async_send + uv_available_parallelism=node.exe.uv_available_parallelism + uv_backend_fd=node.exe.uv_backend_fd + uv_backend_timeout=node.exe.uv_backend_timeout + uv_buf_init=node.exe.uv_buf_init + uv_cancel=node.exe.uv_cancel + uv_chdir=node.exe.uv_chdir + uv_check_init=node.exe.uv_check_init + uv_check_start=node.exe.uv_check_start + uv_check_stop=node.exe.uv_check_stop + uv_clock_gettime=node.exe.uv_clock_gettime + uv_close=node.exe.uv_close + uv_cond_broadcast=node.exe.uv_cond_broadcast + uv_cond_destroy=node.exe.uv_cond_destroy + uv_cond_init=node.exe.uv_cond_init + uv_cond_signal=node.exe.uv_cond_signal + uv_cond_timedwait=node.exe.uv_cond_timedwait + uv_cond_wait=node.exe.uv_cond_wait + uv_cpu_info=node.exe.uv_cpu_info + uv_cpumask_size=node.exe.uv_cpumask_size + uv_cwd=node.exe.uv_cwd + uv_default_loop=node.exe.uv_default_loop + uv_disable_stdio_inheritance=node.exe.uv_disable_stdio_inheritance + uv_dlclose=node.exe.uv_dlclose + uv_dlerror=node.exe.uv_dlerror + uv_dlopen=node.exe.uv_dlopen + uv_dlsym=node.exe.uv_dlsym + uv_err_name=node.exe.uv_err_name + uv_err_name_r=node.exe.uv_err_name_r + uv_exepath=node.exe.uv_exepath + uv_fileno=node.exe.uv_fileno + uv_free_cpu_info=node.exe.uv_free_cpu_info + uv_free_interface_addresses=node.exe.uv_free_interface_addresses + uv_freeaddrinfo=node.exe.uv_freeaddrinfo + uv_fs_access=node.exe.uv_fs_access + uv_fs_chmod=node.exe.uv_fs_chmod + uv_fs_chown=node.exe.uv_fs_chown + uv_fs_close=node.exe.uv_fs_close + uv_fs_closedir=node.exe.uv_fs_closedir + uv_fs_copyfile=node.exe.uv_fs_copyfile + uv_fs_event_getpath=node.exe.uv_fs_event_getpath + uv_fs_event_init=node.exe.uv_fs_event_init + uv_fs_event_start=node.exe.uv_fs_event_start + uv_fs_event_stop=node.exe.uv_fs_event_stop + uv_fs_fchmod=node.exe.uv_fs_fchmod + uv_fs_fchown=node.exe.uv_fs_fchown + uv_fs_fdatasync=node.exe.uv_fs_fdatasync + uv_fs_fstat=node.exe.uv_fs_fstat + uv_fs_fsync=node.exe.uv_fs_fsync + uv_fs_ftruncate=node.exe.uv_fs_ftruncate + uv_fs_futime=node.exe.uv_fs_futime + uv_fs_get_path=node.exe.uv_fs_get_path + uv_fs_get_ptr=node.exe.uv_fs_get_ptr + uv_fs_get_result=node.exe.uv_fs_get_result + uv_fs_get_statbuf=node.exe.uv_fs_get_statbuf + uv_fs_get_system_error=node.exe.uv_fs_get_system_error + uv_fs_get_type=node.exe.uv_fs_get_type + uv_fs_lchown=node.exe.uv_fs_lchown + uv_fs_link=node.exe.uv_fs_link + uv_fs_lstat=node.exe.uv_fs_lstat + uv_fs_lutime=node.exe.uv_fs_lutime + uv_fs_mkdir=node.exe.uv_fs_mkdir + uv_fs_mkdtemp=node.exe.uv_fs_mkdtemp + uv_fs_mkstemp=node.exe.uv_fs_mkstemp + uv_fs_open=node.exe.uv_fs_open + uv_fs_opendir=node.exe.uv_fs_opendir + uv_fs_poll_getpath=node.exe.uv_fs_poll_getpath + uv_fs_poll_init=node.exe.uv_fs_poll_init + uv_fs_poll_start=node.exe.uv_fs_poll_start + uv_fs_poll_stop=node.exe.uv_fs_poll_stop + uv_fs_read=node.exe.uv_fs_read + uv_fs_readdir=node.exe.uv_fs_readdir + uv_fs_readlink=node.exe.uv_fs_readlink + uv_fs_realpath=node.exe.uv_fs_realpath + uv_fs_rename=node.exe.uv_fs_rename + uv_fs_req_cleanup=node.exe.uv_fs_req_cleanup + uv_fs_rmdir=node.exe.uv_fs_rmdir + uv_fs_scandir=node.exe.uv_fs_scandir + uv_fs_scandir_next=node.exe.uv_fs_scandir_next + uv_fs_sendfile=node.exe.uv_fs_sendfile + uv_fs_stat=node.exe.uv_fs_stat + uv_fs_statfs=node.exe.uv_fs_statfs + uv_fs_symlink=node.exe.uv_fs_symlink + uv_fs_unlink=node.exe.uv_fs_unlink + uv_fs_utime=node.exe.uv_fs_utime + uv_fs_write=node.exe.uv_fs_write + uv_get_available_memory=node.exe.uv_get_available_memory + uv_get_constrained_memory=node.exe.uv_get_constrained_memory + uv_get_free_memory=node.exe.uv_get_free_memory + uv_get_osfhandle=node.exe.uv_get_osfhandle + uv_get_process_title=node.exe.uv_get_process_title + uv_get_total_memory=node.exe.uv_get_total_memory + uv_getaddrinfo=node.exe.uv_getaddrinfo + uv_getnameinfo=node.exe.uv_getnameinfo + uv_getrusage=node.exe.uv_getrusage + uv_gettimeofday=node.exe.uv_gettimeofday + uv_guess_handle=node.exe.uv_guess_handle + uv_handle_get_data=node.exe.uv_handle_get_data + uv_handle_get_loop=node.exe.uv_handle_get_loop + uv_handle_get_type=node.exe.uv_handle_get_type + uv_handle_set_data=node.exe.uv_handle_set_data + uv_handle_size=node.exe.uv_handle_size + uv_handle_type_name=node.exe.uv_handle_type_name + uv_has_ref=node.exe.uv_has_ref + uv_hrtime=node.exe.uv_hrtime + uv_idle_init=node.exe.uv_idle_init + uv_idle_start=node.exe.uv_idle_start + uv_idle_stop=node.exe.uv_idle_stop + uv_if_indextoiid=node.exe.uv_if_indextoiid + uv_if_indextoname=node.exe.uv_if_indextoname + uv_inet_ntop=node.exe.uv_inet_ntop + uv_inet_pton=node.exe.uv_inet_pton + uv_interface_addresses=node.exe.uv_interface_addresses + uv_ip4_addr=node.exe.uv_ip4_addr + uv_ip4_name=node.exe.uv_ip4_name + uv_ip6_addr=node.exe.uv_ip6_addr + uv_ip6_name=node.exe.uv_ip6_name + uv_ip_name=node.exe.uv_ip_name + uv_is_active=node.exe.uv_is_active + uv_is_closing=node.exe.uv_is_closing + uv_is_readable=node.exe.uv_is_readable + uv_is_writable=node.exe.uv_is_writable + uv_key_create=node.exe.uv_key_create + uv_key_delete=node.exe.uv_key_delete + uv_key_get=node.exe.uv_key_get + uv_key_set=node.exe.uv_key_set + uv_kill=node.exe.uv_kill + uv_library_shutdown=node.exe.uv_library_shutdown + uv_listen=node.exe.uv_listen + uv_loadavg=node.exe.uv_loadavg + uv_loop_alive=node.exe.uv_loop_alive + uv_loop_close=node.exe.uv_loop_close + uv_loop_configure=node.exe.uv_loop_configure + uv_loop_delete=node.exe.uv_loop_delete + uv_loop_fork=node.exe.uv_loop_fork + uv_loop_get_data=node.exe.uv_loop_get_data + uv_loop_init=node.exe.uv_loop_init + uv_loop_new=node.exe.uv_loop_new + uv_loop_set_data=node.exe.uv_loop_set_data + uv_loop_size=node.exe.uv_loop_size + uv_metrics_idle_time=node.exe.uv_metrics_idle_time + uv_metrics_info=node.exe.uv_metrics_info + uv_mutex_destroy=node.exe.uv_mutex_destroy + uv_mutex_init=node.exe.uv_mutex_init + uv_mutex_init_recursive=node.exe.uv_mutex_init_recursive + uv_mutex_lock=node.exe.uv_mutex_lock + uv_mutex_trylock=node.exe.uv_mutex_trylock + uv_mutex_unlock=node.exe.uv_mutex_unlock + uv_now=node.exe.uv_now + uv_once=node.exe.uv_once + uv_open_osfhandle=node.exe.uv_open_osfhandle + uv_os_environ=node.exe.uv_os_environ + uv_os_free_environ=node.exe.uv_os_free_environ + uv_os_free_group=node.exe.uv_os_free_group + uv_os_free_passwd=node.exe.uv_os_free_passwd + uv_os_get_group=node.exe.uv_os_get_group + uv_os_get_passwd=node.exe.uv_os_get_passwd + uv_os_get_passwd2=node.exe.uv_os_get_passwd2 + uv_os_getenv=node.exe.uv_os_getenv + uv_os_gethostname=node.exe.uv_os_gethostname + uv_os_getpid=node.exe.uv_os_getpid + uv_os_getppid=node.exe.uv_os_getppid + uv_os_getpriority=node.exe.uv_os_getpriority + uv_os_homedir=node.exe.uv_os_homedir + uv_os_setenv=node.exe.uv_os_setenv + uv_os_setpriority=node.exe.uv_os_setpriority + uv_os_tmpdir=node.exe.uv_os_tmpdir + uv_os_uname=node.exe.uv_os_uname + uv_os_unsetenv=node.exe.uv_os_unsetenv + uv_pipe=node.exe.uv_pipe + uv_pipe_bind=node.exe.uv_pipe_bind + uv_pipe_bind2=node.exe.uv_pipe_bind2 + uv_pipe_chmod=node.exe.uv_pipe_chmod + uv_pipe_connect=node.exe.uv_pipe_connect + uv_pipe_connect2=node.exe.uv_pipe_connect2 + uv_pipe_getpeername=node.exe.uv_pipe_getpeername + uv_pipe_getsockname=node.exe.uv_pipe_getsockname + uv_pipe_init=node.exe.uv_pipe_init + uv_pipe_open=node.exe.uv_pipe_open + uv_pipe_pending_count=node.exe.uv_pipe_pending_count + uv_pipe_pending_instances=node.exe.uv_pipe_pending_instances + uv_pipe_pending_type=node.exe.uv_pipe_pending_type + uv_poll_init=node.exe.uv_poll_init + uv_poll_init_socket=node.exe.uv_poll_init_socket + uv_poll_start=node.exe.uv_poll_start + uv_poll_stop=node.exe.uv_poll_stop + uv_prepare_init=node.exe.uv_prepare_init + uv_prepare_start=node.exe.uv_prepare_start + uv_prepare_stop=node.exe.uv_prepare_stop + uv_print_active_handles=node.exe.uv_print_active_handles + uv_print_all_handles=node.exe.uv_print_all_handles + uv_process_get_pid=node.exe.uv_process_get_pid + uv_process_kill=node.exe.uv_process_kill + uv_queue_work=node.exe.uv_queue_work + uv_random=node.exe.uv_random + uv_read_start=node.exe.uv_read_start + uv_read_stop=node.exe.uv_read_stop + uv_recv_buffer_size=node.exe.uv_recv_buffer_size + uv_ref=node.exe.uv_ref + uv_replace_allocator=node.exe.uv_replace_allocator + uv_req_get_data=node.exe.uv_req_get_data + uv_req_get_type=node.exe.uv_req_get_type + uv_req_set_data=node.exe.uv_req_set_data + uv_req_size=node.exe.uv_req_size + uv_req_type_name=node.exe.uv_req_type_name + uv_resident_set_memory=node.exe.uv_resident_set_memory + uv_run=node.exe.uv_run + uv_rwlock_destroy=node.exe.uv_rwlock_destroy + uv_rwlock_init=node.exe.uv_rwlock_init + uv_rwlock_rdlock=node.exe.uv_rwlock_rdlock + uv_rwlock_rdunlock=node.exe.uv_rwlock_rdunlock + uv_rwlock_tryrdlock=node.exe.uv_rwlock_tryrdlock + uv_rwlock_trywrlock=node.exe.uv_rwlock_trywrlock + uv_rwlock_wrlock=node.exe.uv_rwlock_wrlock + uv_rwlock_wrunlock=node.exe.uv_rwlock_wrunlock + uv_sem_destroy=node.exe.uv_sem_destroy + uv_sem_init=node.exe.uv_sem_init + uv_sem_post=node.exe.uv_sem_post + uv_sem_trywait=node.exe.uv_sem_trywait + uv_sem_wait=node.exe.uv_sem_wait + uv_send_buffer_size=node.exe.uv_send_buffer_size + uv_set_process_title=node.exe.uv_set_process_title + uv_setup_args=node.exe.uv_setup_args + uv_shutdown=node.exe.uv_shutdown + uv_signal_init=node.exe.uv_signal_init + uv_signal_start=node.exe.uv_signal_start + uv_signal_start_oneshot=node.exe.uv_signal_start_oneshot + uv_signal_stop=node.exe.uv_signal_stop + uv_sleep=node.exe.uv_sleep + uv_socketpair=node.exe.uv_socketpair + uv_spawn=node.exe.uv_spawn + uv_stop=node.exe.uv_stop + uv_stream_get_write_queue_size=node.exe.uv_stream_get_write_queue_size + uv_stream_set_blocking=node.exe.uv_stream_set_blocking + uv_strerror=node.exe.uv_strerror + uv_strerror_r=node.exe.uv_strerror_r + uv_tcp_bind=node.exe.uv_tcp_bind + uv_tcp_close_reset=node.exe.uv_tcp_close_reset + uv_tcp_connect=node.exe.uv_tcp_connect + uv_tcp_getpeername=node.exe.uv_tcp_getpeername + uv_tcp_getsockname=node.exe.uv_tcp_getsockname + uv_tcp_init=node.exe.uv_tcp_init + uv_tcp_init_ex=node.exe.uv_tcp_init_ex + uv_tcp_keepalive=node.exe.uv_tcp_keepalive + uv_tcp_nodelay=node.exe.uv_tcp_nodelay + uv_tcp_open=node.exe.uv_tcp_open + uv_tcp_simultaneous_accepts=node.exe.uv_tcp_simultaneous_accepts + uv_thread_create=node.exe.uv_thread_create + uv_thread_create_ex=node.exe.uv_thread_create_ex + uv_thread_equal=node.exe.uv_thread_equal + uv_thread_getaffinity=node.exe.uv_thread_getaffinity + uv_thread_getcpu=node.exe.uv_thread_getcpu + uv_thread_join=node.exe.uv_thread_join + uv_thread_self=node.exe.uv_thread_self + uv_thread_setaffinity=node.exe.uv_thread_setaffinity + uv_timer_again=node.exe.uv_timer_again + uv_timer_get_due_in=node.exe.uv_timer_get_due_in + uv_timer_get_repeat=node.exe.uv_timer_get_repeat + uv_timer_init=node.exe.uv_timer_init + uv_timer_set_repeat=node.exe.uv_timer_set_repeat + uv_timer_start=node.exe.uv_timer_start + uv_timer_stop=node.exe.uv_timer_stop + uv_translate_sys_error=node.exe.uv_translate_sys_error + uv_try_write=node.exe.uv_try_write + uv_try_write2=node.exe.uv_try_write2 + uv_tty_get_vterm_state=node.exe.uv_tty_get_vterm_state + uv_tty_get_winsize=node.exe.uv_tty_get_winsize + uv_tty_init=node.exe.uv_tty_init + uv_tty_reset_mode=node.exe.uv_tty_reset_mode + uv_tty_set_mode=node.exe.uv_tty_set_mode + uv_tty_set_vterm_state=node.exe.uv_tty_set_vterm_state + uv_udp_bind=node.exe.uv_udp_bind + uv_udp_connect=node.exe.uv_udp_connect + uv_udp_get_send_queue_count=node.exe.uv_udp_get_send_queue_count + uv_udp_get_send_queue_size=node.exe.uv_udp_get_send_queue_size + uv_udp_getpeername=node.exe.uv_udp_getpeername + uv_udp_getsockname=node.exe.uv_udp_getsockname + uv_udp_init=node.exe.uv_udp_init + uv_udp_init_ex=node.exe.uv_udp_init_ex + uv_udp_open=node.exe.uv_udp_open + uv_udp_recv_start=node.exe.uv_udp_recv_start + uv_udp_recv_stop=node.exe.uv_udp_recv_stop + uv_udp_send=node.exe.uv_udp_send + uv_udp_set_broadcast=node.exe.uv_udp_set_broadcast + uv_udp_set_membership=node.exe.uv_udp_set_membership + uv_udp_set_multicast_interface=node.exe.uv_udp_set_multicast_interface + uv_udp_set_multicast_loop=node.exe.uv_udp_set_multicast_loop + uv_udp_set_multicast_ttl=node.exe.uv_udp_set_multicast_ttl + uv_udp_set_source_membership=node.exe.uv_udp_set_source_membership + uv_udp_set_ttl=node.exe.uv_udp_set_ttl + uv_udp_try_send=node.exe.uv_udp_try_send + uv_udp_using_recvmmsg=node.exe.uv_udp_using_recvmmsg + uv_unref=node.exe.uv_unref + uv_update_time=node.exe.uv_update_time + uv_uptime=node.exe.uv_uptime + uv_version=node.exe.uv_version + uv_version_string=node.exe.uv_version_string + uv_walk=node.exe.uv_walk + uv_write=node.exe.uv_write + uv_write2=node.exe.uv_write2 \ No newline at end of file diff --git a/src/yui/msf_task.cc b/src/yui/msf_task.cc index 414d2f0..6a9eeac 100644 --- a/src/yui/msf_task.cc +++ b/src/yui/msf_task.cc @@ -6,6 +6,7 @@ #include #include #include +#include #include #include "../proto/communication.pb.h" @@ -115,7 +116,7 @@ int msf_request_hook(void *_this, MsfReqPkg **p) { task_queue.pop(); spdlog::debug("copy uin..."); #ifdef _WIN32 - strcpy_s(pkg->uin.data, customPkg.uin.c_str()); + strcpy_s(pkg->uin.shortStr.data, customPkg.uin.c_str()); #endif #ifdef __linux__ strcpy(pkg->uin.shortStr.data, customPkg.uin.c_str()); @@ -126,16 +127,14 @@ int msf_request_hook(void *_this, MsfReqPkg **p) { pkg->cmdAndData->cmd.shortStr.size = customPkg.cmd.length() << 1; NTStr backupCmd = pkg->cmdAndData->cmd; #ifdef _WIN32 - if (customPkg.cmd.length() > 15) { - pkg->cmdAndData->cmd.size |= 1; - memset(pkg->cmdAndData->cmd.data, 0, 15); - pkg->cmdAndData->cmd.data[7] = customPkg.cmd.length() + 16; - pkg->cmdAndData->cmd.longStr = new char[customPkg.cmd.length() + 1]; - memset(pkg->cmdAndData->cmd.longStr, 0, customPkg.cmd.length() + 1); - strcpy_s(pkg->cmdAndData->cmd.longStr, customPkg.cmd.length() + 1, customPkg.cmd.c_str()); - spdlog::debug("long cmd: {}", pkg->cmdAndData->cmd.longStr); + if (customPkg.cmd.length() > 23) { + pkg->cmdAndData->cmd.shortStr.size |= 1; + pkg->cmdAndData->cmd.longStr.pStr = new char[customPkg.cmd.length() + 1]; + memset(pkg->cmdAndData->cmd.longStr.pStr, 0, customPkg.cmd.length() + 1); + strcpy_s(pkg->cmdAndData->cmd.longStr.pStr, customPkg.cmd.length() + 1, customPkg.cmd.c_str()); + spdlog::debug("long cmd: {}", pkg->cmdAndData->cmd.longStr.pStr); } else { - strcpy_s(pkg->cmdAndData->cmd.data, customPkg.cmd.c_str()); + strcpy_s(pkg->cmdAndData->cmd.shortStr.data, customPkg.cmd.length(), customPkg.cmd.c_str()); } #endif #ifdef __linux__ diff --git a/test/meta/NODE-EXPORT clean.txt b/test/meta/NODE-EXPORT clean.txt new file mode 100644 index 0000000..419d6c0 Binary files /dev/null and b/test/meta/NODE-EXPORT clean.txt differ diff --git a/test/meta/NODE-EXPORT.txt b/test/meta/NODE-EXPORT.txt new file mode 100644 index 0000000..c9315d0 Binary files /dev/null and b/test/meta/NODE-EXPORT.txt differ diff --git a/test/meta/QBar-EXPORT.txt b/test/meta/QBar-EXPORT.txt new file mode 100644 index 0000000..6348670 Binary files /dev/null and b/test/meta/QBar-EXPORT.txt differ diff --git a/test/meta/QBar-IMPORT.txt b/test/meta/QBar-IMPORT.txt new file mode 100644 index 0000000..58f0521 Binary files /dev/null and b/test/meta/QBar-IMPORT.txt differ diff --git a/test/meta/QQNT-EXPORT clean.txt b/test/meta/QQNT-EXPORT clean.txt new file mode 100644 index 0000000..ccafcfd --- /dev/null +++ b/test/meta/QQNT-EXPORT clean.txt @@ -0,0 +1,9623 @@ +[-] Export listing for file : D:\Program Files\Tencent\QQNT\resources\app\QQNT.dll + + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0DAAAA@H@v8@@YA_NV?$Local@VArray@v8@@@0@PEAHI@Z + + + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0EAAAA@I@v8@@YA_NV?$Local@VArray@v8@@@0@PEAII@Z + + + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0HAAAA@M@v8@@YA_NV?$Local@VArray@v8@@@0@PEAMI@Z + + + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0IAAAA@N@v8@@YA_NV?$Local@VArray@v8@@@0@PEANI@Z + + + Name : ??$ValidateCallbackInfo@VArray@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VArray@v8@@@1@@Z + + + Name : ??$ValidateCallbackInfo@VBoolean@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VBoolean@v8@@@1@@Z + + + Name : ??$ValidateCallbackInfo@VInteger@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VInteger@v8@@@1@@Z + + + Name : ??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@VValue@v8@@@1@@Z + + + Name : ??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VValue@v8@@@1@@Z + + + Name : ??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@X@1@@Z + + + Name : ??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@X@1@@Z + + + Name : ??0?$MemorySpan@$$CBD@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CBE@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@$$CB_K@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@E@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAA@XZ + + + Name : ??0?$MemorySpan@_K@v8@@QEAA@XZ + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + + + Name : ??0ActivityControl@v8@@QEAA@AEBV01@@Z + + + Name : ??0ActivityControl@v8@@QEAA@XZ + + + Name : ??0AllocationProfile@v8@@QEAA@AEBV01@@Z + + + Name : ??0AllocationProfile@v8@@QEAA@XZ + + + Name : ??0Allocator@ArrayBuffer@v8@@QEAA@AEBV012@@Z + + + Name : ??0Allocator@ArrayBuffer@v8@@QEAA@XZ + + + Name : ??0AllowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@@Z + + + Name : ??0ArrayBufferAllocator@node@@QEAA@$$QEAV01@@Z + + + Name : ??0ArrayBufferAllocator@node@@QEAA@AEBV01@@Z + + + Name : ??0ArrayBufferAllocator@node@@QEAA@XZ + + + Name : ??0AsyncResource@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEBDN@Z + + + Name : ??0BackupIncumbentScope@Context@v8@@QEAA@V?$Local@VContext@v8@@@2@@Z + + + Name : ??0Binary@protocol@v8_inspector@@AEAA@V?$shared_ptr@V?$vector@EV?$allocator@E@__Cr@std@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ??0Binary@protocol@v8_inspector@@QEAA@$$QEAV012@@Z + + + Name : ??0Binary@protocol@v8_inspector@@QEAA@AEBV012@@Z + + + Name : ??0Binary@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0CFunction@v8@@QEAA@PEBXPEBVCFunctionInfo@1@@Z + + + Name : ??0CFunction@v8@@QEAA@XZ + + + Name : ??0CFunctionInfo@v8@@QEAA@AEBVCTypeInfo@1@IPEBV21@W4Int64Representation@01@@Z + + + Name : ??0CachedData@ScriptCompiler@v8@@QEAA@PEBEHW4BufferPolicy@012@@Z + + + Name : ??0CachedData@ScriptCompiler@v8@@QEAA@XZ + + + Name : ??0CallbackScope@AsyncResource@node@@QEAA@PEAV12@@Z + + + Name : ??0CallbackScope@node@@QEAA@PEAVEnvironment@1@V?$Local@VObject@v8@@@v8@@Uasync_context@1@@Z + + + Name : ??0CallbackScope@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@Uasync_context@1@@Z + + + Name : ??0Channel@V8Inspector@v8_inspector@@QEAA@AEBV012@@Z + + + Name : ??0Channel@V8Inspector@v8_inspector@@QEAA@XZ + + + Name : ??0CodeEventHandler@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@PEBVEmbedderSnapshotData@1@IV?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@PEBUSnapshotConfig@1@@Z + + + Name : ??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@V?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@@Z + + + Name : ??0CompilationDependencies@compiler@internal@v8@@QEAA@$$QEAV0123@@Z + + + Name : ??0CompilationDependencies@compiler@internal@v8@@QEAA@AEBV0123@@Z + + + Name : ??0CompilationDependencies@compiler@internal@v8@@QEAA@PEAVJSHeapBroker@123@PEAVZone@23@@Z + + + Name : ??0CompiledWasmModule@v8@@AEAA@V?$shared_ptr@VNativeModule@wasm@internal@v8@@@__Cr@std@@PEBD_K@Z + + + Name : ??0CompiledWasmModule@v8@@QEAA@$$QEAV01@@Z + + + Name : ??0CompiledWasmModule@v8@@QEAA@AEBV01@@Z + + + Name : ??0ConsumeCodeCacheTask@ScriptCompiler@v8@@AEAA@V?$unique_ptr@VBackgroundDeserializeTask@internal@v8@@U?$default_delete@VBackgroundDeserializeTask@internal@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ??0CppHeap@v8@@AEAA@XZ + + + Name : ??0CppHeap@v8@@QEAA@AEBV01@@Z + + + Name : ??0CppHeapCreateParams@v8@@QEAA@V?$vector@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@V?$allocator@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@@23@@__Cr@std@@@Z + + + Name : ??0CpuProfileDeoptInfo@v8@@QEAA@$$QEAU01@@Z + + + Name : ??0CpuProfileDeoptInfo@v8@@QEAA@AEBU01@@Z + + + Name : ??0CpuProfileDeoptInfo@v8@@QEAA@XZ + + + Name : ??0CpuProfilingOptions@v8@@QEAA@$$QEAV01@@Z + + + Name : ??0CpuProfilingOptions@v8@@QEAA@W4CpuProfilingMode@1@IHV?$MaybeLocal@VContext@v8@@@1@@Z + + + Name : ??0CreateParams@Isolate@v8@@QEAA@$$QEAU012@@Z + + + Name : ??0CreateParams@Isolate@v8@@QEAA@AEBU012@@Z + + + Name : ??0CreateParams@Isolate@v8@@QEAA@XZ + + + Name : ??0CrossThreadPersistentRegion@internal@cppgc@@QEAA@AEBVFatalOutOfMemoryHandler@12@@Z + + + Name : ??0DeepSerializationResult@v8_inspector@@QEAA@$$QEAU01@@Z + + + Name : ??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@UDeepSerializedValue@v8_inspector@@U?$default_delete@UDeepSerializedValue@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ??0DeepSerializedValue@v8_inspector@@QEAA@$$QEAU01@@Z + + + Name : ??0DeepSerializedValue@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$MaybeLocal@VValue@v8@@@v8@@@Z + + + Name : ??0Delegate@ValueDeserializer@v8@@QEAA@AEBV012@@Z + + + Name : ??0Delegate@ValueDeserializer@v8@@QEAA@XZ + + + Name : ??0Delegate@ValueSerializer@v8@@QEAA@AEBV012@@Z + + + Name : ??0Delegate@ValueSerializer@v8@@QEAA@XZ + + + Name : ??0DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z + + + Name : ??0DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@W4OnFailure@012@@Z + + + Name : ??0DiscardedSamplesDelegate@v8@@QEAA@AEBV01@@Z + + + Name : ??0DiscardedSamplesDelegate@v8@@QEAA@XZ + + + Name : ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + + + Name : ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@AEBV01234@@Z + + + Name : ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0EmbedderGraph@v8@@QEAA@AEBV01@@Z + + + Name : ??0EmbedderGraph@v8@@QEAA@XZ + + + Name : ??0EmbedderRootsHandler@v8@@QEAA@AEBV01@@Z + + + Name : ??0EmbedderRootsHandler@v8@@QEAA@XZ + + + Name : ??0EmbedderStateScope@v8@@QEAA@PEAVIsolate@1@V?$Local@VContext@v8@@@1@W4EmbedderStateTag@1@@Z + + + Name : ??0EscapableHandleScope@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0EscapableHandleScopeBase@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0EvaluateResult@V8InspectorSession@v8_inspector@@QEAA@XZ + + + Name : ??0Exported@protocol@v8_inspector@@QEAA@AEBV012@@Z + + + Name : ??0Exported@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0Extension@v8@@QEAA@PEBD0HPEAPEBDH@Z + + + Name : ??0ExtensionConfiguration@v8@@QEAA@HQEAPEBD@Z + + + Name : ??0ExtensionConfiguration@v8@@QEAA@XZ + + + Name : ??0ExternalOneByteStringResource@String@v8@@IEAA@XZ + + + Name : ??0ExternalResourceVisitor@v8@@QEAA@AEBV01@@Z + + + Name : ??0ExternalResourceVisitor@v8@@QEAA@XZ + + + Name : ??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@AEBV012@@Z + + + Name : ??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@XZ + + + Name : ??0ExternalStringResource@String@v8@@IEAA@XZ + + + Name : ??0ExternalStringResourceBase@String@v8@@IEAA@XZ + + + Name : ??0GCInfoTable@internal@cppgc@@QEAA@AEAVPageAllocator@v8@@AEAVFatalOutOfMemoryHandler@12@@Z + + + Name : ??0HandleScope@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0Heap@cppgc@@AEAA@XZ + + + Name : ??0Heap@cppgc@@QEAA@AEBV01@@Z + + + Name : ??0HeapCodeStatistics@v8@@QEAA@XZ + + + Name : ??0HeapObjectStatistics@v8@@QEAA@XZ + + + Name : ??0HeapSpaceStatistics@v8@@QEAA@XZ + + + Name : ??0HeapStatistics@v8@@QEAA@XZ + + + Name : ??0InitializationResult@node@@AEAA@XZ + + + Name : ??0InitializationResult@node@@QEAA@AEBV01@@Z + + + Name : ??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@AEBV012@@Z + + + Name : ??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@XZ + + + Name : ??0IsolatePlatformDelegate@node@@QEAA@$$QEAV01@@Z + + + Name : ??0IsolatePlatformDelegate@node@@QEAA@AEBV01@@Z + + + Name : ??0IsolatePlatformDelegate@node@@QEAA@XZ + + + Name : ??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@$$QEAV0123@@Z + + + Name : ??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@PEAVJitPage@123@_K@Z + + + Name : ??0Location@v8@@QEAA@HH@Z + + + Name : ??0Locker@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0LongTaskStats@metrics@v8@@QEAA@XZ + + + Name : ??0MeasureMemoryDelegate@v8@@QEAA@AEBV01@@Z + + + Name : ??0MeasureMemoryDelegate@v8@@QEAA@XZ + + + Name : ??0MicrotaskQueue@v8@@AEAA@XZ + + + Name : ??0MicrotasksScope@v8@@QEAA@PEAVIsolate@1@PEAVMicrotaskQueue@1@W4Type@01@@Z + + + Name : ??0MicrotasksScope@v8@@QEAA@V?$Local@VContext@v8@@@1@W4Type@01@@Z + + + Name : ??0ModuleWrap@loader@node@@AEAA@PEAVRealm@2@V?$Local@VObject@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VString@v8@@@5@1V?$Local@VValue@v8@@@5@@Z + + + Name : ??0MultiIsolatePlatform@node@@QEAA@AEBV01@@Z + + + Name : ??0MultiIsolatePlatform@node@@QEAA@XZ + + + Name : ??0NameProvider@cppgc@@QEAA@AEBV01@@Z + + + Name : ??0NameProvider@cppgc@@QEAA@XZ + + + Name : ??0NoGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z + + + Name : ??0OptimizingCompileDispatcherQueue@internal@v8@@QEAA@H@Z + + + Name : ??0OutputStream@v8@@QEAA@AEBV01@@Z + + + Name : ??0OutputStream@v8@@QEAA@XZ + + + Name : ??0OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@AEAVHeapHandle@2@W4EmbedderStackState@2@@Z + + + Name : ??0PersistentHandleVisitor@v8@@QEAA@AEBV01@@Z + + + Name : ??0PersistentHandleVisitor@v8@@QEAA@XZ + + + Name : ??0PersistentRegion@internal@cppgc@@QEAA@AEBVHeapBase@12@AEBVFatalOutOfMemoryHandler@12@@Z + + + Name : ??0PersistentRegionBase@internal@cppgc@@IEAA@AEBVFatalOutOfMemoryHandler@12@@Z + + + Name : ??0PersistentRegionLock@internal@cppgc@@QEAA@XZ + + + Name : ??0Platform@cppgc@@QEAA@AEBV01@@Z + + + Name : ??0Platform@cppgc@@QEAA@XZ + + + Name : ??0PrefinalizerRegistration@internal@cppgc@@QEAA@PEAXP6A_NAEBVLivenessBroker@2@0@Z@Z + + + Name : ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@0@Z + + + Name : ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@@Z + + + Name : ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@_N@Z + + + Name : ??0PropertyDescriptor@v8@@QEAA@XZ + + + Name : ??0Recorder@metrics@v8@@QEAA@AEBV012@@Z + + + Name : ??0Recorder@metrics@v8@@QEAA@XZ + + + Name : ??0RegisterState@v8@@QEAA@AEBU01@@Z + + + Name : ??0RegisterState@v8@@QEAA@XZ + + + Name : ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + + + Name : ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + + + Name : ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0ResourceConstraints@v8@@QEAA@XZ + + + Name : ??0RootVisitor@internal@cppgc@@QEAA@AEBV012@@Z + + + Name : ??0RootVisitor@internal@cppgc@@QEAA@VKey@Visitor@2@@Z + + + Name : ??0SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAA@XZ + + + Name : ??0Scope@Isolate@v8@@QEAA@PEAV12@@Z + + + Name : ??0ScriptOrigin@v8@@QEAA@V?$Local@VValue@v8@@@1@HH_NH0111V?$Local@VData@v8@@@1@@Z + + + Name : ??0ScriptStreamingTask@ScriptCompiler@v8@@AEAA@PEAUScriptStreamingData@internal@2@@Z + + + Name : ??0SealHandleScope@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + + + Name : ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@AEBV01234@@Z + + + Name : ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0SharedMemoryStatistics@v8@@QEAA@XZ + + + Name : ??0SharedValueConveyor@v8@@AEAA@PEAVIsolate@1@@Z + + + Name : ??0SharedValueConveyor@v8@@QEAA@$$QEAV01@@Z + + + Name : ??0SnapshotCreator@v8@@QEAA@AEBUCreateParams@Isolate@1@@Z + + + Name : ??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@AEBUCreateParams@21@@Z + + + Name : ??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@PEB_JPEBVStartupData@1@_N@Z + + + Name : ??0SnapshotCreator@v8@@QEAA@PEB_JPEBVStartupData@1@@Z + + + Name : ??0SourceLocation@v8@@AEAA@PEBD0_K@Z + + + Name : ??0SourceLocation@v8@@QEAA@XZ + + + Name : ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + + + Name : ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + + + Name : ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + + + Name : ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + + + Name : ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@XZ + + + Name : ??0StandaloneTestingHeap@testing@cppgc@@QEAA@AEAVHeapHandle@2@@Z + + + Name : ??0StreamedSource@ScriptCompiler@v8@@QEAA@V?$unique_ptr@VExternalSourceStream@ScriptCompiler@v8@@U?$default_delete@VExternalSourceStream@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@W4Encoding@012@@Z + + + Name : ??0String16@v8_inspector@@QEAA@PEBD@Z + + + Name : ??0String16@v8_inspector@@QEAA@PEB_S@Z + + + Name : ??0StringBuffer@v8_inspector@@QEAA@AEBV01@@Z + + + Name : ??0StringBuffer@v8_inspector@@QEAA@XZ + + + Name : ??0StringView@v8_inspector@@QEAA@PEBE_K@Z + + + Name : ??0StringView@v8_inspector@@QEAA@PEBG_K@Z + + + Name : ??0StringView@v8_inspector@@QEAA@XZ + + + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVHeap@12@@Z + + + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@12@@Z + + + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@2@@Z + + + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalHeap@12@@Z + + + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalIsolate@12@@Z + + + Name : ??0SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@PEAV12@PEAVMicrotaskQueue@2@@Z + + + Name : ??0SuspendTagCheckingScope@base@heap@@QEAA@XZ + + + Name : ??0TickSample@internal@v8@@QEAA@XZ + + + Name : ??0TryCatch@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0TypecheckWitness@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0Unlocker@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0Utf8Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@W4WriteOptions@12@@Z + + + Name : ??0V8ContextInfo@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@HVStringView@1@@Z + + + Name : ??0V8DebuggerId@v8_inspector@@AEAA@U?$pair@_J_J@__Cr@std@@@Z + + + Name : ??0V8DebuggerId@v8_inspector@@QEAA@XZ + + + Name : ??0V8Inspector@v8_inspector@@QEAA@AEBV01@@Z + + + Name : ??0V8Inspector@v8_inspector@@QEAA@XZ + + + Name : ??0V8InspectorClient@v8_inspector@@QEAA@AEBV01@@Z + + + Name : ??0V8InspectorClient@v8_inspector@@QEAA@XZ + + + Name : ??0V8InspectorSession@v8_inspector@@QEAA@AEBV01@@Z + + + Name : ??0V8InspectorSession@v8_inspector@@QEAA@XZ + + + Name : ??0V8SerializationDuplicateTracker@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@@Z + + + Name : ??0V8StackFrame@v8_inspector@@QEAA@XZ + + + Name : ??0V8StackTrace@v8_inspector@@QEAA@AEBV01@@Z + + + Name : ??0V8StackTrace@v8_inspector@@QEAA@XZ + + + Name : ??0V8StackTraceId@v8_inspector@@QEAA@VStringView@1@@Z + + + Name : ??0V8StackTraceId@v8_inspector@@QEAA@XZ + + + Name : ??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@@Z + + + Name : ??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@_N@Z + + + Name : ??0Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_K@Z + + + Name : ??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_KPEAVDelegate@01@@Z + + + Name : ??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@@Z + + + Name : ??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@PEAVDelegate@01@@Z + + + Name : ??0ValueView@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ??0Visitor@cppgc@@QEAA@AEBV01@@Z + + + Name : ??0Visitor@cppgc@@QEAA@VKey@01@@Z + + + Name : ??0WasmStreaming@v8@@QEAA@V?$unique_ptr@VWasmStreamingImpl@WasmStreaming@v8@@U?$default_delete@VWasmStreamingImpl@WasmStreaming@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ??1?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + + + Name : ??1?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + + + Name : ??1ActivityControl@v8@@UEAA@XZ + + + Name : ??1AllocationProfile@v8@@UEAA@XZ + + + Name : ??1Allocator@ArrayBuffer@v8@@UEAA@XZ + + + Name : ??1AllowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ + + + Name : ??1ArrayBufferAllocator@node@@UEAA@XZ + + + Name : ??1AsyncResource@node@@UEAA@XZ + + + Name : ??1BackingStore@v8@@QEAA@XZ + + + Name : ??1BackupIncumbentScope@Context@v8@@QEAA@XZ + + + Name : ??1Binary@protocol@v8_inspector@@QEAA@XZ + + + Name : ??1CachedData@ScriptCompiler@v8@@QEAA@XZ + + + Name : ??1CallbackScope@AsyncResource@node@@QEAA@XZ + + + Name : ??1CallbackScope@node@@QEAA@XZ + + + Name : ??1Channel@V8Inspector@v8_inspector@@UEAA@XZ + + + Name : ??1CodeEventHandler@v8@@UEAA@XZ + + + Name : ??1CommonEnvironmentSetup@node@@QEAA@XZ + + + Name : ??1CompilationDependencies@compiler@internal@v8@@QEAA@XZ + + + Name : ??1CompiledWasmModule@v8@@QEAA@XZ + + + Name : ??1ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAA@XZ + + + Name : ??1CppHeap@v8@@UEAA@XZ + + + Name : ??1CppHeapCreateParams@v8@@QEAA@XZ + + + Name : ??1CpuProfileDeoptInfo@v8@@QEAA@XZ + + + Name : ??1CpuProfilingOptions@v8@@QEAA@XZ + + + Name : ??1CreateParams@Isolate@v8@@QEAA@XZ + + + Name : ??1CrossThreadPersistentRegion@internal@cppgc@@QEAA@XZ + + + Name : ??1DeepSerializationResult@v8_inspector@@QEAA@XZ + + + Name : ??1DeepSerializedValue@v8_inspector@@QEAA@XZ + + + Name : ??1Delegate@ValueDeserializer@v8@@UEAA@XZ + + + Name : ??1Delegate@ValueSerializer@v8@@UEAA@XZ + + + Name : ??1DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@XZ + + + Name : ??1DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ + + + Name : ??1DiscardedSamplesDelegate@v8@@UEAA@XZ + + + Name : ??1Domain@API@Schema@protocol@v8_inspector@@UEAA@XZ + + + Name : ??1EmbedderGraph@v8@@UEAA@XZ + + + Name : ??1EmbedderRootsHandler@v8@@UEAA@XZ + + + Name : ??1EmbedderStateScope@v8@@QEAA@XZ + + + Name : ??1EscapableHandleScope@v8@@QEAA@XZ + + + Name : ??1EscapableHandleScopeBase@v8@@QEAA@XZ + + + Name : ??1Exported@protocol@v8_inspector@@UEAA@XZ + + + Name : ??1Extension@v8@@UEAA@XZ + + + Name : ??1ExternalOneByteStringResource@String@v8@@UEAA@XZ + + + Name : ??1ExternalResourceVisitor@v8@@UEAA@XZ + + + Name : ??1ExternalSourceStream@ScriptCompiler@v8@@UEAA@XZ + + + Name : ??1ExternalStringResource@String@v8@@UEAA@XZ + + + Name : ??1ExternalStringResourceBase@String@v8@@UEAA@XZ + + + Name : ??1GCInfoTable@internal@cppgc@@QEAA@XZ + + + Name : ??1HandleScope@v8@@QEAA@XZ + + + Name : ??1Heap@cppgc@@UEAA@XZ + + + Name : ??1InitializationResult@node@@UEAA@XZ + + + Name : ??1Inspectable@V8InspectorSession@v8_inspector@@UEAA@XZ + + + Name : ??1JitPageReference@ThreadIsolation@internal@v8@@QEAA@XZ + + + Name : ??1Locker@v8@@QEAA@XZ + + + Name : ??1MeasureMemoryDelegate@v8@@UEAA@XZ + + + Name : ??1MicrotaskQueue@v8@@UEAA@XZ + + + Name : ??1MicrotasksScope@v8@@QEAA@XZ + + + Name : ??1ModuleWrap@loader@node@@EEAA@XZ + + + Name : ??1MultiIsolatePlatform@node@@UEAA@XZ + + + Name : ??1NameProvider@cppgc@@UEAA@XZ + + + Name : ??1NoGarbageCollectionScope@subtle@cppgc@@QEAA@XZ + + + Name : ??1OptimizingCompileDispatcherQueue@internal@v8@@QEAA@XZ + + + Name : ??1OutputStream@v8@@UEAA@XZ + + + Name : ??1OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@XZ + + + Name : ??1PersistentHandleVisitor@v8@@UEAA@XZ + + + Name : ??1PersistentRegion@internal@cppgc@@QEAA@XZ + + + Name : ??1PersistentRegionBase@internal@cppgc@@QEAA@XZ + + + Name : ??1PersistentRegionLock@internal@cppgc@@QEAA@XZ + + + Name : ??1Platform@cppgc@@UEAA@XZ + + + Name : ??1PropertyDescriptor@v8@@QEAA@XZ + + + Name : ??1Recorder@metrics@v8@@UEAA@XZ + + + Name : ??1RegisterState@v8@@QEAA@XZ + + + Name : ??1RemoteObject@API@Runtime@protocol@v8_inspector@@UEAA@XZ + + + Name : ??1RootVisitor@internal@cppgc@@UEAA@XZ + + + Name : ??1Scope@Isolate@v8@@QEAA@XZ + + + Name : ??1SealHandleScope@v8@@QEAA@XZ + + + Name : ??1SearchMatch@API@Debugger@protocol@v8_inspector@@UEAA@XZ + + + Name : ??1SharedValueConveyor@v8@@QEAA@XZ + + + Name : ??1SnapshotCreator@v8@@QEAA@XZ + + + Name : ??1StackTrace@API@Runtime@protocol@v8_inspector@@UEAA@XZ + + + Name : ??1StackTraceId@API@Runtime@protocol@v8_inspector@@UEAA@XZ + + + Name : ??1StreamedSource@ScriptCompiler@v8@@QEAA@XZ + + + Name : ??1StringBuffer@v8_inspector@@UEAA@XZ + + + Name : ??1SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@XZ + + + Name : ??1SuspendTagCheckingScope@base@heap@@QEAA@XZ + + + Name : ??1TryCatch@v8@@QEAA@XZ + + + Name : ??1Unlocker@v8@@QEAA@XZ + + + Name : ??1Utf8Value@String@v8@@QEAA@XZ + + + Name : ??1V8Inspector@v8_inspector@@UEAA@XZ + + + Name : ??1V8InspectorClient@v8_inspector@@UEAA@XZ + + + Name : ??1V8InspectorSession@v8_inspector@@UEAA@XZ + + + Name : ??1V8StackTrace@v8_inspector@@UEAA@XZ + + + Name : ??1Value@String@v8@@QEAA@XZ + + + Name : ??1ValueDeserializer@v8@@QEAA@XZ + + + Name : ??1ValueSerializer@v8@@QEAA@XZ + + + Name : ??1ValueView@String@v8@@QEAA@XZ + + + Name : ??1Visitor@cppgc@@UEAA@XZ + + + Name : ??1WasmStreaming@v8@@QEAA@XZ + + + Name : ??2GlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z + + + Name : ??2HandleScope@v8@@CAPEAX_K@Z + + + Name : ??2TryCatch@v8@@CAPEAX_K@Z + + + Name : ??3BackingStore@v8@@SAXPEAX@Z + + + Name : ??3GlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z + + + Name : ??3HandleScope@v8@@CAXPEAX_K@Z + + + Name : ??3TryCatch@v8@@CAXPEAX_K@Z + + + Name : ??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@E@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@E@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$MemorySpan@_K@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4?$MemorySpan@_K@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z + + + Name : ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z + + + Name : ??4ActivityControl@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4AgeTable@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4AgeTable@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4AllocationHandle@cppgc@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4AllocationHandle@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4AllocationProfile@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Allocator@ArrayBuffer@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ArrayBufferAllocator@node@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ArrayBufferAllocator@node@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ArrayBufferView@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ArrayBufferView@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4BackingStore@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4BackupIncumbentScope@Context@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4BigInt64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4BigInt64Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4BigInt@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4BigInt@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4BigIntObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4BigIntObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4BigUint64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4BigUint64Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Binary@protocol@v8_inspector@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4Binary@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Boolean@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Boolean@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4BooleanObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4BooleanObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CFunction@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4CFunction@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Channel@V8Inspector@v8_inspector@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4CodeEvent@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4CodeEvent@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CompileHintsCollector@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4CompileHintsCollector@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Context@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Context@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CppHeap@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CpuProfile@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4CpuProfile@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@$$QEAU01@@Z + + + Name : ??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@AEBU01@@Z + + + Name : ??4CpuProfileNode@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4CpuProfileNode@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4CpuProfilingOptions@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4CreateParams@Isolate@v8@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4CreateParams@Isolate@v8@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4Data@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Data@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4DataView@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4DataView@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Date@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Date@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4DeepSerializationResult@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + + + Name : ??4DeepSerializedValue@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + + + Name : ??4Delegate@ValueDeserializer@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Delegate@ValueSerializer@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4DeleteACHHandle@node@@QEAAAEAU01@$$QEAU01@@Z + + + Name : ??4DeleteACHHandle@node@@QEAAAEAU01@AEBU01@@Z + + + Name : ??4DictionaryTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4DictionaryTemplate@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4DiscardedSamplesDelegate@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + + + Name : ??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + + + Name : ??4EmbedderGraph@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4EmbedderRootsHandler@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4Exception@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Exception@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Exported@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4External@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4External@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ExternalResourceVisitor@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ExternalSourceStream@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4FixedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4FixedArray@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Float16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Float16Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Float32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Float32Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Float64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Float64Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Function@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Function@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4FunctionTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4FunctionTemplate@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Heap@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapCodeStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapCodeStatistics@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapGraphEdge@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapGraphEdge@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapGraphNode@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapGraphNode@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapObjectStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapObjectStatistics@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapSnapshot@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapSnapshot@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapSpaceStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapSpaceStatistics@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4HeapState@subtle@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4HeapState@subtle@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4HeapStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4HeapStatistics@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4InitializationResult@node@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Inspectable@V8InspectorSession@v8_inspector@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Int16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Int16Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Int32@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Int32@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Int32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Int32Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Int8Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Int8Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Integer@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Integer@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4IsolatePlatformDelegate@node@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4IsolatePlatformDelegate@node@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4JSON@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4JSON@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4LivenessBroker@cppgc@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4LivenessBroker@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Location@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Location@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4LongTaskStats@metrics@v8@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4LongTaskStats@metrics@v8@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4Map@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Map@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4MeasureMemoryDelegate@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Message@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Message@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Module@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Module@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ModuleRequest@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ModuleRequest@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4MultiIsolatePlatform@node@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Name@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Name@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4NameProvider@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4NameTraitBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4NameTraitBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Number@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Number@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4NumberObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4NumberObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Numeric@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Numeric@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Object@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Object@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ObjectTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ObjectTemplate@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4OutputStream@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4PersistentHandleVisitor@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4PersistentRegionLock@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Platform@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Primitive@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Primitive@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4PrimitiveArray@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4PrimitiveArray@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Private@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Private@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Promise@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Promise@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Proxy@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Proxy@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Recorder@metrics@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4RegExp@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4RegExp@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4RegisterState@v8@@QEAAAEAU01@AEBU01@@Z + + + Name : ??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + + + Name : ??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + + + Name : ??4Resolver@Promise@v8@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4Resolver@Promise@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4ResourceConstraints@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ResourceConstraints@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4RootVisitor@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Script@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Script@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ScriptCompiler@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ScriptCompiler@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ScriptOrModule@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4ScriptOrModule@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + + + Name : ??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + + + Name : ??4Set@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Set@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4SharedArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4SharedArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4SharedMemoryStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4SharedMemoryStatistics@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4SharedValueConveyor@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Signature@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Signature@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4SourceLocation@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4SourceLocation@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StackFrame@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4StackFrame@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + + + Name : ??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + + + Name : ??4StackTrace@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4StackTrace@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + + + Name : ??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + + + Name : ??4StartupData@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4StartupData@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4String@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4String@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StringBuffer@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StringObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4StringObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StringView@v8_inspector@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4StringView@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4SuspendTagCheckingScope@base@heap@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Symbol@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Symbol@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4SymbolObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4SymbolObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Template@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Template@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4ThreadIsolation@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4ThreadIsolation@internal@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4TickSample@internal@v8@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4TickSample@internal@v8@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + + + Name : ??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + + + Name : ??4TypecheckWitness@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4TypecheckWitness@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4TypedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4TypedArray@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Uint16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Uint16Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Uint32@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Uint32@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Uint32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Uint32Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Uint8Array@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Uint8Array@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Uint8ClampedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Uint8ClampedArray@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4UnboundModuleScript@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4UnboundModuleScript@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4UnboundScript@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4UnboundScript@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Unlocker@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Unwinder@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Unwinder@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4V8@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8DebuggerId@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8Inspector@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8InspectorClient@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8InspectorSession@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8StackFrame@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + + + Name : ??4V8StackFrame@v8_inspector@@QEAAAEAU01@AEBU01@@Z + + + Name : ??4V8StackTrace@v8_inspector@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4V8StackTraceId@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + + + Name : ??4V8StackTraceId@v8_inspector@@QEAAAEAU01@AEBU01@@Z + + + Name : ??4Value@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4Value@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4Version@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4Version@internal@v8@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4Visitor@cppgc@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4WasmMemoryObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4WasmMemoryObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4WasmModuleObject@v8@@QEAAAEAV01@$$QEAV01@@Z + + + Name : ??4WasmModuleObject@v8@@QEAAAEAV01@AEBV01@@Z + + + Name : ??4WriteBarrier@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4WriteBarrier@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + + + Name : ??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + + + Name : ??A?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBAAEBV?$Local@VContext@v8@@@1@_K@Z + + + Name : ??A?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBAAEBV?$Local@VString@v8@@@1@_K@Z + + + Name : ??A?$MemorySpan@$$CB_K@v8@@QEBAAEB_K_K@Z + + + Name : ??A?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBAAEAV?$Handle@VMap@internal@v8@@@internal@1@_K@Z + + + Name : ??A?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBAAEAV?$MaybeLocal@VValue@v8@@@1@_K@Z + + + Name : ??A?$MemorySpan@_K@v8@@QEBAAEA_K_K@Z + + + Name : ??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z + + + Name : ??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z + + + Name : ??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z + + + Name : ??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z + + + Name : ??DUtf8Value@String@v8@@QEAAPEADXZ + + + Name : ??DUtf8Value@String@v8@@QEBAPEBDXZ + + + Name : ??DValue@String@v8@@QEAAPEAGXZ + + + Name : ??DValue@String@v8@@QEBAPEBGXZ + + + Name : ??RDeleteACHHandle@node@@QEBAXPEAUACHHandle@1@@Z + + + Name : ??_7ActivityControl@v8@@6B@ + + + Name : ??_7AllocationProfile@v8@@6B@ + + + Name : ??_7Allocator@ArrayBuffer@v8@@6B@ + + + Name : ??_7ArrayBufferAllocator@node@@6B@ + + + Name : ??_7AsyncResource@node@@6B@ + + + Name : ??_7Channel@V8Inspector@v8_inspector@@6B@ + + + Name : ??_7CodeEventHandler@v8@@6B@ + + + Name : ??_7CppHeap@v8@@6B@ + + + Name : ??_7Delegate@ValueDeserializer@v8@@6B@ + + + Name : ??_7Delegate@ValueSerializer@v8@@6B@ + + + Name : ??_7DiscardedSamplesDelegate@v8@@6B@ + + + Name : ??_7Domain@API@Schema@protocol@v8_inspector@@6B@ + + + Name : ??_7EmbedderGraph@v8@@6B@ + + + Name : ??_7EmbedderRootsHandler@v8@@6B@ + + + Name : ??_7Exported@protocol@v8_inspector@@6B@ + + + Name : ??_7Extension@v8@@6B@ + + + Name : ??_7ExternalOneByteStringResource@String@v8@@6B@ + + + Name : ??_7ExternalResourceVisitor@v8@@6B@ + + + Name : ??_7ExternalSourceStream@ScriptCompiler@v8@@6B@ + + + Name : ??_7ExternalStringResource@String@v8@@6B@ + + + Name : ??_7ExternalStringResourceBase@String@v8@@6B@ + + + Name : ??_7Heap@cppgc@@6B@ + + + Name : ??_7InitializationResult@node@@6B@ + + + Name : ??_7Inspectable@V8InspectorSession@v8_inspector@@6B@ + + + Name : ??_7IsolatePlatformDelegate@node@@6B@ + + + Name : ??_7MeasureMemoryDelegate@v8@@6B@ + + + Name : ??_7MicrotaskQueue@v8@@6B@ + + + Name : ??_7ModuleWrap@loader@node@@6B@ + + + Name : ??_7MultiIsolatePlatform@node@@6B@ + + + Name : ??_7NameProvider@cppgc@@6B@ + + + Name : ??_7OutputStream@v8@@6B@ + + + Name : ??_7PersistentHandleVisitor@v8@@6B@ + + + Name : ??_7Platform@cppgc@@6B@ + + + Name : ??_7Recorder@metrics@v8@@6B@ + + + Name : ??_7RemoteObject@API@Runtime@protocol@v8_inspector@@6B@ + + + Name : ??_7RootVisitor@internal@cppgc@@6B@ + + + Name : ??_7SearchMatch@API@Debugger@protocol@v8_inspector@@6B@ + + + Name : ??_7StackTrace@API@Runtime@protocol@v8_inspector@@6B@ + + + Name : ??_7StackTraceId@API@Runtime@protocol@v8_inspector@@6B@ + + + Name : ??_7StringBuffer@v8_inspector@@6B@ + + + Name : ??_7V8Inspector@v8_inspector@@6B@ + + + Name : ??_7V8InspectorClient@v8_inspector@@6B@ + + + Name : ??_7V8InspectorSession@v8_inspector@@6B@ + + + Name : ??_7V8StackTrace@v8_inspector@@6B@ + + + Name : ??_7Visitor@cppgc@@6B@ + + + Name : ??_FCpuProfilingOptions@v8@@QEAAXXZ + + + Name : ??_FSnapshotCreator@v8@@QEAAXXZ + + + Name : ??_UGlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z + + + Name : ??_UHandleScope@v8@@CAPEAX_K@Z + + + Name : ??_UTryCatch@v8@@CAPEAX_K@Z + + + Name : ??_VGlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z + + + Name : ??_VHandleScope@v8@@CAXPEAX_K@Z + + + Name : ??_VTryCatch@v8@@CAXPEAX_K@Z + + + Name : ?Abort@WasmStreaming@v8@@QEAAXV?$MaybeLocal@VValue@v8@@@2@@Z + + + Name : ?Add@Set@v8@@QEAA?AV?$MaybeLocal@VSet@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?AddBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + + + Name : ?AddBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z + + + Name : ?AddCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + + + Name : ?AddContext@SnapshotCreator@v8@@QEAA_KV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z + + + Name : ?AddData@SnapshotCreator@v8@@AEAA_KV?$Local@VContext@v8@@@2@_K@Z + + + Name : ?AddData@SnapshotCreator@v8@@AEAA_K_K@Z + + + Name : ?AddEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z + + + Name : ?AddEnvironmentCleanupHookInternal@node@@YAPEAUACHHandle@1@PEAVIsolate@v8@@P6AXPEAXP6AX1@Z1@Z1@Z + + + Name : ?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z + + + Name : ?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z + + + Name : ?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z + + + Name : ?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z + + + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnapi_module@@@Z + + + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnode_module@1@@Z + + + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6APEAUnapi_value__@@PEAUnapi_env__@@PEAU3@@ZH@Z + + + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6AXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@4@V?$Local@VContext@v8@@@4@PEAX@Z5@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalMark@metrics@v8@@@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalSweep@metrics@v8@@@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullCycle@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalMark@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalSweep@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionYoungCycle@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleCompiled@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleDecoded@23@VContextId@123@@Z + + + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleInstantiated@23@VContextId@123@@Z + + + Name : ?AddMessageListener@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z1@Z + + + Name : ?AddMessageListenerWithErrorLevel@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@ZH1@Z + + + Name : ?AddMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + + + Name : ?AddNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z0@Z + + + Name : ?AddThreadSafeEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModulesPerIsolate@23@@Z + + + Name : ?Address@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + + + Name : ?AdjustAmountOfExternalAllocatedMemory@Isolate@v8@@QEAA_J_J@Z + + + Name : ?AdoptSharedValueConveyor@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@$$QEAVSharedValueConveyor@3@@Z + + + Name : ?Allocate@Isolate@v8@@SAPEAV12@XZ + + + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KG@Z + + + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KGUCustomSpaceIndex@3@@Z + + + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@G@Z + + + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@GUCustomSpaceIndex@3@@Z + + + Name : ?AllocateEnvironmentThreadId@node@@YA?AUThreadId@1@XZ + + + Name : ?AllocateNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + + + Name : ?AllocateNode@PersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + + + Name : ?AllocationContaining@JitPageReference@ThreadIsolation@internal@v8@@QEAA?AU?$pair@_KAEAVJitAllocation@ThreadIsolation@internal@v8@@@__Cr@std@@_K@Z + + + Name : ?AllowCodeGenerationFromStrings@Context@v8@@QEAAX_N@Z + + + Name : ?AllowWasmCodeGenerationCallback@node@@YA_NV?$Local@VContext@v8@@@v8@@V?$Local@VString@v8@@@3@@Z + + + Name : ?Ambiguous@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?AnnotateStrongRetainer@api_internal@v8@@YAXPEA_KPEBD@Z + + + Name : ?AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z + + + Name : ?ArgumentCount@CFunction@v8@@QEBAIXZ + + + Name : ?ArgumentCount@CFunctionInfo@v8@@QEBAIXZ + + + Name : ?ArgumentInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@I@Z + + + Name : ?ArgumentInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@I@Z + + + Name : ?AsArray@Map@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ + + + Name : ?AsArray@Set@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ + + + Name : ?Assert@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?AssertLocked@PersistentRegionLock@internal@cppgc@@SAXXZ + + + Name : ?AsyncHooksGetExecutionAsyncId@node@@YANPEAVIsolate@v8@@@Z + + + Name : ?AsyncHooksGetTriggerAsyncId@node@@YANPEAVIsolate@v8@@@Z + + + Name : ?AtExit@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z + + + Name : ?AttachCppHeap@Isolate@v8@@QEAAXPEAVCppHeap@2@@Z + + + Name : ?AutomaticallyRestoreInitialHeapLimit@Isolate@v8@@QEAAXN@Z + + + Name : ?BindToCurrentContext@UnboundScript@v8@@QEAA?AV?$Local@VScript@v8@@@2@XZ + + + Name : ?BooleanValue@Value@v8@@QEBA_NPEAVIsolate@2@@Z + + + Name : ?Buffer@ArrayBufferView@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ + + + Name : ?Buffer@WasmMemoryObject@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ + + + Name : ?Build@?$CTypeInfoBuilder@H$S@v8@@SA?AVCTypeInfo@2@XZ + + + Name : ?Build@?$CTypeInfoBuilder@I$S@v8@@SA?AVCTypeInfo@2@XZ + + + Name : ?Build@?$CTypeInfoBuilder@M$S@v8@@SA?AVCTypeInfo@2@XZ + + + Name : ?Build@?$CTypeInfoBuilder@N$S@v8@@SA?AVCTypeInfo@2@XZ + + + Name : ?ByteLength@ArrayBuffer@v8@@QEBA_KXZ + + + Name : ?ByteLength@ArrayBufferView@v8@@QEAA_KXZ + + + Name : ?ByteLength@BackingStore@v8@@QEBA_KXZ + + + Name : ?ByteLength@SharedArrayBuffer@v8@@QEBA_KXZ + + + Name : ?ByteOffset@ArrayBufferView@v8@@QEAA_KXZ + + + Name : ?CSPViolation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?CacheResolvedWrapsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?CachedDataVersionTag@ScriptCompiler@v8@@SAIXZ + + + Name : ?CalculateAgeTableSizeForHeapSize@AgeTable@internal@cppgc@@SA_K_K@Z + + + Name : ?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV62@@Z + + + Name : ?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z + + + Name : ?CallAsConstructor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z + + + Name : ?CallAsFunction@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z + + + Name : ?CanBeRehashed@StartupData@v8@@QEBA_NXZ + + + Name : ?CanContinue@TryCatch@v8@@QEBA_NXZ + + + Name : ?CanLookupStartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA_N_K@Z + + + Name : ?CanMakeExternal@String@v8@@QEBA_NW4Encoding@12@@Z + + + Name : ?CancelTerminateExecution@Isolate@v8@@QEAAXXZ + + + Name : ?CaptureStackTrace@Exception@v8@@SA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z + + + Name : ?Cast@Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@ArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@ArrayBufferView@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@BigInt64Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@BigInt@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@BigIntObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@BigUint64Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Boolean@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@BooleanObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Context@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@DataView@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Date@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@DictionaryTemplate@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@External@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@FixedArray@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Float16Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Float32Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Float64Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Function@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@FunctionTemplate@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Int16Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Int32@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Int32Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Int8Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Integer@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Map@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Module@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@ModuleRequest@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Name@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Number@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@NumberObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Object@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@ObjectTemplate@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@PrimitiveArray@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Private@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Promise@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Proxy@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@RegExp@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Resolver@Promise@v8@@SAPEAV123@PEAVValue@3@@Z + + + Name : ?Cast@Set@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@SharedArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Signature@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@String@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@StringObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Symbol@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@SymbolObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@TypedArray@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Uint16Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Uint32@v8@@SAPEAV12@PEAVData@2@@Z + + + Name : ?Cast@Uint32Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Uint8Array@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@Uint8ClampedArray@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@WasmMemoryObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Cast@WasmModuleObject@v8@@SAPEAV12@PEAVValue@2@@Z + + + Name : ?Catch@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z + + + Name : ?CheckCachedDataInvariants@ExternalOneByteStringResource@String@v8@@AEBAXXZ + + + Name : ?CheckCachedDataInvariants@ExternalStringResource@String@v8@@AEBAXXZ + + + Name : ?CheckCast@Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@ArrayBuffer@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@ArrayBufferView@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@BigInt64Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@BigInt@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@BigIntObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@BigUint64Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Boolean@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@BooleanObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Context@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@DataView@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Date@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@DictionaryTemplate@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@External@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@FixedArray@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Float16Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Float32Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Float64Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Function@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@FunctionTemplate@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Int16Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Int32@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Int32Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Int8Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Integer@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Map@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Module@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@ModuleRequest@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Name@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Number@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@NumberObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Numeric@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Object@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@ObjectTemplate@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@PrimitiveArray@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Private@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Promise@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Proxy@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@RegExp@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Resolver@Promise@v8@@CAXPEAVValue@3@@Z + + + Name : ?CheckCast@Set@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@SharedArrayBuffer@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Signature@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@String@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@StringObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Symbol@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@SymbolObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@TypedArray@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Uint16Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Uint32@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@Uint32Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Uint8Array@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Uint8ClampedArray@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@Value@v8@@CAXPEAVData@2@@Z + + + Name : ?CheckCast@WasmMemoryObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckCast@WasmModuleObject@v8@@CAXPEAVValue@2@@Z + + + Name : ?CheckInitializedImpl@Internals@internal@v8@@SAXPEAVIsolate@3@@Z + + + Name : ?CheckMemoryIsZeroed@GCInfoTable@internal@cppgc@@AEAAXPEA_K_K@Z + + + Name : ?CheckOneByte@ValueView@String@v8@@AEBAX_N@Z + + + Name : ?CheckParams@WriteBarrier@internal@cppgc@@SAXW4Type@123@AEBUParams@123@@Z + + + Name : ?CheckPointerImpl@SameThreadEnabledCheckingPolicyBase@internal@cppgc@@IEAAXPEBX_N1@Z + + + Name : ?CheckValue@TracedReferenceBase@v8@@IEBAXXZ + + + Name : ?CheckYoungGenerationConsistency@HeapLayout@internal@v8@@CAXPEBVMemoryChunk@23@@Z + + + Name : ?Clear@Map@v8@@QEAAXXZ + + + Name : ?Clear@Set@v8@@QEAAXXZ + + + Name : ?ClearAllUsedNodes@CrossThreadPersistentRegion@internal@cppgc@@QEAAXXZ + + + Name : ?ClearAllUsedNodes@PersistentRegionBase@internal@cppgc@@QEAAXXZ + + + Name : ?ClearCachesForTesting@Isolate@v8@@QEAAXXZ + + + Name : ?ClearKeptObjects@Isolate@v8@@QEAAXXZ + + + Name : ?ClearObjectIds@HeapProfiler@v8@@QEAAXXZ + + + Name : ?ClearWeak@api_internal@v8@@YAPEAXPEA_K@Z + + + Name : ?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + + + Name : ?CollectCustomSpaceStatisticsAtLastGC@CppHeap@v8@@QEAAXV?$vector@UCustomSpaceIndex@cppgc@@V?$allocator@UCustomSpaceIndex@cppgc@@@__Cr@std@@@__Cr@std@@V?$unique_ptr@VCustomSpaceStatisticsReceiver@v8@@U?$default_delete@VCustomSpaceStatisticsReceiver@v8@@@__Cr@std@@@45@@Z + + + Name : ?CollectGarbageForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z + + + Name : ?CollectGarbageInYoungGenerationForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z + + + Name : ?CollectSample@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z + + + Name : ?CollectStatistics@CppHeap@v8@@QEAA?AUHeapStatistics@cppgc@@W4DetailLevel@34@@Z + + + Name : ?ColumnOffset@ScriptOrigin@v8@@QEBAHXZ + + + Name : ?Commit@CompilationDependencies@compiler@internal@v8@@QEAA_NV?$Handle@VCode@internal@v8@@@34@@Z + + + Name : ?CompatibilityCheck@CachedData@ScriptCompiler@v8@@QEAA?AW4CompatibilityCheckResult@123@PEAVIsolate@3@@Z + + + Name : ?Compile@Script@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@PEAVScriptOrigin@2@@Z + + + Name : ?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + + + Name : ?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z + + + Name : ?Compile@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBE@2@@Z + + + Name : ?CompileFunction@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@_KQEAV?$Local@VString@v8@@@2@2QEAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@@Z + + + Name : ?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + + + Name : ?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z + + + Name : ?CompileOptionsIsValid@ScriptCompiler@v8@@SA_NW4CompileOptions@12@@Z + + + Name : ?CompileUnboundInternal@ScriptCompiler@v8@@CA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + + + Name : ?CompileUnboundScript@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + + + Name : ?Concat@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@V32@1@Z + + + Name : ?ConfigureDefaults@ResourceConstraints@v8@@QEAAX_K0@Z + + + Name : ?ConfigureDefaultsFromHeapSize@ResourceConstraints@v8@@QEAAX_K0@Z + + + Name : ?ContainsOnlyOneByte@String@v8@@QEBA_NXZ + + + Name : ?ContextDisposedNotification@Isolate@v8@@QEAAH_N@Z + + + Name : ?ConvertToJSGlobalProxyIfNecessary@api_internal@v8@@YA_K_K@Z + + + Name : ?Copy@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEBD_K@Z + + + Name : ?CopyCodePages@Isolate@v8@@QEAA_K_KPEAUMemoryRange@2@@Z + + + Name : ?CopyContents@ArrayBufferView@v8@@QEAA_KPEAX_K@Z + + + Name : ?CopyGlobalReference@api_internal@v8@@YAPEA_KPEA_K@Z + + + Name : ?CopyNameForHeapSnapshot@HeapProfiler@v8@@QEAAPEBDPEBD@Z + + + Name : ?CopyTracedReference@internal@v8@@YAXPEBQEB_KPEAPEA_K@Z + + + Name : ?Create@ArrayBufferAllocator@node@@SA?AV?$unique_ptr@VArrayBufferAllocator@node@@U?$default_delete@VArrayBufferAllocator@node@@@__Cr@std@@@__Cr@std@@_N@Z + + + Name : ?Create@CppHeap@v8@@SA?AV?$unique_ptr@VCppHeap@v8@@U?$default_delete@VCppHeap@v8@@@__Cr@std@@@__Cr@std@@PEAVPlatform@2@AEBUCppHeapCreateParams@2@@Z + + + Name : ?Create@Heap@cppgc@@SA?AV?$unique_ptr@VHeap@cppgc@@U?$default_delete@VHeap@cppgc@@@__Cr@std@@@__Cr@std@@V?$shared_ptr@VPlatform@cppgc@@@45@UHeapOptions@12@@Z + + + Name : ?Create@MultiIsolatePlatform@node@@SA?AV?$unique_ptr@VMultiIsolatePlatform@node@@U?$default_delete@VMultiIsolatePlatform@node@@@__Cr@std@@@__Cr@std@@HPEAVTracingController@v8@@PEAVPageAllocator@7@@Z + + + Name : ?CreateAgent@node@@YAPEAVAgent@tracing@1@XZ + + + Name : ?CreateArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@XZ + + + Name : ?CreateBlob@SnapshotCreator@v8@@QEAA?AVStartupData@2@W4FunctionCodeHandling@12@@Z + + + Name : ?CreateCachedData@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundModuleScript@v8@@@2@@Z + + + Name : ?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundScript@v8@@@2@@Z + + + Name : ?CreateCodeCacheForFunction@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VFunction@v8@@@2@@Z + + + Name : ?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z + + + Name : ?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?CreateEnvironment@node@@YAPEAVEnvironment@1@PEAVIsolateData@1@V?$Local@VContext@v8@@@v8@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@2W4Flags@EnvironmentFlags@1@UThreadId@1@V?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@78@@Z + + + Name : ?CreateForSnapshotting@CommonEnvironmentSetup@node@@SA?AV?$unique_ptr@VCommonEnvironmentSetup@node@@U?$default_delete@VCommonEnvironmentSetup@node@@@__Cr@std@@@__Cr@std@@PEAVMultiIsolatePlatform@2@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@45@AEBV745@2AEBUSnapshotConfig@2@@Z + + + Name : ?CreateHandle@HandleScope@v8@@KAPEA_KPEAVIsolate@internal@2@_K@Z + + + Name : ?CreateIsolateData@node@@YAPEAVIsolateData@1@PEAVIsolate@v8@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEAVArrayBufferAllocator@1@PEBVEmbedderSnapshotData@1@@Z + + + Name : ?CreateMessage@Exception@v8@@SA?AV?$Local@VMessage@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?CreatePerContextProperties@ModuleWrap@loader@node@@SAXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@5@V?$Local@VContext@v8@@@5@PEAX@Z + + + Name : ?CreatePerIsolateProperties@ModuleWrap@loader@node@@SAXPEAVIsolateData@3@V?$Local@VObjectTemplate@v8@@@v8@@@Z + + + Name : ?CreatePlatform@node@@YAPEAVMultiIsolatePlatform@1@HPEAVTracingController@v8@@@Z + + + Name : ?CreateSnapshot@CommonEnvironmentSetup@node@@QEAA?AV?$unique_ptr@$$CBVEmbedderSnapshotData@node@@UDeleteSnapshotData@12@@__Cr@std@@XZ + + + Name : ?CreateSyntheticModule@Module@v8@@SA?AV?$Local@VModule@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@AEBV?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@2@P6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V32@@Z@Z + + + Name : ?Current@SourceLocation@v8@@SA?AV12@PEBD0_K@Z + + + Name : ?CurrentScriptNameOrSourceURL@StackTrace@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?CurrentStackTrace@StackTrace@v8@@SA?AV?$Local@VStackTrace@v8@@@2@PEAVIsolate@2@HW4StackTraceOptions@12@@Z + + + Name : ?DCheckImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z + + + Name : ?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?Data@ArrayBuffer@v8@@QEBAPEAXXZ + + + Name : ?Data@BackingStore@v8@@QEBAPEAXXZ + + + Name : ?Data@Buffer@node@@YAPEADV?$Local@VObject@v8@@@v8@@@Z + + + Name : ?Data@Buffer@node@@YAPEADV?$Local@VValue@v8@@@v8@@@Z + + + Name : ?Data@SharedArrayBuffer@v8@@QEBAPEAXXZ + + + Name : ?DateTimeConfigurationChangeNotification@Isolate@v8@@QEAAXW4TimeZoneDetection@12@@Z + + + Name : ?DebugCommand@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?DecodeBytes@node@@YA_JPEAVIsolate@v8@@V?$Local@VValue@v8@@@3@W4encoding@1@@Z + + + Name : ?DecodeWrite@node@@YA_JPEAVIsolate@v8@@PEAD_KV?$Local@VValue@v8@@@3@W4encoding@1@@Z + + + Name : ?DeepFreeze@Context@v8@@QEAA?AV?$Maybe@X@2@PEAVDeepFreezeDelegate@12@@Z + + + Name : ?Default@MeasureMemoryDelegate@v8@@SA?AV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@W4MeasureMemoryMode@2@@Z + + + Name : ?DefaultProcessExitHandler@node@@YAXPEAVEnvironment@1@H@Z + + + Name : ?DeferTraceToMutatorThreadIfConcurrent@Visitor@cppgc@@UEAA_NPEBXP6AXPEAV12@0@Z_K@Z + + + Name : ?DefineOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@W4PropertyAttribute@2@@Z + + + Name : ?DefineProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@AEAVPropertyDescriptor@2@@Z + + + Name : ?Delete@CpuProfile@v8@@QEAAXXZ + + + Name : ?Delete@HeapSnapshot@v8@@QEAAXXZ + + + Name : ?Delete@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + + + Name : ?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Delete@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?DeleteAllHeapSnapshots@HeapProfiler@v8@@QEAAXXZ + + + Name : ?DeletePrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + + + Name : ?DependOnArrayBufferDetachingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnArrayIteratorProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnArraySpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnConsistentJSFunctionView@CompilationDependencies@compiler@internal@v8@@QEAAXVJSFunctionRef@234@@Z + + + Name : ?DependOnConstantInDictionaryPrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@VNameRef@234@VObjectRef@234@W4PropertyKind@34@@Z + + + Name : ?DependOnElementsKind@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z + + + Name : ?DependOnElementsKinds@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z + + + Name : ?DependOnFieldConstness@CompilationDependencies@compiler@internal@v8@@QEAA?AW4PropertyConstness@34@VMapRef@234@0VInternalIndex@34@@Z + + + Name : ?DependOnGlobalProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVPropertyCellRef@234@@Z + + + Name : ?DependOnInitialMap@CompilationDependencies@compiler@internal@v8@@QEAA?AVMapRef@234@VJSFunctionRef@234@@Z + + + Name : ?DependOnInitialMapInstanceSizePrediction@CompilationDependencies@compiler@internal@v8@@QEAA?AVSlackTrackingPrediction@234@VJSFunctionRef@234@@Z + + + Name : ?DependOnMegaDOMProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnNoElementsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnNoProfilingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnNoSlackTrackingChange@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z + + + Name : ?DependOnNoUndetectableObjectsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnObjectSlotValue@CompilationDependencies@compiler@internal@v8@@QEAAXVHeapObjectRef@234@HVObjectRef@234@@Z + + + Name : ?DependOnOwnConstantDataProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VObjectRef@234@@Z + + + Name : ?DependOnOwnConstantDictionaryProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VInternalIndex@34@VObjectRef@234@@Z + + + Name : ?DependOnOwnConstantDoubleProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VFloat64@34@@Z + + + Name : ?DependOnOwnConstantElement@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@IVObjectRef@234@@Z + + + Name : ?DependOnPretenureMode@CompilationDependencies@compiler@internal@v8@@QEAA?AW4AllocationType@34@VAllocationSiteRef@234@@Z + + + Name : ?DependOnPromiseHookProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnPromiseSpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnPromiseThenProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?DependOnProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NVPropertyCellRef@234@@Z + + + Name : ?DependOnPrototypeProperty@CompilationDependencies@compiler@internal@v8@@QEAA?AVHeapObjectRef@234@VJSFunctionRef@234@@Z + + + Name : ?DependOnScriptContextSlotProperty@CompilationDependencies@compiler@internal@v8@@QEAA_NVContextRef@234@_KW4Property@ContextSidePropertyCell@34@PEAVJSHeapBroker@234@@Z + + + Name : ?DependOnStableMap@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z + + + Name : ?DependOnStablePrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z + + + Name : ?DependOnStablePrototypeChains@CompilationDependencies@compiler@internal@v8@@QEAAXAEBV?$ZoneVector@VMapRef@compiler@internal@v8@@@34@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z + + + Name : ?DependOnStringWrapperToPrimitiveProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + + + Name : ?Dequeue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAPEAVTurbofanCompilationJob@23@XZ + + + Name : ?Description@Symbol@v8@@QEBA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?Detach@ArrayBuffer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Detach@ArrayBuffer@v8@@QEAAXXZ + + + Name : ?DetachCppHeap@Isolate@v8@@QEAAXXZ + + + Name : ?DetachGlobal@Context@v8@@QEAAXXZ + + + Name : ?DijkstraMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z + + + Name : ?DijkstraMarkingBarrierRange@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z + + + Name : ?DijkstraMarkingBarrierRangeSlow@WriteBarrier@internal@cppgc@@CAXAEAVHeapHandle@3@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z + + + Name : ?DijkstraMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z + + + Name : ?DijkstraMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z + + + Name : ?Disable@CodeEventHandler@v8@@QEAAXXZ + + + Name : ?DiscardThreadSpecificMetadata@Isolate@v8@@QEAAXXZ + + + Name : ?Dispose@CpuProfiler@v8@@QEAAXXZ + + + Name : ?Dispose@ExternalStringResourceBase@String@v8@@MEAAXXZ + + + Name : ?Dispose@Isolate@v8@@QEAAXXZ + + + Name : ?Dispose@V8@v8@@SA_NXZ + + + Name : ?DisposeGlobal@api_internal@v8@@YAXPEA_K@Z + + + Name : ?DisposePlatform@V8@v8@@SAXXZ + + + Name : ?DisposeTracedReference@internal@v8@@YAXPEA_K@Z + + + Name : ?DumpAndResetStats@Isolate@v8@@QEAAXXZ + + + Name : ?DumpAsyncTaskStacksStateForTest@v8_inspector@@YAXPEAVV8Inspector@1@@Z + + + Name : ?EmitAsyncDestroy@node@@YAXPEAVEnvironment@1@Uasync_context@1@@Z + + + Name : ?EmitAsyncDestroy@node@@YAXPEAVIsolate@v8@@Uasync_context@1@@Z + + + Name : ?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@PEBDN@Z + + + Name : ?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@V?$Local@VString@v8@@@4@N@Z + + + Name : ?EmitBeforeExit@node@@YAXPEAVEnvironment@1@@Z + + + Name : ?EmitExit@node@@YAHPEAVEnvironment@1@@Z + + + Name : ?EmitProcessBeforeExit@node@@YA?AV?$Maybe@_N@v8@@PEAVEnvironment@1@@Z + + + Name : ?EmitProcessExit@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z + + + Name : ?Empty@JitPageReference@ThreadIsolation@internal@v8@@QEBA_NXZ + + + Name : ?Empty@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?EmptyDeleter@BackingStore@v8@@SAXPEAX_K0@Z + + + Name : ?Enable@CodeEventHandler@v8@@QEAAXXZ + + + Name : ?EnableDetachedGarbageCollectionsForTesting@CppHeap@v8@@QEAAXXZ + + + Name : ?EnableWebAssemblyTrapHandler@V8@v8@@SA_N_N@Z + + + Name : ?Enabled@ThreadIsolation@internal@v8@@SA_NXZ + + + Name : ?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBD_KW4encoding@1@@Z + + + Name : ?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBG_K@Z + + + Name : ?End@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + + + Name : ?Enqueue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVTurbofanCompilationJob@23@@Z + + + Name : ?EnqueueMicrotask@Isolate@v8@@QEAAXP6AXPEAX@Z0@Z + + + Name : ?EnqueueMicrotask@Isolate@v8@@QEAAXV?$Local@VFunction@v8@@@2@@Z + + + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@Z@Z + + + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z + + + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@Z@Z + + + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z + + + Name : ?Enter@Context@v8@@QEAAXXZ + + + Name : ?Enter@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + + + Name : ?Enter@Isolate@v8@@QEAAXXZ + + + Name : ?Enter@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + + + Name : ?Equals@Value@v8@@QEBA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?ErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z + + + Name : ?Error@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?ErrorLevel@Message@v8@@QEBAHXZ + + + Name : ?EscapeSlot@EscapableHandleScopeBase@v8@@IEAAPEA_KPEA_K@Z + + + Name : ?Eternalize@api_internal@v8@@YAPEA_KPEAVIsolate@2@PEAVValue@2@@Z + + + Name : ?Evaluate@Module@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?Evaluate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?EvaluateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?Exception@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?Exception@TryCatch@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?Exec@RegExp@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?Exit@Context@v8@@QEAAXXZ + + + Name : ?Exit@Isolate@v8@@QEAAXXZ + + + Name : ?Expand@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z + + + Name : ?Experimental_IsNopFunction@Function@v8@@QEBA_NXZ + + + Name : ?Fatal@internal@cppgc@@YAXAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@AEBVSourceLocation@v8@@@Z + + + Name : ?FatalException@node@@YAXPEAVIsolate@v8@@AEBVTryCatch@3@@Z + + + Name : ?FatalImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z + + + Name : ?FieldRepresentationDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VRepresentation@34@@Z + + + Name : ?FieldTypeDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VObjectRef@234@@Z + + + Name : ?FileName@SourceLocation@v8@@QEBAPEBDXZ + + + Name : ?FinalizeGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXW4EmbedderStackState@3@@Z + + + Name : ?FindInstanceInPrototypeChain@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + + + Name : ?FindKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAPEAVDictionaryValue@protocol@2@V?$Local@VValue@v8@@@v8@@@Z + + + Name : ?FindObjectById@HeapProfiler@v8@@QEAA?AV?$Local@VValue@v8@@@2@I@Z + + + Name : ?Finish@WasmStreaming@v8@@QEAAX_N@Z + + + Name : ?Flush@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVIsolate@23@@Z + + + Name : ?For@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?ForApi@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?ForApi@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?ForceCompactionForNextGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ + + + Name : ?ForceGarbageCollectionSlow@Heap@cppgc@@QEAAXPEBD0W4EmbedderStackState@2@@Z + + + Name : ?FreeArrayBufferAllocator@node@@YAXPEAVArrayBufferAllocator@1@@Z + + + Name : ?FreeBufferMemory@Delegate@ValueSerializer@v8@@UEAAXPEAX@Z + + + Name : ?FreeEnvironment@node@@YAXPEAVEnvironment@1@@Z + + + Name : ?FreeIsolateData@node@@YAXPEAVIsolateData@1@@Z + + + Name : ?FreeNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z + + + Name : ?FreeNode@PersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z + + + Name : ?FreeNode@PersistentRegionBase@internal@cppgc@@IEAAXPEAVPersistentNode@23@@Z + + + Name : ?FreePlatform@node@@YAXPEAVMultiIsolatePlatform@1@@Z + + + Name : ?FreeUnreferencedObject@ExplicitManagementImpl@internal@cppgc@@CAXAEAVHeapHandle@3@PEAX@Z + + + Name : ?FromCompiledModule@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@AEBVCompiledWasmModule@2@@Z + + + Name : ?FromJustIsNothing@api_internal@v8@@YAXXZ + + + Name : ?FromSnapshot@Context@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@_KUDeserializeInternalFieldsCallback@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VValue@v8@@@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z + + + Name : ?FullIsFalse@Value@v8@@AEBA_NXZ + + + Name : ?FullIsNull@Value@v8@@AEBA_NXZ + + + Name : ?FullIsString@Value@v8@@AEBA_NXZ + + + Name : ?FullIsTrue@Value@v8@@AEBA_NXZ + + + Name : ?FullIsUndefined@Value@v8@@AEBA_NXZ + + + Name : ?Function@SourceLocation@v8@@QEBAPEBDXZ + + + Name : ?FunctionProtoToString@Function@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GCInfoFromIndex@GCInfoTable@internal@cppgc@@QEBAAEBUGCInfo@23@G@Z + + + Name : ?GCInfoFromIndex@GlobalGCInfoTable@internal@cppgc@@SAAEBUGCInfo@23@G@Z + + + Name : ?GenerationalBarrierForSourceObjectSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@PEBXPEAVHeapHandle@3@@Z + + + Name : ?GenerationalBarrierForUncompressedSlotSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z + + + Name : ?GenerationalBarrierSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z + + + Name : ?Get@CageBaseGlobal@internal@cppgc@@SA_KXZ + + + Name : ?Get@FixedArray@v8@@QEBA?AV?$Local@VData@v8@@@2@V?$Local@VContext@v8@@@2@H@Z + + + Name : ?Get@GlobalGCInfoTable@internal@cppgc@@SAAEBVGCInfoTable@23@XZ + + + Name : ?Get@LongTaskStats@metrics@v8@@SA?AU123@PEAVIsolate@3@@Z + + + Name : ?Get@Map@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Get@Message@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@I@Z + + + Name : ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$MaybeLocal@VObject@v8@@@2@@Z + + + Name : ?Get@PrimitiveArray@v8@@QEAA?AV?$Local@VPrimitive@v8@@@2@PEAVIsolate@2@H@Z + + + Name : ?GetAddress@CFunction@v8@@QEBAPEBXXZ + + + Name : ?GetAge@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K@Z + + + Name : ?GetAgeForRange@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K0@Z + + + Name : ?GetAgeTableSize@CagedHeapBase@internal@cppgc@@SA_KXZ + + + Name : ?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXH@Z + + + Name : ?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXPEAVIsolate@2@H@Z + + + Name : ?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXH@Z + + + Name : ?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z + + + Name : ?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXH@Z + + + Name : ?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z + + + Name : ?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$BasicTracedReference@VObject@v8@@@2@H@Z + + + Name : ?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$PersistentBase@VObject@v8@@@2@H@Z + + + Name : ?GetAllocationHandle@CppHeap@v8@@QEAAAEAVAllocationHandle@cppgc@@XZ + + + Name : ?GetAllocationHandle@Heap@cppgc@@QEAAAEAVAllocationHandle@2@XZ + + + Name : ?GetAllocationProfile@HeapProfiler@v8@@QEAAPEAVAllocationProfile@2@XZ + + + Name : ?GetAnonymousMainPath@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + + + Name : ?GetArrayBufferAllocator@Isolate@v8@@QEAAPEAVAllocator@ArrayBuffer@2@XZ + + + Name : ?GetArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@PEAVIsolateData@1@@Z + + + Name : ?GetAsyncIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetBackingStore@ArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ + + + Name : ?GetBackingStore@SharedArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ + + + Name : ?GetBailoutReason@CpuProfileNode@v8@@QEBAPEBDXZ + + + Name : ?GetBase@CagedHeapBase@internal@cppgc@@SA_KXZ + + + Name : ?GetBoundFunction@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetBuild@Version@internal@v8@@SAHXZ + + + Name : ?GetChild@CpuProfileNode@v8@@QEBAPEBV12@H@Z + + + Name : ?GetChild@HeapGraphNode@v8@@QEBAPEBVHeapGraphEdge@2@H@Z + + + Name : ?GetChildrenCount@CpuProfileNode@v8@@QEBAHXZ + + + Name : ?GetChildrenCount@HeapGraphNode@v8@@QEBAHXZ + + + Name : ?GetChunkSize@OutputStream@v8@@UEAAHXZ + + + Name : ?GetCodeEventTypeName@CodeEvent@v8@@SAPEBDW4CodeEventType@2@@Z + + + Name : ?GetCodeRange@Isolate@v8@@QEAAXPEAPEAXPEA_K@Z + + + Name : ?GetCodeSize@CodeEvent@v8@@QEAA_KXZ + + + Name : ?GetCodeStartAddress@CodeEvent@v8@@QEAA_KXZ + + + Name : ?GetCodeType@CodeEvent@v8@@QEAA?AW4CodeEventType@2@XZ + + + Name : ?GetColumn@StackFrame@v8@@QEBAHXZ + + + Name : ?GetColumnNumber@CpuProfileNode@v8@@QEBAHXZ + + + Name : ?GetColumnNumber@Location@v8@@QEAAHXZ + + + Name : ?GetColumnNumber@UnboundScript@v8@@QEAAHH@Z + + + Name : ?GetComment@CodeEvent@v8@@QEAAPEBDXZ + + + Name : ?GetCompileHints@CompileHintsCollector@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@PEAVIsolate@2@@Z + + + Name : ?GetCompileHintsCollector@Script@v8@@QEBA?AV?$Local@VCompileHintsCollector@v8@@@2@XZ + + + Name : ?GetCompiledModule@WasmModuleObject@v8@@QEAA?AVCompiledWasmModule@2@XZ + + + Name : ?GetConstructorName@Object@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetContents@ArrayBufferView@v8@@QEAA?AV?$MemorySpan@E@2@V32@@Z + + + Name : ?GetContext@Recorder@metrics@v8@@SA?AV?$MaybeLocal@VContext@v8@@@3@PEAVIsolate@3@VContextId@123@@Z + + + Name : ?GetContextId@Recorder@metrics@v8@@SA?AVContextId@123@V?$Local@VContext@v8@@@3@@Z + + + Name : ?GetContinuationPreservedEmbedderData@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetCppHeap@Isolate@v8@@QEBAPEAVCppHeap@2@XZ + + + Name : ?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@XZ + + + Name : ?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z + + + Name : ?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z + + + Name : ?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + + + Name : ?GetCurrent@Isolate@v8@@SAPEAV12@XZ + + + Name : ?GetCurrentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + + + Name : ?GetCurrentDepth@MicrotasksScope@v8@@SAHPEAVIsolate@2@@Z + + + Name : ?GetCurrentEnvironment@node@@YAPEAVEnvironment@1@V?$Local@VContext@v8@@@v8@@@Z + + + Name : ?GetCurrentEventLoop@node@@YAPEAUuv_loop_s@@PEAVIsolate@v8@@@Z + + + Name : ?GetCurrentHostDefinedOptions@Isolate@v8@@QEAA?AV?$MaybeLocal@VData@v8@@@2@XZ + + + Name : ?GetData@Isolate@v8@@QEAAPEAXI@Z + + + Name : ?GetDataFromSnapshotOnce@Context@v8@@AEAAPEA_K_K@Z + + + Name : ?GetDataFromSnapshotOnce@Isolate@v8@@AEAAPEA_K_K@Z + + + Name : ?GetDebugName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetDefaultLocale@Isolate@v8@@QEAA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + + + Name : ?GetDeoptInfos@CpuProfileNode@v8@@QEBAAEBV?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@XZ + + + Name : ?GetDetachedJSWrapperObjects@HeapProfiler@v8@@QEAA?AV?$vector@V?$Local@VValue@v8@@@v8@@V?$allocator@V?$Local@VValue@v8@@@v8@@@__Cr@std@@@__Cr@std@@XZ + + + Name : ?GetEmbeddedCodeRange@Isolate@v8@@QEAAXPEAPEBXPEA_K@Z + + + Name : ?GetEmbedder@Version@internal@v8@@SAPEBDXZ + + + Name : ?GetEmbedderData@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@H@Z + + + Name : ?GetEndColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetEndColumn@Message@v8@@QEBAHXZ + + + Name : ?GetEndPosition@Message@v8@@QEBAHXZ + + + Name : ?GetEndTime@CpuProfile@v8@@QEBA_JXZ + + + Name : ?GetEnteredOrMicrotaskContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + + + Name : ?GetEnvironmentIsolateData@node@@YAPEAVIsolateData@1@PEAVEnvironment@1@@Z + + + Name : ?GetError@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?GetException@Module@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetExternalOneByteStringResource@String@v8@@QEBAPEBVExternalOneByteStringResource@12@XZ + + + Name : ?GetExternalStringResource@String@v8@@QEBAPEAVExternalStringResource@12@XZ + + + Name : ?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAVIsolate@2@PEAW4Encoding@12@@Z + + + Name : ?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z + + + Name : ?GetExternalStringResourceBaseSlow@String@v8@@AEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z + + + Name : ?GetExternalStringResourceSlow@String@v8@@AEBAPEAVExternalStringResource@12@XZ + + + Name : ?GetExtrasBindingObject@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + + + Name : ?GetFlags@RegExp@v8@@QEBA?AW4Flags@12@XZ + + + Name : ?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@W4TaskPriority@v8@@@Z + + + Name : ?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@XZ + + + Name : ?GetFrame@StackTrace@v8@@QEBA?AV?$Local@VStackFrame@v8@@@2@PEAVIsolate@2@I@Z + + + Name : ?GetFrameCount@StackTrace@v8@@QEBAHXZ + + + Name : ?GetFromModule@ModuleWrap@loader@node@@SAPEAV123@PEAVEnvironment@3@V?$Local@VModule@v8@@@v8@@@Z + + + Name : ?GetFromNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ + + + Name : ?GetFunction@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetFunctionName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetFunctionName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetFunctionName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetFunctionNameStr@CpuProfileNode@v8@@QEBAPEBDXZ + + + Name : ?GetFunctionTemplateData@api_internal@v8@@YA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VData@v8@@@2@@Z + + + Name : ?GetHandler@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetHasInstance@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetHeapCodeAndMetadataStatistics@Isolate@v8@@QEAA_NPEAVHeapCodeStatistics@2@@Z + + + Name : ?GetHeapHandle@CppHeap@v8@@QEAAAEAVHeapHandle@cppgc@@XZ + + + Name : ?GetHeapHandle@Heap@cppgc@@QEAAAEAVHeapHandle@2@XZ + + + Name : ?GetHeapObjectStatisticsAtLastGC@Isolate@v8@@QEAA_NPEAVHeapObjectStatistics@2@_K@Z + + + Name : ?GetHeapProfiler@Isolate@v8@@QEAAPEAVHeapProfiler@2@XZ + + + Name : ?GetHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@H@Z + + + Name : ?GetHeapSpaceStatistics@Isolate@v8@@QEAA_NPEAVHeapSpaceStatistics@2@_K@Z + + + Name : ?GetHeapStatistics@Isolate@v8@@QEAAXPEAVHeapStatistics@2@@Z + + + Name : ?GetHeapStats@HeapProfiler@v8@@QEAAIPEAVOutputStream@2@PEA_J@Z + + + Name : ?GetHitCount@CpuProfileNode@v8@@QEBAIXZ + + + Name : ?GetHitLineCount@CpuProfileNode@v8@@QEBAIXZ + + + Name : ?GetHostDefinedOptions@ScriptOrigin@v8@@QEBA?AV?$Local@VData@v8@@@2@XZ + + + Name : ?GetID@StackTrace@v8@@QEBAHXZ + + + Name : ?GetId@DiscardedSamplesDelegate@v8@@QEBAIXZ + + + Name : ?GetId@HeapGraphNode@v8@@QEBAIXZ + + + Name : ?GetId@UnboundScript@v8@@QEBAHXZ + + + Name : ?GetIdentityHash@Module@v8@@QEBAHXZ + + + Name : ?GetIdentityHash@Name@v8@@QEAAHXZ + + + Name : ?GetIdentityHash@Object@v8@@QEAAHXZ + + + Name : ?GetImportAssertions@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + + + Name : ?GetImportAttributes@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + + + Name : ?GetIncumbentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + + + Name : ?GetInferredName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD2@Z + + + Name : ?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD@Z + + + Name : ?GetInt64Representation@CFunction@v8@@QEBA?AW4Int64Representation@CFunctionInfo@2@XZ + + + Name : ?GetInt64Representation@CFunctionInfo@v8@@QEBA?AW4Int64Representation@12@XZ + + + Name : ?GetInternalField@Object@v8@@QEAA?AV?$Local@VData@v8@@@2@H@Z + + + Name : ?GetIsConcatSpreadable@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetIsolate@Context@v8@@QEAAPEAVIsolate@2@XZ + + + Name : ?GetIsolate@HandleScope@v8@@QEBAPEAVIsolate@2@XZ + + + Name : ?GetIsolate@Message@v8@@QEBAPEAVIsolate@2@XZ + + + Name : ?GetIsolate@Object@v8@@QEAAPEAVIsolate@2@XZ + + + Name : ?GetIsolate@Object@v8@@SAPEAVIsolate@2@AEBV?$TracedReference@VObject@v8@@@2@@Z + + + Name : ?GetIsolate@SnapshotCreator@v8@@QEAAPEAVIsolate@2@XZ + + + Name : ?GetIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetJSEntryStubs@Isolate@v8@@QEAA?AUJSEntryStubs@2@XZ + + + Name : ?GetLineNumber@CpuProfileNode@v8@@QEBAHXZ + + + Name : ?GetLineNumber@Location@v8@@QEAAHXZ + + + Name : ?GetLineNumber@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetLineNumber@StackFrame@v8@@QEBAHXZ + + + Name : ?GetLineNumber@UnboundScript@v8@@QEAAHH@Z + + + Name : ?GetLineTicks@CpuProfileNode@v8@@QEBA_NPEAULineTick@12@I@Z + + + Name : ?GetLocation@StackFrame@v8@@QEBA?AVLocation@2@XZ + + + Name : ?GetMainContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVEnvironment@1@@Z + + + Name : ?GetMajor@Version@internal@v8@@SAHXZ + + + Name : ?GetMatch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetMaxSnapshotJSObjectId@HeapSnapshot@v8@@QEBAIXZ + + + Name : ?GetMicrotaskQueue@Context@v8@@QEAAPEAVMicrotaskQueue@2@XZ + + + Name : ?GetMicrotasksPolicy@Isolate@v8@@QEBA?AW4MicrotasksPolicy@2@XZ + + + Name : ?GetMinor@Version@internal@v8@@SAHXZ + + + Name : ?GetModuleNamespace@Module@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetModuleRequests@Module@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + + + Name : ?GetModuleRequestsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVEnvironment@1@@Z + + + Name : ?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVIsolateData@1@@Z + + + Name : ?GetMutable@GlobalGCInfoTable@internal@cppgc@@SAAEAVGCInfoTable@23@XZ + + + Name : ?GetName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetName@HeapGraphEdge@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetName@HeapGraphNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetNameFromTypeSignature@NameTraitBase@internal@cppgc@@KA?AUHeapObjectName@23@PEBD@Z + + + Name : ?GetNamespace@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?GetNamespaceSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?GetNativeFunctionTemplate@Extension@v8@@UEAA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?GetNode@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@H@Z + + + Name : ?GetNodeById@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@I@Z + + + Name : ?GetNodeId@CpuProfileNode@v8@@QEBAIXZ + + + Name : ?GetNodeReport@node@@YAXPEAVEnvironment@1@PEBD1V?$Local@VValue@v8@@@v8@@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + + + Name : ?GetNodeReport@node@@YAXPEAVIsolate@v8@@PEBD1V?$Local@VValue@v8@@@3@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + + + Name : ?GetNodesCount@HeapSnapshot@v8@@QEBAHXZ + + + Name : ?GetNumberOfDataSlots@Isolate@v8@@SAIXZ + + + Name : ?GetNumberOfEmbedderDataFields@Context@v8@@QEAAIXZ + + + Name : ?GetObjectId@HeapProfiler@v8@@QEAAIPEAX@Z + + + Name : ?GetObjectId@HeapProfiler@v8@@QEAAIV?$Local@VValue@v8@@@2@@Z + + + Name : ?GetObjectSizeForGarbageCollected@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z + + + Name : ?GetObjectSizeForGarbageCollectedMixin@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z + + + Name : ?GetOverloadResolution@CFunction@v8@@QEAA?AW4OverloadResolution@12@PEBV12@@Z + + + Name : ?GetOwnPropertyDescriptor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4PropertyFilter@2@W4KeyConversionMode@2@@Z + + + Name : ?GetParent@CpuProfileNode@v8@@QEBAPEBV12@XZ + + + Name : ?GetPatch@Version@internal@v8@@SAHXZ + + + Name : ?GetPersistentRegion@StrongCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z + + + Name : ?GetPersistentRegion@StrongPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z + + + Name : ?GetPersistentRegion@WeakCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z + + + Name : ?GetPersistentRegion@WeakPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z + + + Name : ?GetPhase@ModuleRequest@v8@@QEBA?AW4ModuleImportPhase@2@XZ + + + Name : ?GetPreviousCodeStartAddress@CodeEvent@v8@@QEAA_KXZ + + + Name : ?GetPrivate@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + + + Name : ?GetProducedCompileHints@Script@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@XZ + + + Name : ?GetPromise@Resolver@Promise@v8@@QEAA?AV?$Local@VPromise@v8@@@3@XZ + + + Name : ?GetPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4KeyCollectionMode@2@W4PropertyFilter@2@W4IndexFilter@2@W4KeyConversionMode@2@@Z + + + Name : ?GetPrototype@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetPrototypeV2@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetRealNamedProperty@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?GetRealNamedPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?GetRealNamedPropertyAttributesInPrototypeChain@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?GetRealNamedPropertyInPrototypeChain@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?GetReplace@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetResourceName@Script@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetResourceName@ScriptOrModule@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetRoot@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@XZ + + + Name : ?GetSONAME@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z + + + Name : ?GetSample@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@H@Z + + + Name : ?GetSampleEmbedderState@CpuProfile@v8@@QEBA?AW4EmbedderStateTag@2@H@Z + + + Name : ?GetSampleState@CpuProfile@v8@@QEBA?AW4StateTag@2@H@Z + + + Name : ?GetSampleTimestamp@CpuProfile@v8@@QEBA_JH@Z + + + Name : ?GetSamplesCount@CpuProfile@v8@@QEBAHXZ + + + Name : ?GetSandboxAddressSpace@V8@v8@@SAPEAVVirtualAddressSpace@2@XZ + + + Name : ?GetSandboxReservationSizeInBytes@V8@v8@@SA_KXZ + + + Name : ?GetSandboxSizeInBytes@V8@v8@@SA_KXZ + + + Name : ?GetScriptColumn@CodeEvent@v8@@QEAAHXZ + + + Name : ?GetScriptColumnNumber@Function@v8@@QEBAHXZ + + + Name : ?GetScriptId@CpuProfileNode@v8@@QEBAHXZ + + + Name : ?GetScriptId@StackFrame@v8@@QEBAHXZ + + + Name : ?GetScriptLine@CodeEvent@v8@@QEAAHXZ + + + Name : ?GetScriptLineNumber@Function@v8@@QEBAHXZ + + + Name : ?GetScriptName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetScriptName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetScriptName@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetScriptNameOrSourceURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetScriptOrigin@Function@v8@@QEBA?AVScriptOrigin@2@XZ + + + Name : ?GetScriptOrigin@Message@v8@@QEBA?AVScriptOrigin@2@XZ + + + Name : ?GetScriptResourceName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetScriptResourceName@Message@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetScriptResourceNameStr@CpuProfileNode@v8@@QEBAPEBDXZ + + + Name : ?GetScriptSource@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetScriptSourceMappingURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetScriptStartPosition@Function@v8@@QEBAHXZ + + + Name : ?GetSearch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetSecurityToken@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetShallowSize@HeapGraphNode@v8@@QEBA_KXZ + + + Name : ?GetSharedArrayBufferFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VSharedArrayBuffer@v8@@@3@PEAVIsolate@3@I@Z + + + Name : ?GetSharedArrayBufferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VSharedArrayBuffer@v8@@@3@@Z + + + Name : ?GetSharedMemoryStatistics@V8@v8@@SAXPEAVSharedMemoryStatistics@2@@Z + + + Name : ?GetSharedValueConveyor@Delegate@ValueDeserializer@v8@@UEAAPEBVSharedValueConveyor@3@PEAVIsolate@3@@Z + + + Name : ?GetSnapshotCount@HeapProfiler@v8@@QEAAHXZ + + + Name : ?GetSource@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetSource@RegExp@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetSourceLine@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetSourceMappingURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetSourceMappingURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetSourceOffset@ModuleRequest@v8@@QEBAHXZ + + + Name : ?GetSourceType@CpuProfileNode@v8@@QEBA?AW4SourceType@12@XZ + + + Name : ?GetSourceURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetSourceURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetSpecifier@ModuleRequest@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetSplit@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetStackSample@Isolate@v8@@QEAAXAEBURegisterState@2@PEAPEAX_KPEAUSampleInfo@2@@Z + + + Name : ?GetStackSample@TickSample@internal@v8@@SA_NPEAVIsolate@23@PEAURegisterState@3@W4RecordCEntryFrame@123@PEAPEAX_KPEAUSampleInfo@3@PEAW4StateTag@3@_N@Z + + + Name : ?GetStackTrace@Exception@v8@@SA?AV?$Local@VStackTrace@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?GetStackTrace@Message@v8@@QEBA?AV?$Local@VStackTrace@v8@@@2@XZ + + + Name : ?GetStackTraceLimit@Isolate@v8@@QEAAHXZ + + + Name : ?GetStalledTopLevelAwaitMessages@Module@v8@@QEAA?AU?$pair@V?$LocalVector@VModule@v8@@@v8@@V?$LocalVector@VMessage@v8@@@2@@__Cr@std@@PEAVIsolate@2@@Z + + + Name : ?GetStartColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?GetStartColumn@Message@v8@@QEBAHXZ + + + Name : ?GetStartPosition@Message@v8@@QEBAHXZ + + + Name : ?GetStartTime@CpuProfile@v8@@QEBA_JXZ + + + Name : ?GetStaticDependencySpecifiers@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?GetStatus@Module@v8@@QEBA?AW4Status@12@XZ + + + Name : ?GetStatus@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?GetString@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z + + + Name : ?GetTarget@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?GetTitle@CpuProfile@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?GetToNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ + + + Name : ?GetToPrimitive@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetToStringTag@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetTopDownRoot@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@XZ + + + Name : ?GetTraceDescriptor@TraceTraitFromInnerAddressImpl@internal@cppgc@@SA?AUTraceDescriptor@3@PEBX@Z + + + Name : ?GetTracingController@Platform@cppgc@@UEAAPEAVTracingController@v8@@XZ + + + Name : ?GetTracingController@node@@YAPEAVTracingController@v8@@XZ + + + Name : ?GetType@HeapGraphEdge@v8@@QEBA?AW4Type@12@XZ + + + Name : ?GetType@HeapGraphNode@v8@@QEBA?AW4Type@12@XZ + + + Name : ?GetTypeInfo@CFunction@v8@@QEBAPEBVCFunctionInfo@2@XZ + + + Name : ?GetUnboundModuleScript@Module@v8@@QEAA?AV?$Local@VUnboundModuleScript@v8@@@2@XZ + + + Name : ?GetUnboundScript@Script@v8@@QEAA?AV?$Local@VUnboundScript@v8@@@2@XZ + + + Name : ?GetUnscopables@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?GetVersion@V8@v8@@SAPEBDXZ + + + Name : ?GetVersion@Version@internal@v8@@SAPEBDXZ + + + Name : ?GetWasmFunctionIndex@Message@v8@@QEBAHXZ + + + Name : ?GetWasmModuleFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VWasmModuleObject@v8@@@3@PEAVIsolate@3@I@Z + + + Name : ?GetWasmModuleTransferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VWasmModuleObject@v8@@@3@@Z + + + Name : ?GetWireBytesRef@CompiledWasmModule@v8@@QEAA?AV?$MemorySpan@$$CBE@2@XZ + + + Name : ?GetWireFormatVersion@ValueDeserializer@v8@@QEBAIXZ + + + Name : ?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBX0AEAUParams@123@@Z + + + Name : ?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBXAEAUParams@123@@Z + + + Name : ?Global@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + + + Name : ?GlobalizeReference@api_internal@v8@@YAPEA_KPEAVIsolate@internal@2@_K@Z + + + Name : ?GlobalizeTracedReference@internal@v8@@YAPEA_KPEAVIsolate@12@_KPEA_KW4TracedReferenceStoreMode@12@W4TracedReferenceHandling@12@@Z + + + Name : ?HandleExternalMemoryInterrupt@Isolate@v8@@AEAAXXZ + + + Name : ?HandleMovableReference@Visitor@cppgc@@MEAAXPEAPEBX@Z + + + Name : ?Has@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + + + Name : ?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Has@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?HasBuffer@ArrayBufferView@v8@@QEBA_NXZ + + + Name : ?HasCaught@TryCatch@v8@@QEBA_NXZ + + + Name : ?HasCustomHostObject@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@@Z + + + Name : ?HasHandler@Promise@v8@@QEBA_NXZ + + + Name : ?HasIndexedLookupInterceptor@Object@v8@@QEBA_NXZ + + + Name : ?HasInstance@Buffer@node@@YA_NV?$Local@VObject@v8@@@v8@@@Z + + + Name : ?HasInstance@Buffer@node@@YA_NV?$Local@VValue@v8@@@v8@@@Z + + + Name : ?HasInstance@FunctionTemplate@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z + + + Name : ?HasNamedLookupInterceptor@Object@v8@@QEBA_NXZ + + + Name : ?HasOptions@CFunctionInfo@v8@@QEBA_NXZ + + + Name : ?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + + + Name : ?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?HasPendingBackgroundTasks@Isolate@v8@@QEAA_NXZ + + + Name : ?HasPendingException@Isolate@v8@@QEAA_NXZ + + + Name : ?HasPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + + + Name : ?HasRealIndexedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + + + Name : ?HasRealNamedCallbackProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?HasRealNamedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + + + Name : ?HasTemplateLiteralObject@Context@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z + + + Name : ?HasTerminated@TryCatch@v8@@QEBA_NXZ + + + Name : ?HasTopLevelAwait@Module@v8@@QEBA_NXZ + + + Name : ?Hash@Version@internal@v8@@SAIXZ + + + Name : ?HostDefinedOptions@ScriptOrModule@v8@@QEAA?AV?$Local@VData@v8@@@2@XZ + + + Name : ?HostInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@SAXV?$Local@VContext@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VObject@v8@@@5@@Z + + + Name : ?ImportModuleDynamically@loader@node@@YA?AV?$MaybeLocal@VPromise@v8@@@v8@@V?$Local@VContext@v8@@@4@V?$Local@VData@v8@@@4@V?$Local@VValue@v8@@@4@V?$Local@VString@v8@@@4@V?$Local@VFixedArray@v8@@@4@@Z + + + Name : ?InContext@Isolate@v8@@QEAA_NXZ + + + Name : ?InYoungGenerationForStickyMarkbits@HeapLayout@internal@v8@@CA_NPEBVMemoryChunk@23@V?$Tagged@VHeapObject@internal@v8@@@23@@Z + + + Name : ?IncreaseHeapLimitForDebugging@Isolate@v8@@QEAAXXZ + + + Name : ?Inherit@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z + + + Name : ?Init@TickSample@internal@v8@@QEAAXPEAVIsolate@23@AEBURegisterState@3@W4RecordCEntryFrame@123@_N3VTimeDelta@base@3@@Z + + + Name : ?InitialTableLimit@GCInfoTable@internal@cppgc@@AEBAGXZ + + + Name : ?Initialize@GlobalGCInfoTable@internal@cppgc@@SAXAEAVPageAllocator@v8@@@Z + + + Name : ?Initialize@HandleScope@v8@@IEAAXPEAVIsolate@2@@Z + + + Name : ?Initialize@Isolate@v8@@SAXPEAV12@AEBUCreateParams@12@@Z + + + Name : ?Initialize@Locker@v8@@AEAAXPEAVIsolate@2@@Z + + + Name : ?Initialize@ThreadIsolation@internal@v8@@SAXPEAVThreadIsolatedAllocator@3@@Z + + + Name : ?Initialize@Unlocker@v8@@AEAAXPEAVIsolate@2@@Z + + + Name : ?Initialize@V8@v8@@CA_NH@Z + + + Name : ?Initialize@V8@v8@@SA_NXZ + + + Name : ?InitializeBeforeThreadCreation@SandboxHardwareSupport@v8@@SAXXZ + + + Name : ?InitializeContext@node@@YA?AV?$Maybe@_N@v8@@V?$Local@VContext@v8@@@3@@Z + + + Name : ?InitializeExternalStartupData@V8@v8@@SAXPEBD@Z + + + Name : ?InitializeExternalStartupDataFromFile@V8@v8@@SAXPEBD@Z + + + Name : ?InitializeICU@V8@v8@@SA_NPEBD@Z + + + Name : ?InitializeICUDefaultLocation@V8@v8@@SA_NPEBD0@Z + + + Name : ?InitializeNodeWithArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4Flags@ProcessInitializationFlags@1@@Z + + + Name : ?InitializeOncePerProcess@node@@YA?AV?$unique_ptr@VInitializationResult@node@@U?$default_delete@VInitializationResult@node@@@__Cr@std@@@__Cr@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@34@W4Flags@ProcessInitializationFlags@1@@Z + + + Name : ?InitializePlatform@V8@v8@@SAXPEAVPlatform@2@@Z + + + Name : ?InitializeProcess@cppgc@@YAXPEAVPageAllocator@v8@@_K@Z + + + Name : ?InstallConditionalFeatures@Isolate@v8@@QEAAXV?$Local@VContext@v8@@@2@@Z + + + Name : ?InstanceOf@Value@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z + + + Name : ?InstanceTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ + + + Name : ?Instantiate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?InstantiateModule@Module@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@P6A?AV?$MaybeLocal@VModule@v8@@@2@0V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@V?$Local@VModule@v8@@@2@@ZP6A?AV?$MaybeLocal@VObject@v8@@@2@0123@Z@Z + + + Name : ?InstantiateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?Instrumentation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?Int32Value@Value@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?Int64Value@BigInt@v8@@QEBA_JPEA_N@Z + + + Name : ?IntegerValue@Value@v8@@QEBA?AV?$Maybe@_J@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?InternalFieldCount@Object@v8@@QEBAHXZ + + + Name : ?InternalFieldCount@Object@v8@@SAHAEBV?$BasicTracedReference@VObject@v8@@@2@@Z + + + Name : ?InternalFieldCount@Object@v8@@SAHAEBV?$PersistentBase@VObject@v8@@@2@@Z + + + Name : ?InternalFieldCount@ObjectTemplate@v8@@QEBAHXZ + + + Name : ?InternalFieldOutOfBounds@api_internal@v8@@YAXH@Z + + + Name : ?InternalizeString@String@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?IsApiWrapper@Object@v8@@QEBA_NXZ + + + Name : ?IsArgumentsObject@Value@v8@@QEBA_NXZ + + + Name : ?IsArray@Value@v8@@QEBA_NXZ + + + Name : ?IsArrayBuffer@Value@v8@@QEBA_NXZ + + + Name : ?IsArrayBufferView@Value@v8@@QEBA_NXZ + + + Name : ?IsAsyncFunction@Value@v8@@QEBA_NXZ + + + Name : ?IsAvailable@OptimizingCompileDispatcherQueue@internal@v8@@QEAA_NXZ + + + Name : ?IsBaseConsistent@CageBaseGlobal@internal@cppgc@@CA_NXZ + + + Name : ?IsBigInt64Array@Value@v8@@QEBA_NXZ + + + Name : ?IsBigInt@Value@v8@@QEBA_NXZ + + + Name : ?IsBigIntObject@Value@v8@@QEBA_NXZ + + + Name : ?IsBigUint64Array@Value@v8@@QEBA_NXZ + + + Name : ?IsBoolean@Value@v8@@QEBA_NXZ + + + Name : ?IsBooleanObject@Value@v8@@QEBA_NXZ + + + Name : ?IsCacheable@ExternalStringResourceBase@String@v8@@UEBA_NXZ + + + Name : ?IsCallable@Object@v8@@QEBA_NXZ + + + Name : ?IsCandidate@Version@internal@v8@@SA_NXZ + + + Name : ?IsCodeGenerationFromStringsAllowed@Context@v8@@QEBA_NXZ + + + Name : ?IsCodeLike@Object@v8@@QEBA_NPEAVIsolate@2@@Z + + + Name : ?IsCodeLike@ObjectTemplate@v8@@QEBA_NXZ + + + Name : ?IsConstructor@Object@v8@@QEBA_NXZ + + + Name : ?IsConstructor@StackFrame@v8@@QEBA_NXZ + + + Name : ?IsContext@Data@v8@@QEBA_NXZ + + + Name : ?IsCookieEncryptionEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsCreationThread@PersistentRegion@internal@cppgc@@AEAA_NXZ + + + Name : ?IsCurrent@Isolate@v8@@QEBA_NXZ + + + Name : ?IsDataView@Value@v8@@QEBA_NXZ + + + Name : ?IsDate@Value@v8@@QEBA_NXZ + + + Name : ?IsDead@Isolate@v8@@QEAA_NXZ + + + Name : ?IsDetachable@ArrayBuffer@v8@@QEBA_NXZ + + + Name : ?IsEmbeddedAsarIntegrityValidationEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsEnabled@WriteBarrier@internal@cppgc@@SA_NXZ + + + Name : ?IsEnvironmentStopping@node@@YA_NPEAVIsolate@v8@@@Z + + + Name : ?IsEval@StackFrame@v8@@QEBA_NXZ + + + Name : ?IsExecutionTerminating@Isolate@v8@@QEAA_NXZ + + + Name : ?IsExternal@String@v8@@QEBA_NXZ + + + Name : ?IsExternal@Value@v8@@QEBA_NXZ + + + Name : ?IsExternalOneByte@String@v8@@QEBA_NXZ + + + Name : ?IsExternalTwoByte@String@v8@@QEBA_NXZ + + + Name : ?IsFalse@Value@v8@@QEBA_NXZ + + + Name : ?IsFixedArray@Data@v8@@QEBA_NXZ + + + Name : ?IsFloat16Array@Value@v8@@QEBA_NXZ + + + Name : ?IsFloat32Array@Value@v8@@QEBA_NXZ + + + Name : ?IsFloat64Array@Value@v8@@QEBA_NXZ + + + Name : ?IsFunction@Value@v8@@QEBA_NXZ + + + Name : ?IsFunctionTemplate@Data@v8@@QEBA_NXZ + + + Name : ?IsGarbageCollectionAllowed@DisallowGarbageCollectionScope@subtle@cppgc@@SA_NAEAVHeapHandle@3@@Z + + + Name : ?IsGeneratorFunction@Value@v8@@QEBA_NXZ + + + Name : ?IsGeneratorObject@Value@v8@@QEBA_NXZ + + + Name : ?IsGrantFileProtocolExtraPrivilegesEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsGraphAsync@Module@v8@@QEBA_NXZ + + + Name : ?IsHeapLimitIncreasedForDebugging@Isolate@v8@@QEAA_NXZ + + + Name : ?IsHeapObjectAliveImpl@LivenessBroker@cppgc@@AEBA_NPEBX@Z + + + Name : ?IsHeapObjectOld@testing@cppgc@@YA_NPEAX@Z + + + Name : ?IsHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z + + + Name : ?IsImmutableProto@ObjectTemplate@v8@@QEBA_NXZ + + + Name : ?IsInAtomicPause@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + + + Name : ?IsInUse@Isolate@v8@@QEAA_NXZ + + + Name : ?IsInt16Array@Value@v8@@QEBA_NXZ + + + Name : ?IsInt32@Value@v8@@QEBA_NXZ + + + Name : ?IsInt32Array@Value@v8@@QEBA_NXZ + + + Name : ?IsInt8Array@Value@v8@@QEBA_NXZ + + + Name : ?IsInvalid@V8StackTraceId@v8_inspector@@QEBA_NXZ + + + Name : ?IsLeafTemplateForApiObject@FunctionTemplate@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + + + Name : ?IsLoadBrowserProcessSpecificV8SnapshotEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsLocked@Locker@v8@@SA_NPEAVIsolate@2@@Z + + + Name : ?IsMap@Value@v8@@QEBA_NXZ + + + Name : ?IsMapIterator@Value@v8@@QEBA_NXZ + + + Name : ?IsMarking@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + + + Name : ?IsModule@Data@v8@@QEBA_NXZ + + + Name : ?IsModuleNamespaceObject@Value@v8@@QEBA_NXZ + + + Name : ?IsName@Value@v8@@QEBA_NXZ + + + Name : ?IsNativeError@Value@v8@@QEBA_NXZ + + + Name : ?IsNodeCliInspectEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsNodeOptionsEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsNotIndicativeOfMemoryLeakAtExit@ModuleWrap@loader@node@@UEBA_NXZ + + + Name : ?IsNull@Value@v8@@QEBA_NXZ + + + Name : ?IsNullOrUndefined@Value@v8@@QEBA_NXZ + + + Name : ?IsNumber@Value@v8@@QEBA_NXZ + + + Name : ?IsNumberObject@Value@v8@@QEBA_NXZ + + + Name : ?IsObject@Value@v8@@QEBA_NXZ + + + Name : ?IsObjectTemplate@Data@v8@@QEBA_NXZ + + + Name : ?IsOneByte@String@v8@@QEBA_NXZ + + + Name : ?IsOnlyLoadAppFromAsarEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsOpaque@Message@v8@@QEBA_NXZ + + + Name : ?IsPrivate@Data@v8@@QEBA_NXZ + + + Name : ?IsPromise@Value@v8@@QEBA_NXZ + + + Name : ?IsProxy@Value@v8@@QEBA_NXZ + + + Name : ?IsRegExp@Value@v8@@QEBA_NXZ + + + Name : ?IsResizableByUserJavaScript@ArrayBuffer@v8@@QEBA_NXZ + + + Name : ?IsResizableByUserJavaScript@BackingStore@v8@@QEBA_NXZ + + + Name : ?IsRevoked@Proxy@v8@@QEBA_NXZ + + + Name : ?IsRunAsNodeEnabled@fuses@electron@@YA_NXZ + + + Name : ?IsRunningMicrotasks@MicrotasksScope@v8@@SA_NPEAVIsolate@2@@Z + + + Name : ?IsSandboxConfiguredSecurely@V8@v8@@SA_NXZ + + + Name : ?IsScriptSharedCrossOrigin@CpuProfileNode@v8@@QEBA_NXZ + + + Name : ?IsSet@CageBaseGlobal@internal@cppgc@@SA_NXZ + + + Name : ?IsSet@Value@v8@@QEBA_NXZ + + + Name : ?IsSetIterator@Value@v8@@QEBA_NXZ + + + Name : ?IsShared@BackingStore@v8@@QEBA_NXZ + + + Name : ?IsSharedArrayBuffer@Value@v8@@QEBA_NXZ + + + Name : ?IsSharedCrossOrigin@Message@v8@@QEBA_NXZ + + + Name : ?IsSourceTextModule@Module@v8@@QEBA_NXZ + + + Name : ?IsString@Value@v8@@QEBA_NXZ + + + Name : ?IsStringObject@Value@v8@@QEBA_NXZ + + + Name : ?IsSweeping@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + + + Name : ?IsSweepingOnOwningThread@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + + + Name : ?IsSymbol@Value@v8@@QEBA_NXZ + + + Name : ?IsSymbolObject@Value@v8@@QEBA_NXZ + + + Name : ?IsSyntheticModule@Module@v8@@QEBA_NXZ + + + Name : ?IsTakingSnapshot@HeapProfiler@v8@@QEAA_NXZ + + + Name : ?IsTrue@Value@v8@@QEBA_NXZ + + + Name : ?IsTypedArray@Value@v8@@QEBA_NXZ + + + Name : ?IsUint16Array@Value@v8@@QEBA_NXZ + + + Name : ?IsUint32@Value@v8@@QEBA_NXZ + + + Name : ?IsUint32Array@Value@v8@@QEBA_NXZ + + + Name : ?IsUint8Array@Value@v8@@QEBA_NXZ + + + Name : ?IsUint8ClampedArray@Value@v8@@QEBA_NXZ + + + Name : ?IsUndefined@Value@v8@@QEBA_NXZ + + + Name : ?IsUndetectable@Object@v8@@QEBA_NXZ + + + Name : ?IsUserJavaScript@StackFrame@v8@@QEBA_NXZ + + + Name : ?IsValid@StartupData@v8@@QEBA_NXZ + + + Name : ?IsValue@Data@v8@@QEBA_NXZ + + + Name : ?IsVerbose@TryCatch@v8@@QEBA_NXZ + + + Name : ?IsWasm@StackFrame@v8@@QEBA_NXZ + + + Name : ?IsWasmMemoryObject@Value@v8@@QEBA_NXZ + + + Name : ?IsWasmModuleObject@Value@v8@@QEBA_NXZ + + + Name : ?IsWasmNull@Value@v8@@QEBA_NXZ + + + Name : ?IsWeakMap@Value@v8@@QEBA_NXZ + + + Name : ?IsWeakRef@Value@v8@@QEBA_NXZ + + + Name : ?IsWeakSet@Value@v8@@QEBA_NXZ + + + Name : ?IsWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX@Z + + + Name : ?IsolateFromNeverReadOnlySpaceObject@internal@v8@@YAPEAVIsolate@12@_K@Z + + + Name : ?IsolateInBackgroundNotification@Isolate@v8@@QEAAXXZ + + + Name : ?IsolateInForegroundNotification@Isolate@v8@@QEAAXXZ + + + Name : ?Iterate@Array@v8@@QEAA?AV?$Maybe@X@2@V?$Local@VContext@v8@@@2@P6A?AW4CallbackResult@12@IV?$Local@VValue@v8@@@2@PEAX@Z2@Z + + + Name : ?Iterate@CrossThreadPersistentRegion@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z + + + Name : ?Iterate@PersistentRegionBase@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z + + + Name : ?JSStackComparableAddressPrivate@BackupIncumbentScope@Context@v8@@AEBA_KXZ + + + Name : ?JSStackComparableAddressPrivate@TryCatch@v8@@AEAA_KXZ + + + Name : ?JitPage@JitPageReference@ThreadIsolation@internal@v8@@QEAAPEAV0234@XZ + + + Name : ?Leave@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + + + Name : ?Leave@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + + + Name : ?Length@Array@v8@@QEBAIXZ + + + Name : ?Length@Buffer@node@@YA_KV?$Local@VObject@v8@@@v8@@@Z + + + Name : ?Length@Buffer@node@@YA_KV?$Local@VValue@v8@@@v8@@@Z + + + Name : ?Length@FixedArray@v8@@QEBAHXZ + + + Name : ?Length@OptimizingCompileDispatcherQueue@internal@v8@@QEAAHXZ + + + Name : ?Length@PrimitiveArray@v8@@QEBAHXZ + + + Name : ?Length@String@v8@@QEBAHXZ + + + Name : ?Length@TypedArray@v8@@QEAA_KXZ + + + Name : ?LimitForTesting@GCInfoTable@internal@cppgc@@QEBAGXZ + + + Name : ?Line@SourceLocation@v8@@QEBA_KXZ + + + Name : ?LineOffset@ScriptOrigin@v8@@QEBAHXZ + + + Name : ?Link@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?LinkExistingOrCreate@V8SerializationDuplicateTracker@v8_inspector@@QEAA?AV?$unique_ptr@VDictionaryValue@protocol@v8_inspector@@U?$default_delete@VDictionaryValue@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@PEA_N@Z + + + Name : ?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z + + + Name : ?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@AEBUStartExecutionCallbackInfo@node@@@Z@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z + + + Name : ?LocaleConfigurationChangeNotification@Isolate@v8@@QEAAXXZ + + + Name : ?Lock@ExternalStringResourceBase@String@v8@@MEBAXXZ + + + Name : ?LookupAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z + + + Name : ?LookupJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z + + + Name : ?LookupJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + + + Name : ?LookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + + + Name : ?LookupJumpTableAllocations@ThreadIsolation@internal@v8@@SA?AVWritableJumpTablePair@23@_K000@Z + + + Name : ?LookupWritableJitPage@ThreadIsolation@internal@v8@@SA?AVWritableJitPage@23@_K0@Z + + + Name : ?LowMemoryNotification@Isolate@v8@@QEAAXXZ + + + Name : ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEBDHPEAV?$Local@VValue@v8@@@4@@Z + + + Name : ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VFunction@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z + + + Name : ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VString@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z + + + Name : ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV23@@Z + + + Name : ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV23@@Z + + + Name : ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV23@@Z + + + Name : ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + + + Name : ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + + + Name : ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + + + Name : ?MakeExecutable@ThreadIsolation@internal@v8@@SA_N_K0@Z + + + Name : ?MakeExternal@String@v8@@QEAA_NPEAVExternalOneByteStringResource@12@@Z + + + Name : ?MakeExternal@String@v8@@QEAA_NPEAVExternalStringResource@12@@Z + + + Name : ?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z + + + Name : ?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalStringResource@12@@Z + + + Name : ?MakeWeak@api_internal@v8@@YAXPEAPEA_K@Z + + + Name : ?MakeWeak@api_internal@v8@@YAXPEA_KPEAXP6AXAEBV?$WeakCallbackInfo@X@2@@ZW4WeakCallbackType@2@@Z + + + Name : ?MarkAsHandled@Promise@v8@@QEAAXXZ + + + Name : ?MarkAsSilent@Promise@v8@@QEAAXXZ + + + Name : ?MarkAsUndetectable@ObjectTemplate@v8@@QEAAXXZ + + + Name : ?Matches@TypecheckWitness@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + + + Name : ?MaxByteLength@ArrayBuffer@v8@@QEBA_KXZ + + + Name : ?MaxByteLength@BackingStore@v8@@QEBA_KXZ + + + Name : ?MaxByteLength@SharedArrayBuffer@v8@@QEBA_KXZ + + + Name : ?MaxTableSize@GCInfoTable@internal@cppgc@@AEBA_KXZ + + + Name : ?MaybeNew@ArrayBuffer@v8@@SA?AV?$MaybeLocal@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + + + Name : ?MeasureMemory@Isolate@v8@@QEAA_NV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@W4MeasureMemoryExecution@2@@Z + + + Name : ?MeasurementComplete@MeasureMemoryDelegate@v8@@UEAAXUResult@12@@Z + + + Name : ?MemoryInfo@ModuleWrap@loader@node@@UEBAXPEAVMemoryTracker@3@@Z + + + Name : ?MemoryInfoName@ModuleWrap@loader@node@@UEBAPEBDXZ + + + Name : ?MemoryPressureNotification@Isolate@v8@@QEAAXW4MemoryPressureLevel@2@@Z + + + Name : ?Merge@JitPageReference@ThreadIsolation@internal@v8@@QEAAXAEAV1234@@Z + + + Name : ?MergeFlags@?$CTypeInfoBuilder@H$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + + + Name : ?MergeFlags@?$CTypeInfoBuilder@I$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + + + Name : ?MergeFlags@?$CTypeInfoBuilder@M$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + + + Name : ?MergeFlags@?$CTypeInfoBuilder@N$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + + + Name : ?MergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ + + + Name : ?Message@TryCatch@v8@@QEBA?AV?$Local@VMessage@v8@@@2@XZ + + + Name : ?MoveGlobalReference@api_internal@v8@@YAXPEAPEA_K0@Z + + + Name : ?MoveTracedReference@internal@v8@@YAXPEAPEA_K0@Z + + + Name : ?Name@Private@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z + + + Name : ?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@PEAV?$Local@VValue@v8@@@2@_K@Z + + + Name : ?New@Array@v8@@SA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@_KV?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@XZ@__Cr@std@@@Z + + + Name : ?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z + + + Name : ?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + + + Name : ?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_J@Z + + + Name : ?New@BigIntObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_J@Z + + + Name : ?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Boolean@v8@@SA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@_N@Z + + + Name : ?New@BooleanObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_N@Z + + + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_K@Z + + + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_KP6AX1PEAX@Z3@Z + + + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@V?$Local@VString@v8@@@4@W4encoding@2@@Z + + + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@_K@Z + + + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VUint8Array@v8@@@v8@@PEAVIsolate@4@V?$Local@VArrayBuffer@v8@@@4@_K2@Z + + + Name : ?New@Context@v8@@SA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@UDeserializeInternalFieldsCallback@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z + + + Name : ?New@CpuProfiler@v8@@SAPEAV12@PEAVIsolate@2@W4CpuProfilingNamingMode@2@W4CpuProfilingLoggingMode@2@@Z + + + Name : ?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@N@Z + + + Name : ?New@DictionaryTemplate@v8@@SA?AV?$Local@VDictionaryTemplate@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@2@@Z + + + Name : ?New@External@v8@@SA?AV?$Local@VExternal@v8@@@2@PEAVIsolate@2@PEAX@Z + + + Name : ?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Function@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@@Z + + + Name : ?New@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@PEBVCFunction@2@GGG@Z + + + Name : ?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@H@Z + + + Name : ?New@Isolate@v8@@SAPEAV12@AEBUCreateParams@12@@Z + + + Name : ?New@Map@v8@@SA?AV?$Local@VMap@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?New@MicrotaskQueue@v8@@SA?AV?$unique_ptr@VMicrotaskQueue@v8@@U?$default_delete@VMicrotaskQueue@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@W4MicrotasksPolicy@2@@Z + + + Name : ?New@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?New@Number@v8@@SA?AV?$Local@VNumber@v8@@@2@PEAVIsolate@2@N@Z + + + Name : ?New@NumberObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@N@Z + + + Name : ?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@PEAV?$Local@VName@v8@@@2@PEAV52@_K@Z + + + Name : ?New@ObjectTemplate@v8@@SA?AV?$Local@VObjectTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + + + Name : ?New@PrimitiveArray@v8@@SA?AV?$Local@VPrimitiveArray@v8@@@2@PEAVIsolate@2@H@Z + + + Name : ?New@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?New@Proxy@v8@@SA?AV?$MaybeLocal@VProxy@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@1@Z + + + Name : ?New@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@@Z + + + Name : ?New@Resolver@Promise@v8@@SA?AV?$MaybeLocal@VResolver@Promise@v8@@@3@V?$Local@VContext@v8@@@3@@Z + + + Name : ?New@Set@v8@@SA?AV?$Local@VSet@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z + + + Name : ?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + + + Name : ?New@Signature@v8@@SA?AV?$Local@VSignature@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + + + Name : ?New@StringObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?New@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?New@SymbolObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VSymbol@v8@@@2@@Z + + + Name : ?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + + + Name : ?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + + + Name : ?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + + + Name : ?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z + + + Name : ?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + + + Name : ?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z + + + Name : ?NewContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVIsolate@3@V?$Local@VObjectTemplate@v8@@@3@@Z + + + Name : ?NewDefaultAllocator@Allocator@ArrayBuffer@v8@@SAPEAV123@XZ + + + Name : ?NewExternalOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z + + + Name : ?NewExternalTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalStringResource@12@@Z + + + Name : ?NewFromOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBEW4NewStringType@2@H@Z + + + Name : ?NewFromTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBGW4NewStringType@2@H@Z + + + Name : ?NewFromUnsigned@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_K@Z + + + Name : ?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@I@Z + + + Name : ?NewFromUtf8@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z + + + Name : ?NewFromUtf8Literal@String@v8@@CA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z + + + Name : ?NewFromWords@BigInt@v8@@SA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@HHPEB_K@Z + + + Name : ?NewInstance@DictionaryTemplate@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@2@@Z + + + Name : ?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z + + + Name : ?NewInstance@ObjectTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?NewInstanceWithSideEffectType@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@W4SideEffectType@2@@Z + + + Name : ?NewIsolate@node@@YAPEAVIsolate@v8@@PEAVArrayBufferAllocator@1@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z + + + Name : ?NewIsolate@node@@YAPEAVIsolate@v8@@V?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z + + + Name : ?NewRemoteContext@Context@v8@@SA?AV?$MaybeLocal@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@@Z + + + Name : ?NewRemoteInstance@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@XZ + + + Name : ?NewResizableBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@_K0@Z + + + Name : ?NewWithBacktrackLimit@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@I@Z + + + Name : ?NewWithCFunctionOverloads@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z + + + Name : ?NewWithCache@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4SideEffectType@2@@Z + + + Name : ?NodesInUse@CrossThreadPersistentRegion@internal@cppgc@@QEBA_KXZ + + + Name : ?NodesInUse@PersistentRegionBase@internal@cppgc@@QEBA_KXZ + + + Name : ?NotifyIsolateDisposal@Recorder@metrics@v8@@UEAAXXZ + + + Name : ?NumberOfGCInfos@GCInfoTable@internal@cppgc@@QEBAGXZ + + + Name : ?NumberOfHandles@HandleScope@v8@@SAHPEAVIsolate@2@@Z + + + Name : ?NumberOfHeapSpaces@Isolate@v8@@QEAA_KXZ + + + Name : ?NumberOfTrackedHeapObjectTypes@Isolate@v8@@QEAA_KXZ + + + Name : ?NumberValue@Value@v8@@QEBA?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?OOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?ObjectProtoToString@Object@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?OffsetFromAddress@CagedHeapBase@internal@cppgc@@SA_KPEBX@Z + + + Name : ?OnBytesReceived@WasmStreaming@v8@@QEAAXPEBE_K@Z + + + Name : ?OnFatalError@node@@YAXPEBD0@Z + + + Name : ?Options@ScriptOrigin@v8@@QEBA?AVScriptOriginOptions@2@XZ + + + Name : ?Other@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?PCIsInV8@Unwinder@v8@@SA_N_KPEBUMemoryRange@2@PEAX@Z + + + Name : ?Parse@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?Parse@JSON@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?ParseEncoding@node@@YA?AW4encoding@1@PEAVIsolate@v8@@V?$Local@VValue@v8@@@4@W421@@Z + + + Name : ?PerformCheckpoint@MicrotasksScope@v8@@SAXPEAVIsolate@2@@Z + + + Name : ?PerformMarkingStep@StandaloneTestingHeap@testing@cppgc@@QEAA_NW4EmbedderStackState@3@@Z + + + Name : ?PerformMicrotaskCheckpoint@Isolate@v8@@QEAAXXZ + + + Name : ?PostJob@Platform@cppgc@@UEAA?AV?$unique_ptr@VJobHandle@v8@@U?$default_delete@VJobHandle@v8@@@__Cr@std@@@__Cr@std@@W4TaskPriority@v8@@V?$unique_ptr@VJobTask@v8@@U?$default_delete@VJobTask@v8@@@__Cr@std@@@45@@Z + + + Name : ?PrepareInstall@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ + + + Name : ?PrepareInstallPredictable@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ + + + Name : ?PrepareStackTraceCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@V?$Local@VArray@v8@@@3@@Z + + + Name : ?PreviewEntries@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@PEA_N@Z + + + Name : ?PreviousGCWasConservative@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + + + Name : ?PrintCurrentStackTrace@Message@v8@@SAXPEAVIsolate@2@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + + + Name : ?Prioritize@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXV?$Tagged@VSharedFunctionInfo@internal@v8@@@23@@Z + + + Name : ?ProcessGlobalArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4OptionEnvvarSettings@1@@Z + + + Name : ?PromiseRejectCallback@node@@YAXVPromiseRejectMessage@v8@@@Z + + + Name : ?PromiseRejection@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?PrototypeTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ + + + Name : ?QueryObjects@HeapProfiler@v8@@QEAAXV?$Local@VContext@v8@@@2@PEAVQueryObjectPredicate@2@PEAV?$vector@V?$Global@VObject@v8@@@v8@@V?$allocator@V?$Global@VObject@v8@@@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?QueueIndex@OptimizingCompileDispatcherQueue@internal@v8@@AEAAHH@Z + + + Name : ?QuickIsFalse@Value@v8@@AEBA_NXZ + + + Name : ?QuickIsNull@Value@v8@@AEBA_NXZ + + + Name : ?QuickIsNullOrUndefined@Value@v8@@AEBA_NXZ + + + Name : ?QuickIsString@Value@v8@@AEBA_NXZ + + + Name : ?QuickIsTrue@Value@v8@@AEBA_NXZ + + + Name : ?QuickIsUndefined@Value@v8@@AEBA_NXZ + + + Name : ?RangeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?ReThrow@TryCatch@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?ReadDouble@ValueDeserializer@v8@@QEAA_NPEAN@Z + + + Name : ?ReadHeader@ValueDeserializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ReadHostObject@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VObject@v8@@@3@PEAVIsolate@3@@Z + + + Name : ?ReadOnlyPrototype@FunctionTemplate@v8@@QEAAXXZ + + + Name : ?ReadRawBytes@ValueDeserializer@v8@@QEAA_N_KPEAPEBX@Z + + + Name : ?ReadUint32@ValueDeserializer@v8@@QEAA_NPEAI@Z + + + Name : ?ReadUint64@ValueDeserializer@v8@@QEAA_NPEA_K@Z + + + Name : ?ReadValue@ValueDeserializer@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?Reallocate@Allocator@ArrayBuffer@v8@@UEAAPEAXPEAX_K1@Z + + + Name : ?Reallocate@BackingStore@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V345@_K@Z + + + Name : ?ReallocateBufferMemory@Delegate@ValueSerializer@v8@@UEAAPEAXPEAX_KPEA_K@Z + + + Name : ?RecordDependency@CompilationDependencies@compiler@internal@v8@@QEAAXPEBVCompilationDependency@234@@Z + + + Name : ?ReferenceError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?RefillFreeList@PersistentRegionBase@internal@cppgc@@AEAAXXZ + + + Name : ?RefillFreeListAndAllocateNode@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + + + Name : ?RegisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z + + + Name : ?RegisterExtension@v8@@YAXV?$unique_ptr@VExtension@v8@@U?$default_delete@VExtension@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?RegisterExternalReferences@ModuleWrap@loader@node@@SAXPEAVExternalReferenceRegistry@3@@Z + + + Name : ?RegisterInstructionStreamAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0_N@Z + + + Name : ?RegisterJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z + + + Name : ?RegisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z + + + Name : ?RegisterJitAllocations@ThreadIsolation@internal@v8@@SAX_KAEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@W4JitAllocationType@123@@Z + + + Name : ?RegisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z + + + Name : ?RegisterNewGCInfo@GCInfoTable@internal@cppgc@@QEAAGAEAU?$atomic@G@__Cr@std@@AEBUGCInfo@23@@Z + + + Name : ?RegisterWeakCallback@Visitor@cppgc@@UEAAXP6AXAEBVLivenessBroker@2@PEBX@Z1@Z + + + Name : ?Reject@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z + + + Name : ?Release@ValueSerializer@v8@@QEAA?AU?$pair@PEAE_K@__Cr@std@@XZ + + + Name : ?RemoveBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + + + Name : ?RemoveBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z + + + Name : ?RemoveCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + + + Name : ?RemoveEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z + + + Name : ?RemoveEnvironmentCleanupHookInternal@node@@YAXPEAUACHHandle@1@@Z + + + Name : ?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z + + + Name : ?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z + + + Name : ?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z + + + Name : ?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z + + + Name : ?RemoveMessageListeners@Isolate@v8@@QEAAXP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z + + + Name : ?RemoveMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + + + Name : ?RemoveNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z1@Z + + + Name : ?RemovePrototype@FunctionTemplate@v8@@QEAAXXZ + + + Name : ?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@@Z + + + Name : ?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@W4EmbedderStackState@cppgc@@@Z + + + Name : ?RequestInterrupt@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + + + Name : ?RequestInterrupt@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z + + + Name : ?Reset@LongTaskStats@metrics@v8@@SAXPEAVIsolate@3@@Z + + + Name : ?Reset@TryCatch@v8@@QEAAXXZ + + + Name : ?ResetForTesting@AgeTable@internal@cppgc@@QEAAXXZ + + + Name : ?ResetInternal@TryCatch@v8@@AEAAXXZ + + + Name : ?Resize@ExplicitManagementImpl@internal@cppgc@@CA_NPEAX_K@Z + + + Name : ?Resize@GCInfoTable@internal@cppgc@@AEAAXXZ + + + Name : ?Resolve@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z + + + Name : ?ResolveModuleCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VModule@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VString@v8@@@5@V?$Local@VFixedArray@v8@@@5@V?$Local@VModule@v8@@@5@@Z + + + Name : ?ResourceName@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?RestoreOriginalHeapLimit@Isolate@v8@@QEAAXXZ + + + Name : ?Result@Promise@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?ReturnInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@XZ + + + Name : ?ReturnInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@XZ + + + Name : ?Revoke@Proxy@v8@@QEAAXXZ + + + Name : ?Run@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ + + + Name : ?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@@Z + + + Name : ?Run@ScriptStreamingTask@ScriptCompiler@v8@@QEAAXXZ + + + Name : ?RunAtExit@node@@YAXPEAVEnvironment@1@@Z + + + Name : ?SameValue@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + + + Name : ?ScriptId@Function@v8@@QEBAHXZ + + + Name : ?ScriptId@Module@v8@@QEBAHXZ + + + Name : ?ScriptId@ScriptOrigin@v8@@QEBAHXZ + + + Name : ?SelfSize@ModuleWrap@loader@node@@UEBA_KXZ + + + Name : ?Serialize@CompiledWasmModule@v8@@QEAA?AUOwnedBuffer@2@XZ + + + Name : ?Serialize@CpuProfile@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z + + + Name : ?Serialize@HeapSnapshot@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z + + + Name : ?Set@Map@v8@@QEAA?AV?$MaybeLocal@VMap@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z + + + Name : ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z + + + Name : ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z + + + Name : ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1V?$MaybeLocal@VObject@v8@@@2@@Z + + + Name : ?Set@PrimitiveArray@v8@@QEAAXPEAVIsolate@2@HV?$Local@VPrimitive@v8@@@2@@Z + + + Name : ?Set@Template@v8@@QEAAXPEAVIsolate@2@PEBDV?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + + + Name : ?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + + + Name : ?SetAbortOnUncaughtExceptionCallback@Isolate@v8@@QEAAXP6A_NPEAV12@@Z@Z + + + Name : ?SetAbortScriptExecution@Context@v8@@QEAAXP6AXPEAVIsolate@2@V?$Local@VContext@v8@@@2@@Z@Z + + + Name : ?SetAcceptAnyReceiver@FunctionTemplate@v8@@QEAAX_N@Z + + + Name : ?SetAccessCheckCallback@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@Z2@Z + + + Name : ?SetAccessCheckCallbackAndHandler@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@ZAEBUNamedPropertyHandlerConfiguration@2@AEBUIndexedPropertyHandlerConfiguration@2@2@Z + + + Name : ?SetAccessorProperty@Object@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunction@v8@@@2@1W4PropertyAttribute@2@@Z + + + Name : ?SetAccessorProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@1W4PropertyAttribute@2@@Z + + + Name : ?SetAddCrashKeyCallback@Isolate@v8@@QEAAXP6AXW4CrashKeyId@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z + + + Name : ?SetAddHistogramSampleFunction@Isolate@v8@@QEAAXP6AXPEAXH@Z@Z + + + Name : ?SetAge@AgeTable@internal@cppgc@@QEAAX_KW4Age@123@@Z + + + Name : ?SetAgeForRange@AgeTable@internal@cppgc@@QEAAX_K0W4Age@123@W4AdjacentCardsPolicy@123@@Z + + + Name : ?SetAlignedPointerInEmbedderData@Context@v8@@QEAAXHPEAX@Z + + + Name : ?SetAlignedPointerInInternalField@Object@v8@@QEAAXHPEAX@Z + + + Name : ?SetAlignedPointerInInternalFields@Object@v8@@QEAAXHQEAHQEAPEAX@Z + + + Name : ?SetAllowAtomicsWait@Isolate@v8@@QEAAX_N@Z + + + Name : ?SetAllowWasmCodeGenerationCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z@Z + + + Name : ?SetAtomicsWaitCallback@Isolate@v8@@QEAAXP6AXW4AtomicsWaitEvent@12@V?$Local@VSharedArrayBuffer@v8@@@2@_K_JNPEAVAtomicsWaitWakeHandle@12@PEAX@Z5@Z + + + Name : ?SetBatterySaverMode@Isolate@v8@@QEAAX_N@Z + + + Name : ?SetCallAsFunctionHandler@ObjectTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@@Z + + + Name : ?SetCallHandler@FunctionTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z + + + Name : ?SetCaptureMessage@TryCatch@v8@@QEAAX_N@Z + + + Name : ?SetCaptureStackTraceForUncaughtExceptions@Isolate@v8@@QEAAX_NHW4StackTraceOptions@StackTrace@2@@Z + + + Name : ?SetClassName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + + + Name : ?SetCodeLike@ObjectTemplate@v8@@QEAAXXZ + + + Name : ?SetCompiledModuleBytes@WasmStreaming@v8@@QEAA_NPEBE_K@Z + + + Name : ?SetContinuationPreservedEmbedderData@Isolate@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + + + Name : ?SetCounterFunction@Isolate@v8@@QEAAXP6APEAHPEBD@Z@Z + + + Name : ?SetCppgcReference@node@@YAXPEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEAX@Z + + + Name : ?SetCreateHistogramFunction@Isolate@v8@@QEAAXP6APEAXPEBDHH_K@Z@Z + + + Name : ?SetData@Isolate@v8@@QEAAXIPEAX@Z + + + Name : ?SetDcheckErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z + + + Name : ?SetDefaultContext@SnapshotCreator@v8@@QEAAXV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z + + + Name : ?SetDetachKey@ArrayBuffer@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + + + Name : ?SetEmbedderData@Context@v8@@QEAAXHV?$Local@VValue@v8@@@2@@Z + + + Name : ?SetEmbedderRootsHandler@Isolate@v8@@QEAAXPEAVEmbedderRootsHandler@2@@Z + + + Name : ?SetEntropySource@V8@v8@@SAXP6A_NPEAE_K@Z@Z + + + Name : ?SetErrorMessageForCodeGenerationFromStrings@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + + + Name : ?SetErrorMessageForWasmCodeGeneration@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + + + Name : ?SetEventLogger@Isolate@v8@@QEAAXP6AXPEBDH@Z@Z + + + Name : ?SetExceptionContext@FunctionTemplate@v8@@QEAAXW4ExceptionContext@2@@Z + + + Name : ?SetExceptionPropagationCallback@Isolate@v8@@QEAAXP6AXVExceptionPropagationMessage@2@@Z@Z + + + Name : ?SetFailedAccessCheckCallbackFunction@Isolate@v8@@QEAAXP6AXV?$Local@VObject@v8@@@2@W4AccessType@2@V?$Local@VValue@v8@@@2@@Z@Z + + + Name : ?SetFatalErrorHandler@Isolate@v8@@QEAAXP6AXPEBD0@Z@Z + + + Name : ?SetFatalErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z + + + Name : ?SetFatalMemoryErrorCallback@V8@v8@@SAXP6AXPEBDAEBUOOMDetails@2@@Z@Z + + + Name : ?SetFilterETWSessionByURLCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z + + + Name : ?SetFlagsFromCommandLine@V8@v8@@SAXPEAHPEAPEAD_N@Z + + + Name : ?SetFlagsFromString@V8@v8@@SAXPEBD@Z + + + Name : ?SetFlagsFromString@V8@v8@@SAXPEBD_K@Z + + + Name : ?SetGetDetachednessCallback@HeapProfiler@v8@@QEAAXP6A?AW4Detachedness@Node@EmbedderGraph@2@PEAVIsolate@2@AEBV?$Local@VValue@v8@@@2@GPEAX@Z2@Z + + + Name : ?SetGetExternallyAllocatedMemoryInBytesCallback@Isolate@v8@@QEAAXP6A_KXZ@Z + + + Name : ?SetHandler@ObjectTemplate@v8@@QEAAXAEBUIndexedPropertyHandlerConfiguration@2@@Z + + + Name : ?SetHandler@ObjectTemplate@v8@@QEAAXAEBUNamedPropertyHandlerConfiguration@2@@Z + + + Name : ?SetHostCreateShadowRealmContextCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VContext@v8@@@2@V?$Local@VContext@v8@@@2@@Z@Z + + + Name : ?SetHostImportModuleDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@@Z@Z + + + Name : ?SetHostImportModuleWithPhaseDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@W4ModuleImportPhase@2@V?$Local@VFixedArray@v8@@@2@@Z@Z + + + Name : ?SetHostInitializeImportMetaObjectCallback@Isolate@v8@@QEAAXP6AXV?$Local@VContext@v8@@@2@V?$Local@VModule@v8@@@2@V?$Local@VObject@v8@@@2@@Z@Z + + + Name : ?SetId@DiscardedSamplesDelegate@v8@@AEAAXI@Z + + + Name : ?SetIdle@Isolate@v8@@QEAAX_N@Z + + + Name : ?SetImmutableProto@ObjectTemplate@v8@@QEAAXXZ + + + Name : ?SetImportModuleDynamicallyCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?SetInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?SetIntegrityLevel@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@W4IntegrityLevel@2@@Z + + + Name : ?SetInterfaceName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + + + Name : ?SetInternalField@Object@v8@@QEAAXHV?$Local@VData@v8@@@2@@Z + + + Name : ?SetInternalFieldCount@ObjectTemplate@v8@@QEAAXH@Z + + + Name : ?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VModule@v8@@@2@@Z + + + Name : ?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VUnboundScript@v8@@@2@@Z + + + Name : ?SetIntrinsicDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@W4Intrinsic@2@W4PropertyAttribute@2@@Z + + + Name : ?SetIsLoading@Isolate@v8@@QEAAX_N@Z + + + Name : ?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@@Z + + + Name : ?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@AEBUIsolateSettings@1@@Z + + + Name : ?SetJavaScriptCompileHintsMagicEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + + + Name : ?SetJitCodeEventHandler@Isolate@v8@@QEAAXW4JitCodeEventOptions@2@P6AXPEBUJitCodeEvent@2@@Z@Z + + + Name : ?SetKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAXV?$Local@VValue@v8@@@v8@@PEAVDictionaryValue@protocol@2@@Z + + + Name : ?SetLazyDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@6@Z + + + Name : ?SetLazyDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@5@Z + + + Name : ?SetLength@FunctionTemplate@v8@@QEAAXH@Z + + + Name : ?SetMaxAsyncTaskStacksForTest@v8_inspector@@YAXPEAVV8Inspector@1@H@Z + + + Name : ?SetMetricsRecorder@Isolate@v8@@QEAAXAEBV?$shared_ptr@VRecorder@metrics@v8@@@__Cr@std@@@Z + + + Name : ?SetMicrotaskQueue@Context@v8@@QEAAXPEAVMicrotaskQueue@2@@Z + + + Name : ?SetMicrotasksPolicy@Isolate@v8@@QEAAXW4MicrotasksPolicy@2@@Z + + + Name : ?SetModifyCodeGenerationFromStringsCallback@Isolate@v8@@QEAAXP6A?AUModifyCodeGenerationFromStringsResult@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@_N@Z@Z + + + Name : ?SetMoreFunctionsCanBeSerializedCallback@WasmStreaming@v8@@QEAAXV?$function@$$A6AXVCompiledWasmModule@v8@@@Z@__Cr@std@@@Z + + + Name : ?SetName@Function@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + + + Name : ?SetNativeDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z4W4PropertyAttribute@2@W4SideEffectType@2@8@Z + + + Name : ?SetNativeDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4SideEffectType@2@7@Z + + + Name : ?SetOOMErrorHandler@Isolate@v8@@QEAAXP6AXPEBDAEBUOOMDetails@2@@Z@Z + + + Name : ?SetPrepareStackTraceCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VArray@v8@@@2@@Z@Z + + + Name : ?SetPriority@Isolate@v8@@QEAAXW4Priority@12@@Z + + + Name : ?SetPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?SetPrivate@Template@v8@@QEAAXV?$Local@VPrivate@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + + + Name : ?SetProcessExitHandler@node@@YAXPEAVEnvironment@1@$$QEAV?$function@$$A6AXPEAVEnvironment@node@@H@Z@__Cr@std@@@Z + + + Name : ?SetPromiseHook@Isolate@v8@@QEAAXP6AXW4PromiseHookType@2@V?$Local@VPromise@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z + + + Name : ?SetPromiseHooks@Context@v8@@QEAAXV?$Local@VFunction@v8@@@2@000@Z + + + Name : ?SetPromiseRejectCallback@Isolate@v8@@QEAAXP6AXVPromiseRejectMessage@2@@Z@Z + + + Name : ?SetPrototype@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?SetPrototypeProviderTemplate@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z + + + Name : ?SetPrototypeV2@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?SetRAILMode@Isolate@v8@@QEAAXW4RAILMode@2@@Z + + + Name : ?SetReturnAddressLocationResolver@V8@v8@@SAXP6A_K_K@Z@Z + + + Name : ?SetSamplingInterval@CpuProfiler@v8@@QEAAXH@Z + + + Name : ?SetSecurityToken@Context@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + + + Name : ?SetSharedArrayBufferConstructorEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + + + Name : ?SetSnapshotDataBlob@V8@v8@@SAXPEAVStartupData@2@@Z + + + Name : ?SetStackLimit@Isolate@v8@@QEAAX_K@Z + + + Name : ?SetSupportsLegacyWireFormat@ValueDeserializer@v8@@QEAAX_N@Z + + + Name : ?SetSyntheticExport@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + + + Name : ?SetSyntheticModuleExport@Module@v8@@QEAA?AV?$Maybe@_N@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?SetTracingController@node@@YAXPEAVTracingController@v8@@@Z + + + Name : ?SetTreatArrayBufferViewsAsHostObjects@ValueSerializer@v8@@QEAAX_N@Z + + + Name : ?SetUnhandledExceptionCallback@V8@v8@@SAXP6AHPEAU_EXCEPTION_POINTERS@@@Z@Z + + + Name : ?SetUrl@WasmStreaming@v8@@QEAAXPEBD_K@Z + + + Name : ?SetUseCounterCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4UseCounterFeature@12@@Z@Z + + + Name : ?SetUsePreciseSampling@CpuProfiler@v8@@QEAAX_N@Z + + + Name : ?SetVerbose@TryCatch@v8@@QEAAX_N@Z + + + Name : ?SetWasmAsyncResolvePromiseCallback@Isolate@v8@@QEAAXP6AXPEAV12@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@V?$Local@VValue@v8@@@2@W4WasmAsyncSuccess@2@@Z@Z + + + Name : ?SetWasmImportedStringsEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + + + Name : ?SetWasmInstanceCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + + + Name : ?SetWasmJSPIEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + + + Name : ?SetWasmLoadSourceMapCallback@Isolate@v8@@QEAAXP6A?AV?$Local@VString@v8@@@2@PEAV12@PEBD@Z@Z + + + Name : ?SetWasmModuleCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + + + Name : ?SetWasmStreamingCallback@Isolate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + + + Name : ?ShouldAbortOnUncaughtException@node@@YA_NPEAVIsolate@v8@@@Z + + + Name : ?ShouldMergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEBA_NXZ + + + Name : ?ShouldThrowOnError@internal@v8@@YA_NPEAVIsolate@12@@Z + + + Name : ?Shrink@JitPageReference@ThreadIsolation@internal@v8@@QEAAXPEAVJitPage@234@@Z + + + Name : ?ShutdownProcess@cppgc@@YAXXZ + + + Name : ?Size@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + + + Name : ?Size@Map@v8@@QEBA_KXZ + + + Name : ?Size@Set@v8@@QEBA_KXZ + + + Name : ?SlowGetAlignedPointerFromEmbedderData@Context@v8@@AEAAPEAXH@Z + + + Name : ?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXH@Z + + + Name : ?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXPEAVIsolate@2@H@Z + + + Name : ?SlowGetEmbedderData@Context@v8@@AEAA?AV?$Local@VValue@v8@@@2@H@Z + + + Name : ?SlowGetInternalField@Object@v8@@AEAA?AV?$Local@VData@v8@@@2@H@Z + + + Name : ?SourceMapUrl@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?SourceOffsetToLocation@Module@v8@@QEBA?AVLocation@2@H@Z + + + Name : ?SourceTextAvailable@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXPEAVIsolate@3@V?$Local@VString@v8@@@3@AEBVScriptOrigin@3@@Z + + + Name : ?SpinEventLoop@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z + + + Name : ?SplitJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + + + Name : ?SplitJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + + + Name : ?SplitJitPages@ThreadIsolation@internal@v8@@CA?AU?$pair@VJitPageReference@ThreadIsolation@internal@v8@@V1234@@__Cr@std@@_K000@Z + + + Name : ?StackTrace@TryCatch@v8@@QEBA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?StackTrace@TryCatch@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z + + + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@_N@Z + + + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?Start@node@@YAHHQEAPEAD@Z + + + Name : ?StartConsumingCodeCache@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?StartConsumingCodeCacheOnBackground@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?StartGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ + + + Name : ?StartOfAllocationAt@JitPageReference@ThreadIsolation@internal@v8@@QEAA_K_K@Z + + + Name : ?StartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA?AV?$optional@_K@__Cr@std@@_K@Z + + + Name : ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + + + Name : ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z + + + Name : ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@_N@Z + + + Name : ?StartSamplingHeapProfiler@HeapProfiler@v8@@QEAA_N_KHW4SamplingFlags@12@@Z + + + Name : ?StartStreaming@ScriptCompiler@v8@@SAPEAVScriptStreamingTask@12@PEAVIsolate@2@PEAVStreamedSource@12@W4ScriptType@2@W4CompileOptions@12@P6A_NHPEAX@Z4@Z + + + Name : ?StartTrackingHeapObjects@HeapProfiler@v8@@QEAAX_N@Z + + + Name : ?State@Promise@v8@@QEAA?AW4PromiseState@12@XZ + + + Name : ?SteeleMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z + + + Name : ?SteeleMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z + + + Name : ?SteeleMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z + + + Name : ?Step@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?Stop@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@I@Z + + + Name : ?Stop@node@@YAHPEAVEnvironment@1@W4Flags@StopFlags@1@@Z + + + Name : ?StopProfiling@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?StopSamplingHeapProfiler@HeapProfiler@v8@@QEAAXXZ + + + Name : ?StopTrackingHeapObjects@HeapProfiler@v8@@QEAAXXZ + + + Name : ?StrictEquals@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + + + Name : ?StringEquals@String@v8@@QEBA_NV?$Local@VString@v8@@@2@@Z + + + Name : ?Stringify@JSON@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?SupportsCppClassNamesAsObjectNames@NameProvider@cppgc@@SA_NXZ + + + Name : ?SyntaxError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?SyntheticModuleEvaluationStepsCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VModule@v8@@@5@@Z + + + Name : ?SystemClockTimeMillis@Platform@v8@@KANXZ + + + Name : ?TableSlotForTesting@GCInfoTable@internal@cppgc@@QEAAAEAUGCInfo@23@G@Z + + + Name : ?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@AEBUHeapSnapshotOptions@12@@Z + + + Name : ?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@PEAVActivityControl@2@PEAVObjectNameResolver@12@_N2@Z + + + Name : ?TearDownOncePerProcess@node@@YAXXZ + + + Name : ?Terminate@CppHeap@v8@@QEAAXXZ + + + Name : ?TerminateExecution@Isolate@v8@@QEAAXXZ + + + Name : ?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@1@Z + + + Name : ?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z + + + Name : ?ThrowError@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z + + + Name : ?ThrowException@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V32@@Z + + + Name : ?ToArrayIndex@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToBigInt@Value@v8@@QEBA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToBoolean@Value@v8@@QEBA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?ToDetailString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToISOString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?ToInt32@Value@v8@@QEBA?AV?$MaybeLocal@VInt32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToInteger@Value@v8@@QEBA?AV?$MaybeLocal@VInteger@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToLocalEmpty@api_internal@v8@@YAXXZ + + + Name : ?ToNumber@Value@v8@@QEBA?AV?$MaybeLocal@VNumber@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToNumeric@Value@v8@@QEBA?AV?$MaybeLocal@VNumeric@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToObject@Value@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToPrimitive@Value@v8@@QEBA?AV?$MaybeLocal@VPrimitive@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToString@SourceLocation@v8@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + + + Name : ?ToString@V8StackTraceId@v8_inspector@@QEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ + + + Name : ?ToString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToUTCString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?ToUint32@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?ToWordsArray@BigInt@v8@@QEBAXPEAH0PEA_K@Z + + + Name : ?ToggleMainThreadMarking@StandaloneTestingHeap@testing@cppgc@@QEAAX_N@Z + + + Name : ?TotalAllocatedObjectSize@ProcessHeapStatistics@cppgc@@SA_KXZ + + + Name : ?TotalAllocatedSpace@ProcessHeapStatistics@cppgc@@SA_KXZ + + + Name : ?TransferArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z + + + Name : ?TransferArrayBuffer@ValueSerializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z + + + Name : ?TransferSharedArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VSharedArrayBuffer@v8@@@2@@Z + + + Name : ?TransitionDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@@Z + + + Name : ?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVEnvironment@1@PEBD1AEBV234@V?$Local@VValue@v8@@@v8@@@Z + + + Name : ?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVIsolate@v8@@PEBD1AEBV234@V?$Local@VValue@v8@@@6@@Z + + + Name : ?TryAllocateNodeFromFreeList@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + + + Name : ?TryGetCurrent@Isolate@v8@@SAPEAV12@XZ + + + Name : ?TryHandleWebAssemblyTrapWindows@v8@@YA_NPEAU_EXCEPTION_POINTERS@@@Z + + + Name : ?TryLookupJitPage@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z + + + Name : ?TryLookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z + + + Name : ?TryResetRoot@EmbedderRootsHandler@v8@@UEAA_NAEBV?$TracedReference@VValue@v8@@@2@@Z + + + Name : ?TryUnwindV8Frames@Unwinder@v8@@SA_NAEBUJSEntryStubs@2@_KPEBUMemoryRange@2@PEAURegisterState@2@PEBX@Z + + + Name : ?TypeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?TypeOf@Value@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + + + Name : ?UVException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD111@Z + + + Name : ?Uint32Value@Value@v8@@QEBA?AV?$Maybe@I@2@V?$Local@VContext@v8@@@2@@Z + + + Name : ?Uint64Value@BigInt@v8@@QEBA_KPEA_N@Z + + + Name : ?Unaccount@ExternalStringResourceBase@String@v8@@UEAAXPEAVIsolate@3@@Z + + + Name : ?Unlock@ExternalStringResourceBase@String@v8@@MEBAXXZ + + + Name : ?Unpack@WasmStreaming@v8@@SA?AV?$shared_ptr@VWasmStreaming@v8@@@__Cr@std@@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?UnregisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z + + + Name : ?UnregisterAllocationsExcept@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0AEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@@Z + + + Name : ?UnregisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z + + + Name : ?UnregisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z + + + Name : ?UnregisterRange@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0@Z + + + Name : ?UnregisterWasmAllocation@ThreadIsolation@internal@v8@@SAX_K0@Z + + + Name : ?Unwrap@Object@v8@@CAPEAXPEAVIsolate@2@_KUCppHeapPointerTagRange@2@@Z + + + Name : ?Update@TypecheckWitness@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + + + Name : ?UpdateDataCache@ExternalOneByteStringResource@String@v8@@QEAAXXZ + + + Name : ?UpdateDataCache@ExternalStringResource@String@v8@@QEAAXXZ + + + Name : ?UpdateLoadStartTime@Isolate@v8@@QEAAXXZ + + + Name : ?UseDefaultSecurityToken@Context@v8@@QEAAXXZ + + + Name : ?UseDetailedSourcePositionsForProfiling@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z + + + Name : ?Utf8Length@String@v8@@QEBAHPEAVIsolate@2@@Z + + + Name : ?V8Node@EmbedderGraph@v8@@UEAAPEAVNode@12@AEBV?$Local@VData@v8@@@2@@Z + + + Name : ?ValidateIndex@FastApiTypedArrayBase@v8@@QEBAX_K@Z + + + Name : ?Value@Boolean@v8@@QEBA_NXZ + + + Name : ?Value@External@v8@@QEBAPEAXXZ + + + Name : ?Value@Int32@v8@@QEBAHXZ + + + Name : ?Value@Integer@v8@@QEBA_JXZ + + + Name : ?Value@Number@v8@@QEBANXZ + + + Name : ?Value@Uint32@v8@@QEBAIXZ + + + Name : ?ValueOf@BigIntObject@v8@@QEBA?AV?$Local@VBigInt@v8@@@2@XZ + + + Name : ?ValueOf@BooleanObject@v8@@QEBA_NXZ + + + Name : ?ValueOf@Date@v8@@QEBANXZ + + + Name : ?ValueOf@NumberObject@v8@@QEBANXZ + + + Name : ?ValueOf@StringObject@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + + + Name : ?ValueOf@SymbolObject@v8@@QEBA?AV?$Local@VSymbol@v8@@@2@XZ + + + Name : ?VerifyExternalStringResource@String@v8@@AEBAXPEAVExternalStringResource@12@@Z + + + Name : ?VerifyExternalStringResourceBase@String@v8@@AEBAXPEAVExternalStringResourceBase@12@W4Encoding@12@@Z + + + Name : ?VerifyHandleIsNonEmpty@internal@v8@@YAX_N@Z + + + Name : ?VerifyHostDefinedOptions@ScriptOrigin@v8@@AEBAXXZ + + + Name : ?VerifyOnStack@?$StackAllocated@$00@api_internal@v8@@IEBAXXZ + + + Name : ?Visit@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@@Z + + + Name : ?VisitEphemeron@Visitor@cppgc@@MEAAXPEBX0UTraceDescriptor@2@@Z + + + Name : ?VisitExternalResources@Isolate@v8@@QEAAXPEAVExternalResourceVisitor@2@@Z + + + Name : ?VisitExternalString@ExternalResourceVisitor@v8@@UEAAXV?$Local@VString@v8@@@2@@Z + + + Name : ?VisitMultipleCompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z + + + Name : ?VisitMultipleUncompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z + + + Name : ?VisitPersistentHandle@PersistentHandleVisitor@v8@@UEAAXPEAV?$Persistent@VValue@v8@@V?$NonCopyablePersistentTraits@VValue@v8@@@2@@2@G@Z + + + Name : ?VisitRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@AEBVSourceLocation@v8@@@Z + + + Name : ?VisitWeak@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@P6AXAEBVLivenessBroker@2@0@Z0@Z + + + Name : ?VisitWeakContainer@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@1P6AXAEBVLivenessBroker@2@0@Z0@Z + + + Name : ?VisitWeakRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@P6AXAEBVLivenessBroker@3@0@Z0AEBVSourceLocation@v8@@@Z + + + Name : ?Wake@AtomicsWaitWakeHandle@Isolate@v8@@QEAAXXZ + + + Name : ?WasDetached@ArrayBuffer@v8@@QEBA_NXZ + + + Name : ?WasmCompileError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?WasmLinkError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?WasmRuntimeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + + + Name : ?WinapiErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z + + + Name : ?WordCount@BigInt@v8@@QEBAHXZ + + + Name : ?Wrap@Object@v8@@CAXPEAVIsolate@2@_KW4CppHeapPointerTag@2@PEAX@Z + + + Name : ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$BasicTracedReference@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + + + Name : ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$Local@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + + + Name : ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + + + Name : ?Write@String@v8@@QEBAHPEAVIsolate@2@PEAGHHH@Z + + + Name : ?WriteDouble@ValueSerializer@v8@@QEAAXN@Z + + + Name : ?WriteHeader@ValueSerializer@v8@@QEAAXXZ + + + Name : ?WriteHeapStatsChunk@OutputStream@v8@@UEAA?AW4WriteResult@12@PEAUHeapStatsUpdate@2@H@Z + + + Name : ?WriteHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z + + + Name : ?WriteOneByte@String@v8@@QEBAHPEAVIsolate@2@PEAEHHH@Z + + + Name : ?WriteProtectMemory@ThreadIsolation@internal@v8@@SA_N_K0W4Permission@PageAllocator@3@@Z + + + Name : ?WriteRawBytes@ValueSerializer@v8@@QEAAXPEBX_K@Z + + + Name : ?WriteUint32@ValueSerializer@v8@@QEAAXI@Z + + + Name : ?WriteUint64@ValueSerializer@v8@@QEAAX_K@Z + + + Name : ?WriteUtf8@String@v8@@QEBAHPEAVIsolate@2@PEADHPEAHH@Z + + + Name : ?WriteValue@ValueSerializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + + + Name : ?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + + + Name : ?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?__annotate_contiguous_container@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z + + + Name : ?__annotate_contiguous_container@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z + + + Name : ?__annotate_delete@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + + + Name : ?__annotate_delete@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + + + Name : ?__annotate_increase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + + + Name : ?__annotate_increase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + + + Name : ?__annotate_new@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + + + Name : ?__annotate_new@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + + + Name : ?__annotate_shrink@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + + + Name : ?__annotate_shrink@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + + + Name : ?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + + + Name : ?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + + + Name : ?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?__base_destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?__base_destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?__clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + + + Name : ?__clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + + + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + + + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + + + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z + + + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z + + + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z + + + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z + + + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z + + + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z + + + Name : ?__destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?__destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?__invariants@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + + + Name : ?__invariants@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + + + Name : ?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@PEAUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@PEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@PEAUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@PEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + + + Name : ?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + + + Name : ?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + + + Name : ?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + + + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z + + + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + + + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + + + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z + + + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + + + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + + + Name : ?__move_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@00@Z + + + Name : ?__move_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@00@Z + + + Name : ?__recommend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z + + + Name : ?__recommend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z + + + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptFrame@v8@@AEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@PEAU45@@Z + + + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@@Z + + + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptInfo@v8@@AEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@PEAU45@@Z + + + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@@Z + + + Name : ?__throw_length_error@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + + + Name : ?__throw_length_error@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + + + Name : ?__throw_out_of_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + + + Name : ?__throw_out_of_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + + + Name : ?__vallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + + + Name : ?__vallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + + + Name : ?__vdeallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + + + Name : ?__vdeallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + + + Name : ?allocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAPEA_K_K@Z + + + Name : ?allocator@GCInfoTable@internal@cppgc@@QEBAAEAVPageAllocator@v8@@XZ + + + Name : ?allocator@ThreadIsolation@internal@v8@@CAPEAVThreadIsolatedAllocator@3@XZ + + + Name : ?array_buffer_allocator@CommonEnvironmentSetup@node@@QEBA?AV?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@XZ + + + Name : ?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z + + + Name : ?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z + + + Name : ?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z + + + Name : ?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z + + + Name : ?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z + + + Name : ?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z + + + Name : ?auto_enable@Extension@v8@@QEAA_NXZ + + + Name : ?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?begin@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ + + + Name : ?begin@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?begin@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?begin@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?begin@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?begin@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ + + + Name : ?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?beginUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ + + + Name : ?build_@Version@internal@v8@@0HA + + + Name : ?bytecode_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + + + Name : ?cached_data@ExternalOneByteStringResource@String@v8@@QEBAPEBDXZ + + + Name : ?cached_data@ExternalStringResource@String@v8@@QEBAPEBGXZ + + + Name : ?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NVStringView@2@@Z + + + Name : ?canExecuteScripts@V8InspectorClient@v8_inspector@@UEAA_NH@Z + + + Name : ?cancelTimer@V8InspectorClient@v8_inspector@@UEAAXPEAX@Z + + + Name : ?candidate_@Version@internal@v8@@0_NA + + + Name : ?capacity@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + + + Name : ?capacity@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + + + Name : ?card@AgeTable@internal@cppgc@@AEBA_K_K@Z + + + Name : ?cbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?cbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?cend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?cend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?characters16@StringView@v8_inspector@@QEBAPEBGXZ + + + Name : ?characters8@StringView@v8_inspector@@QEBAPEBEXZ + + + Name : ?clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + + + Name : ?clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + + + Name : ?code_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + + + Name : ?code_range_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + + + Name : ?compilation_details@StreamedSource@ScriptCompiler@v8@@QEAAAEAUCompilationDetails@23@XZ + + + Name : ?configurable@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?connect@V8Inspector@v8_inspector@@UEAA?AV?$unique_ptr@VV8InspectorSession@v8_inspector@@U?$default_delete@VV8InspectorSession@v8_inspector@@@__Cr@std@@@__Cr@std@@HPEAVChannel@12@VStringView@2@W4ClientTrustLevel@12@W4SessionPauseState@12@@Z + + + Name : ?consoleAPIMessage@V8InspectorClient@v8_inspector@@UEAAXHW4MessageErrorLevel@Isolate@v8@@AEBVStringView@2@1IIPEAVV8StackTrace@2@@Z + + + Name : ?consoleClear@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?consoleTime@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + + + Name : ?consoleTimeEnd@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + + + Name : ?consoleTimeStamp@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + + + Name : ?context@CommonEnvironmentSetup@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ + + + Name : ?context@ModuleWrap@loader@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ + + + Name : ?cpu_profiler_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + + + Name : ?crbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + + + Name : ?crbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + + + Name : ?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@VStringView@2@@Z + + + Name : ?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@__Cr@std@@@__Cr@std@@PEAVIsolate@v8@@PEAVV8InspectorClient@2@@Z + + + Name : ?crend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + + + Name : ?crend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + + + Name : ?currentTimeMS@V8InspectorClient@v8_inspector@@UEAANXZ + + + Name : ?data16@ValueView@String@v8@@QEBAPEBGXZ + + + Name : ?data8@ValueView@String@v8@@QEBAPEBEXZ + + + Name : ?data@?$MemorySpan@$$CBD@v8@@QEBAPEBDXZ + + + Name : ?data@?$MemorySpan@$$CBE@v8@@QEBAPEBEXZ + + + Name : ?data@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBAPEBVCFunction@2@XZ + + + Name : ?data@?$MemorySpan@E@v8@@QEBAPEAEXZ + + + Name : ?data@?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEBAPEAV?$Handle@VObject@internal@v8@@@internal@2@XZ + + + Name : ?data@?$MemorySpan@_K@v8@@QEBAPEA_KXZ + + + Name : ?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?data@Binary@protocol@v8_inspector@@QEBAPEBEXZ + + + Name : ?deallocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAXPEA_K_K@Z + + + Name : ?deepSerialize@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@UDeepSerializationResult@v8_inspector@@U?$default_delete@UDeepSerializationResult@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@HV?$Local@VObject@v8@@@7@@Z + + + Name : ?dependencies@Extension@v8@@QEBAPEAPEBDXZ + + + Name : ?dependency_count@Extension@v8@@QEBAHXZ + + + Name : ?descriptionForValueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VContext@v8@@@v8@@V?$Local@VValue@v8@@@7@@Z + + + Name : ?dispatchError@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VMessage@v8@@@4@V?$Local@VValue@v8@@@4@@Z + + + Name : ?does_zap_garbage@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?embedder_@Version@internal@v8@@0PEBDEB + + + Name : ?empty@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_NXZ + + + Name : ?empty@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + + + Name : ?empty@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + + + Name : ?end@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ + + + Name : ?end@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?end@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?end@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?end@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + + + Name : ?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?end@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ + + + Name : ?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?endUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ + + + Name : ?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UEAA?AV?$Local@VContext@v8@@@v8@@H@Z + + + Name : ?enumerable@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?env@CommonEnvironmentSetup@node@@QEBAPEAVEnvironment@2@XZ + + + Name : ?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@0@Z + + + Name : ?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@@Z + + + Name : ?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@0@Z + + + Name : ?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@@Z + + + Name : ?event_loop@CommonEnvironmentSetup@node@@QEBAPEAUuv_loop_s@@XZ + + + Name : ?executionContextId@V8ContextInfo@v8_inspector@@SAHV?$Local@VContext@v8@@@v8@@@Z + + + Name : ?external_memory@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?external_script_source_size@HeapCodeStatistics@v8@@QEAA_KXZ + + + Name : ?fromBase64@Binary@protocol@v8_inspector@@SA?AV123@AEBVString16@3@PEA_N@Z + + + Name : ?fromBinary@Domain@API@Schema@protocol@v8_inspector@@SA?AV?$unique_ptr@VDomain@API@Schema@protocol@v8_inspector@@U?$default_delete@VDomain@API@Schema@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + + + Name : ?fromBinary@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + + + Name : ?fromBinary@SearchMatch@API@Debugger@protocol@v8_inspector@@SA?AV?$unique_ptr@VSearchMatch@API@Debugger@protocol@v8_inspector@@U?$default_delete@VSearchMatch@API@Debugger@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + + + Name : ?fromBinary@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + + + Name : ?fromBinary@StackTraceId@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTraceId@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTraceId@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + + + Name : ?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$MemorySpan@$$CBE@v8@@@Z + + + Name : ?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$span@E@v8_crdtp@@@Z + + + Name : ?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEBG_K@Z + + + Name : ?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEB_S_K@Z + + + Name : ?fromUTF8@String16@v8_inspector@@SA?AV12@PEBD_K@Z + + + Name : ?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ + + + Name : ?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ + + + Name : ?g_age_table_size_@CagedHeapBase@internal@cppgc@@0_KA + + + Name : ?g_base_@CageBaseGlobal@internal@cppgc@@0TBase@123@A + + + Name : ?g_heap_base_@CagedHeapBase@internal@cppgc@@0_KA + + + Name : ?generateUniqueId@V8InspectorClient@v8_inspector@@UEAA_JXZ + + + Name : ?get@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?get_active_implementation@simdutf@@YAAEAV?$atomic_ptr@$$CBVimplementation@simdutf@@@internal@1@XZ + + + Name : ?get_allocator@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + + + Name : ?get_allocator@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + + + Name : ?get_async_id@AsyncResource@node@@QEBANXZ + + + Name : ?get_available_implementations@simdutf@@YAAEBVavailable_implementation_list@internal@1@XZ + + + Name : ?get_linked_module@binding@node@@YAPEAUnode_module@2@PEBD@Z + + + Name : ?get_private@PropertyDescriptor@v8@@QEBAPEAUPrivateData@12@XZ + + + Name : ?get_resource@AsyncResource@node@@QEAA?AV?$Local@VObject@v8@@@v8@@XZ + + + Name : ?get_trigger_async_id@AsyncResource@node@@QEBANXZ + + + Name : ?global_table_@GlobalGCInfoTable@internal@cppgc@@0PEAVGCInfoTable@23@EA + + + Name : ?has_configurable@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?has_enumerable@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?has_filter_context@CpuProfilingOptions@v8@@AEBA_NXZ + + + Name : ?has_get@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?has_set@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?has_value@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?has_writable@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?heap@StrongRootAllocatorBase@internal@v8@@QEBAPEAVHeap@23@XZ + + + Name : ?heap_size_limit@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?impl@StreamedSource@ScriptCompiler@v8@@QEBAPEAUScriptStreamingData@internal@3@XZ + + + Name : ?initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + + + Name : ?initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + + + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@$$QEAUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@AEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@_KAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@$$QEAUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@AEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z + + + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@_KAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?installAdditionalCommandLineAPI@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VObject@v8@@@4@@Z + + + Name : ?is8Bit@StringView@v8_inspector@@QEBA_NXZ + + + Name : ?isInspectableHeapObject@V8InspectorClient@v8_inspector@@UEAA_NV?$Local@VObject@v8@@@v8@@@Z + + + Name : ?isValid@V8DebuggerId@v8_inspector@@QEBA_NXZ + + + Name : ?is_one_byte@ValueView@String@v8@@QEBA_NXZ + + + Name : ?isolate@CommonEnvironmentSetup@node@@QEBAPEAVIsolate@v8@@XZ + + + Name : ?isolate_data@CommonEnvironmentSetup@node@@QEBAPEAVIsolateData@2@XZ + + + Name : ?kAllocationGranularity@AgeTable@internal@cppgc@@0_KB + + + Name : ?kCardSizeInBytes@AgeTable@internal@cppgc@@2_KB + + + Name : ?kEmbedderFieldCount@ArrayBuffer@v8@@2HB + + + Name : ?kEmbedderFieldCount@ArrayBufferView@v8@@2HB + + + Name : ?kEmbedderFieldCount@Promise@v8@@2HB + + + Name : ?kFlagCount@RegExp@v8@@2HB + + + Name : ?kHeapBaseShift@?1??AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z@4_KB + + + Name : ?kHiddenName@NameProvider@cppgc@@2QBDB + + + Name : ?kInitialWantedLimit@GCInfoTable@internal@cppgc@@2GB + + + Name : ?kInternalFieldCount@ArrayBuffer@v8@@2HB + + + Name : ?kInternalFieldCount@ArrayBufferView@v8@@2HB + + + Name : ?kInternalFieldCount@SharedArrayBuffer@v8@@2HB + + + Name : ?kLineOffsetNotFound@Function@v8@@2HB + + + Name : ?kLowerHalfWordMask@CageBaseGlobal@internal@cppgc@@0_KB + + + Name : ?kMB@ResourceConstraints@v8@@0_KB + + + Name : ?kManagedTag@WasmStreaming@v8@@2W4ExternalPointerTag@internal@2@B + + + Name : ?kMaxByteLength@TypedArray@v8@@2_KB + + + Name : ?kMaxFramesCount@TickSample@internal@v8@@2IB + + + Name : ?kMaxFramesCountLog2@TickSample@internal@v8@@2IB + + + Name : ?kMaxIndex@GCInfoTable@internal@cppgc@@2GB + + + Name : ?kMaxLength@BigInt64Array@v8@@2_KB + + + Name : ?kMaxLength@BigUint64Array@v8@@2_KB + + + Name : ?kMaxLength@Float16Array@v8@@0_KB + + + Name : ?kMaxLength@Float32Array@v8@@2_KB + + + Name : ?kMaxLength@Float64Array@v8@@2_KB + + + Name : ?kMaxLength@Int16Array@v8@@2_KB + + + Name : ?kMaxLength@Int32Array@v8@@2_KB + + + Name : ?kMaxLength@Int8Array@v8@@2_KB + + + Name : ?kMaxLength@String@v8@@2HB + + + Name : ?kMaxLength@Uint16Array@v8@@2_KB + + + Name : ?kMaxLength@Uint32Array@v8@@2_KB + + + Name : ?kMaxLength@Uint8Array@v8@@2_KB + + + Name : ?kMaxLength@Uint8ClampedArray@v8@@2_KB + + + Name : ?kMinCodePagesBufferSize@Isolate@v8@@2_KB + + + Name : ?kMinIndex@GCInfoTable@internal@cppgc@@2GB + + + Name : ?kNoColumnInfo@Message@v8@@2HB + + + Name : ?kNoColumnNumberInfo@AllocationProfile@v8@@2HB + + + Name : ?kNoColumnNumberInfo@CpuProfileNode@v8@@2HB + + + Name : ?kNoLineNumberInfo@AllocationProfile@v8@@2HB + + + Name : ?kNoLineNumberInfo@CpuProfileNode@v8@@2HB + + + Name : ?kNoLineNumberInfo@Message@v8@@2HB + + + Name : ?kNoNameDeducible@NameProvider@cppgc@@2QBDB + + + Name : ?kNoSampleLimit@CpuProfilingOptions@v8@@2IB + + + Name : ?kNoScriptId@UnboundScript@v8@@2HB + + + Name : ?kNoScriptIdInfo@Message@v8@@2HB + + + Name : ?kNoWasmFunctionIndexInfo@Message@v8@@2HB + + + Name : ?kPersistentHandleNoClassId@HeapProfiler@v8@@2GB + + + Name : ?kRequiredSize@AgeTable@internal@cppgc@@0_KB + + + Name : ?kUnknownObjectId@HeapProfiler@v8@@2IB + + + Name : ?length@FastApiTypedArrayBase@v8@@QEBA_KXZ + + + Name : ?length@StringView@v8_inspector@@QEBA_KXZ + + + Name : ?length@Utf8Value@String@v8@@QEBAHXZ + + + Name : ?length@Value@String@v8@@QEBAHXZ + + + Name : ?length@ValueView@String@v8@@QEBAHXZ + + + Name : ?major_@Version@internal@v8@@0HA + + + Name : ?malloced_memory@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?maxAsyncCallStackDepthChanged@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + + + Name : ?max_samples@CpuProfilingOptions@v8@@QEBAIXZ + + + Name : ?max_size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + + + Name : ?max_size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + + + Name : ?max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + + + Name : ?memoryInfo@V8InspectorClient@v8_inspector@@UEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@4@V?$Local@VContext@v8@@@4@@Z + + + Name : ?minor_@Version@internal@v8@@0HA + + + Name : ?mode@CpuProfilingOptions@v8@@QEBA?AW4CpuProfilingMode@2@XZ + + + Name : ?muteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?name@Extension@v8@@QEBAPEBDXZ + + + Name : ?number_of_detached_contexts@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?number_of_native_contexts@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?object_count@HeapObjectStatistics@v8@@QEAA_KXZ + + + Name : ?object_size@HeapObjectStatistics@v8@@QEAA_KXZ + + + Name : ?object_sub_type@HeapObjectStatistics@v8@@QEAAPEBDXZ + + + Name : ?object_type@HeapObjectStatistics@v8@@QEAAPEBDXZ + + + Name : ?pair@V8DebuggerId@v8_inspector@@QEBA?AU?$pair@_J_J@__Cr@std@@XZ + + + Name : ?patch_@Version@internal@v8@@0HA + + + Name : ?peak_malloced_memory@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?physical_space_size@HeapSpaceStatistics@v8@@QEAA_KXZ + + + Name : ?pop_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + + + Name : ?pop_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + + + Name : ?print@TickSample@internal@v8@@QEBAXXZ + + + Name : ?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXXZ + + + Name : ?raw_filter_context@CpuProfilingOptions@v8@@AEBAPEAXXZ + + + Name : ?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + + + Name : ?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + + + Name : ?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + + + Name : ?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + + + Name : ?read_only_space_physical_size@SharedMemoryStatistics@v8@@QEAA_KXZ + + + Name : ?read_only_space_size@SharedMemoryStatistics@v8@@QEAA_KXZ + + + Name : ?read_only_space_used_size@SharedMemoryStatistics@v8@@QEAA_KXZ + + + Name : ?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + + + Name : ?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + + + Name : ?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + + + Name : ?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + + + Name : ?reserve@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + + + Name : ?reserve@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + + + Name : ?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + + + Name : ?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + + + Name : ?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + + + Name : ?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + + + Name : ?resourceNameToUrl@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@AEBVStringView@2@@Z + + + Name : ?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?runMessageLoopOnInstrumentationPause@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?sampling_interval_us@CpuProfilingOptions@v8@@QEBAHXZ + + + Name : ?set@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?set_auto_enable@Extension@v8@@QEAAX_N@Z + + + Name : ?set_code_range_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + + + Name : ?set_configurable@PropertyDescriptor@v8@@QEAAX_N@Z + + + Name : ?set_enumerable@PropertyDescriptor@v8@@QEAAX_N@Z + + + Name : ?set_initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + + + Name : ?set_initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + + + Name : ?set_max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + + + Name : ?set_max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + + + Name : ?set_stack_limit@ResourceConstraints@v8@@QEAAXPEAI@Z + + + Name : ?shrink_to_fit@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + + + Name : ?shrink_to_fit@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + + + Name : ?size@?$MemorySpan@$$CBD@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@$$CBE@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@E@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA_KXZ + + + Name : ?size@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA_KXZ + + + Name : ?size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + + + Name : ?size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + + + Name : ?size@Binary@protocol@v8_inspector@@QEBA_KXZ + + + Name : ?snapshot_creator@CommonEnvironmentSetup@node@@QEAAPEAVSnapshotCreator@v8@@XZ + + + Name : ?soname_@Version@internal@v8@@0PEBDEB + + + Name : ?source@Extension@v8@@QEBAPEBVExternalOneByteStringResource@String@2@XZ + + + Name : ?source_length@Extension@v8@@QEBA_KXZ + + + Name : ?source_url@CompiledWasmModule@v8@@QEBAAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + + + Name : ?space_available_size@HeapSpaceStatistics@v8@@QEAA_KXZ + + + Name : ?space_name@HeapSpaceStatistics@v8@@QEAAPEBDXZ + + + Name : ?space_size@HeapSpaceStatistics@v8@@QEAA_KXZ + + + Name : ?space_used_size@HeapSpaceStatistics@v8@@QEAA_KXZ + + + Name : ?stack_limit@ResourceConstraints@v8@@QEBAPEAIXZ + + + Name : ?startRepeatingTimer@V8InspectorClient@v8_inspector@@UEAAXNP6AXPEAX@Z0@Z + + + Name : ?swap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z + + + Name : ?swap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z + + + Name : ?toBase64@Binary@protocol@v8_inspector@@QEBA?AVString16@3@XZ + + + Name : ?toString@V8DebuggerId@v8_inspector@@QEBA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ + + + Name : ?total_allocated_object_size_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A + + + Name : ?total_allocated_space_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A + + + Name : ?total_available_size@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?total_global_handles_size@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?total_heap_size@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?total_heap_size_executable@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?total_physical_size@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?trusted_data_@ThreadIsolation@internal@v8@@0UTrustedData@123@A + + + Name : ?unmuteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z + + + Name : ?used_global_handles_size@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?used_heap_size@HeapStatistics@v8@@QEAA_KXZ + + + Name : ?utf8@String16@v8_inspector@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + + + Name : ?value@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + + + Name : ?valueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@@Z + + + Name : ?version_string_@Version@internal@v8@@0PEBDEB + + + Name : ?writable@PropertyDescriptor@v8@@QEBA_NXZ + + + Name : ?write_barrier_enabled_@WriteBarrier@internal@cppgc@@0VAtomicEntryFlag@23@A + + + Name : Cr_z_adler32 + + + Name : Cr_z_adler32_combine + + + Name : Cr_z_adler32_z + + + Name : Cr_z_compress + + + Name : Cr_z_compress2 + + + Name : Cr_z_compressBound + + + Name : Cr_z_crc32 + + + Name : Cr_z_crc32_combine + + + Name : Cr_z_crc32_combine_gen + + + Name : Cr_z_crc32_combine_op + + + Name : Cr_z_crc32_z + + + Name : Cr_z_deflate + + + Name : Cr_z_deflateBound + + + Name : Cr_z_deflateCopy + + + Name : Cr_z_deflateEnd + + + Name : Cr_z_deflateGetDictionary + + + Name : Cr_z_deflateInit2_ + + + Name : Cr_z_deflateInit_ + + + Name : Cr_z_deflateParams + + + Name : Cr_z_deflatePending + + + Name : Cr_z_deflatePrime + + + Name : Cr_z_deflateReset + + + Name : Cr_z_deflateResetKeep + + + Name : Cr_z_deflateSetDictionary + + + Name : Cr_z_deflateSetHeader + + + Name : Cr_z_deflateTune + + + Name : Cr_z_get_crc_table + + + Name : Cr_z_uncompress + + + Name : Cr_z_uncompress2 + + + Name : Cr_z_zError + + + Name : Cr_z_zlibCompileFlags + + + Name : Cr_z_zlibVersion + + + Name : CrashForExceptionInNonABICompliantCodeRange + + + Name : ExportedContentMain + + + Name : GetHandleVerifier + + + Name : IsSandboxedProcess + + + Name : NodeContextifyContextMetrics1 + + + Name : PerfTrace + + + Name : QQMain + + + Name : napi_acquire_threadsafe_function + + + Name : napi_add_async_cleanup_hook + + + Name : napi_add_env_cleanup_hook + + + Name : napi_add_finalizer + + + Name : napi_adjust_external_memory + + + Name : napi_async_destroy + + + Name : napi_async_init + + + Name : napi_call_function + + + Name : napi_call_threadsafe_function + + + Name : napi_cancel_async_work + + + Name : napi_check_object_type_tag + + + Name : napi_close_callback_scope + + + Name : napi_close_escapable_handle_scope + + + Name : napi_close_handle_scope + + + Name : napi_coerce_to_bool + + + Name : napi_coerce_to_number + + + Name : napi_coerce_to_object + + + Name : napi_coerce_to_string + + + Name : napi_create_array + + + Name : napi_create_array_with_length + + + Name : napi_create_arraybuffer + + + Name : napi_create_async_work + + + Name : napi_create_bigint_int64 + + + Name : napi_create_bigint_uint64 + + + Name : napi_create_bigint_words + + + Name : napi_create_buffer + + + Name : napi_create_buffer_copy + + + Name : napi_create_dataview + + + Name : napi_create_date + + + Name : napi_create_double + + + Name : napi_create_error + + + Name : napi_create_external + + + Name : napi_create_external_arraybuffer + + + Name : napi_create_external_buffer + + + Name : napi_create_function + + + Name : napi_create_int32 + + + Name : napi_create_int64 + + + Name : napi_create_object + + + Name : napi_create_promise + + + Name : napi_create_range_error + + + Name : napi_create_reference + + + Name : napi_create_string_latin1 + + + Name : napi_create_string_utf16 + + + Name : napi_create_string_utf8 + + + Name : napi_create_symbol + + + Name : napi_create_threadsafe_function + + + Name : napi_create_type_error + + + Name : napi_create_typedarray + + + Name : napi_create_uint32 + + + Name : napi_define_class + + + Name : napi_define_properties + + + Name : napi_delete_async_work + + + Name : napi_delete_element + + + Name : napi_delete_property + + + Name : napi_delete_reference + + + Name : napi_detach_arraybuffer + + + Name : napi_escape_handle + + + Name : napi_fatal_error + + + Name : napi_fatal_exception + + + Name : napi_get_all_property_names + + + Name : napi_get_and_clear_last_exception + + + Name : napi_get_array_length + + + Name : napi_get_arraybuffer_info + + + Name : napi_get_boolean + + + Name : napi_get_buffer_info + + + Name : napi_get_cb_info + + + Name : napi_get_dataview_info + + + Name : napi_get_date_value + + + Name : napi_get_element + + + Name : napi_get_global + + + Name : napi_get_instance_data + + + Name : napi_get_last_error_info + + + Name : napi_get_named_property + + + Name : napi_get_new_target + + + Name : napi_get_node_version + + + Name : napi_get_null + + + Name : napi_get_property + + + Name : napi_get_property_names + + + Name : napi_get_prototype + + + Name : napi_get_reference_value + + + Name : napi_get_threadsafe_function_context + + + Name : napi_get_typedarray_info + + + Name : napi_get_undefined + + + Name : napi_get_uv_event_loop + + + Name : napi_get_value_bigint_int64 + + + Name : napi_get_value_bigint_uint64 + + + Name : napi_get_value_bigint_words + + + Name : napi_get_value_bool + + + Name : napi_get_value_double + + + Name : napi_get_value_external + + + Name : napi_get_value_int32 + + + Name : napi_get_value_int64 + + + Name : napi_get_value_string_latin1 + + + Name : napi_get_value_string_utf16 + + + Name : napi_get_value_string_utf8 + + + Name : napi_get_value_uint32 + + + Name : napi_get_version + + + Name : napi_has_element + + + Name : napi_has_named_property + + + Name : napi_has_own_property + + + Name : napi_has_property + + + Name : napi_instanceof + + + Name : napi_is_array + + + Name : napi_is_arraybuffer + + + Name : napi_is_buffer + + + Name : napi_is_dataview + + + Name : napi_is_date + + + Name : napi_is_detached_arraybuffer + + + Name : napi_is_error + + + Name : napi_is_exception_pending + + + Name : napi_is_promise + + + Name : napi_is_typedarray + + + Name : napi_make_callback + + + Name : napi_module_register + + + Name : napi_new_instance + + + Name : napi_object_freeze + + + Name : napi_object_seal + + + Name : napi_open_callback_scope + + + Name : napi_open_escapable_handle_scope + + + Name : napi_open_handle_scope + + + Name : napi_queue_async_work + + + Name : napi_ref_threadsafe_function + + + Name : napi_reference_ref + + + Name : napi_reference_unref + + + Name : napi_reject_deferred + + + Name : napi_release_threadsafe_function + + + Name : napi_remove_async_cleanup_hook + + + Name : napi_remove_env_cleanup_hook + + + Name : napi_remove_wrap + + + Name : napi_resolve_deferred + + + Name : napi_run_script + + + Name : napi_set_element + + + Name : napi_set_instance_data + + + Name : napi_set_named_property + + + Name : napi_set_property + + + Name : napi_strict_equals + + + Name : napi_throw + + + Name : napi_throw_error + + + Name : napi_throw_range_error + + + Name : napi_throw_type_error + + + Name : napi_type_tag_object + + + Name : napi_typeof + + + Name : napi_unref_threadsafe_function + + + Name : napi_unwrap + + + Name : napi_wrap + + + Name : node_api_create_external_string_latin1 + + + Name : node_api_create_external_string_utf16 + + + Name : node_api_create_property_key_latin1 + + + Name : node_api_create_property_key_utf16 + + + Name : node_api_create_property_key_utf8 + + + Name : node_api_create_syntax_error + + + Name : node_api_get_module_file_name + + + Name : node_api_post_finalizer + + + Name : node_api_symbol_for + + + Name : node_api_throw_syntax_error + + + Name : qq_magic_napi_register + + + Name : qq_magic_node_register + + + Name : sqlite3_dbdata_init + + + Name : uv_accept + + + Name : uv_async_init + + + Name : uv_async_send + + + Name : uv_available_parallelism + + + Name : uv_backend_fd + + + Name : uv_backend_timeout + + + Name : uv_buf_init + + + Name : uv_cancel + + + Name : uv_chdir + + + Name : uv_check_init + + + Name : uv_check_start + + + Name : uv_check_stop + + + Name : uv_clock_gettime + + + Name : uv_close + + + Name : uv_cond_broadcast + + + Name : uv_cond_destroy + + + Name : uv_cond_init + + + Name : uv_cond_signal + + + Name : uv_cond_timedwait + + + Name : uv_cond_wait + + + Name : uv_cpu_info + + + Name : uv_cpumask_size + + + Name : uv_cwd + + + Name : uv_default_loop + + + Name : uv_disable_stdio_inheritance + + + Name : uv_dlclose + + + Name : uv_dlerror + + + Name : uv_dlopen + + + Name : uv_dlsym + + + Name : uv_err_name + + + Name : uv_err_name_r + + + Name : uv_exepath + + + Name : uv_fileno + + + Name : uv_free_cpu_info + + + Name : uv_free_interface_addresses + + + Name : uv_freeaddrinfo + + + Name : uv_fs_access + + + Name : uv_fs_chmod + + + Name : uv_fs_chown + + + Name : uv_fs_close + + + Name : uv_fs_closedir + + + Name : uv_fs_copyfile + + + Name : uv_fs_event_getpath + + + Name : uv_fs_event_init + + + Name : uv_fs_event_start + + + Name : uv_fs_event_stop + + + Name : uv_fs_fchmod + + + Name : uv_fs_fchown + + + Name : uv_fs_fdatasync + + + Name : uv_fs_fstat + + + Name : uv_fs_fsync + + + Name : uv_fs_ftruncate + + + Name : uv_fs_futime + + + Name : uv_fs_get_path + + + Name : uv_fs_get_ptr + + + Name : uv_fs_get_result + + + Name : uv_fs_get_statbuf + + + Name : uv_fs_get_system_error + + + Name : uv_fs_get_type + + + Name : uv_fs_lchown + + + Name : uv_fs_link + + + Name : uv_fs_lstat + + + Name : uv_fs_lutime + + + Name : uv_fs_mkdir + + + Name : uv_fs_mkdtemp + + + Name : uv_fs_mkstemp + + + Name : uv_fs_open + + + Name : uv_fs_opendir + + + Name : uv_fs_poll_getpath + + + Name : uv_fs_poll_init + + + Name : uv_fs_poll_start + + + Name : uv_fs_poll_stop + + + Name : uv_fs_read + + + Name : uv_fs_readdir + + + Name : uv_fs_readlink + + + Name : uv_fs_realpath + + + Name : uv_fs_rename + + + Name : uv_fs_req_cleanup + + + Name : uv_fs_rmdir + + + Name : uv_fs_scandir + + + Name : uv_fs_scandir_next + + + Name : uv_fs_sendfile + + + Name : uv_fs_stat + + + Name : uv_fs_statfs + + + Name : uv_fs_symlink + + + Name : uv_fs_unlink + + + Name : uv_fs_utime + + + Name : uv_fs_write + + + Name : uv_get_available_memory + + + Name : uv_get_constrained_memory + + + Name : uv_get_free_memory + + + Name : uv_get_osfhandle + + + Name : uv_get_process_title + + + Name : uv_get_total_memory + + + Name : uv_getaddrinfo + + + Name : uv_getnameinfo + + + Name : uv_getrusage + + + Name : uv_gettimeofday + + + Name : uv_guess_handle + + + Name : uv_handle_get_data + + + Name : uv_handle_get_loop + + + Name : uv_handle_get_type + + + Name : uv_handle_set_data + + + Name : uv_handle_size + + + Name : uv_handle_type_name + + + Name : uv_has_ref + + + Name : uv_hrtime + + + Name : uv_idle_init + + + Name : uv_idle_start + + + Name : uv_idle_stop + + + Name : uv_if_indextoiid + + + Name : uv_if_indextoname + + + Name : uv_inet_ntop + + + Name : uv_inet_pton + + + Name : uv_interface_addresses + + + Name : uv_ip4_addr + + + Name : uv_ip4_name + + + Name : uv_ip6_addr + + + Name : uv_ip6_name + + + Name : uv_ip_name + + + Name : uv_is_active + + + Name : uv_is_closing + + + Name : uv_is_readable + + + Name : uv_is_writable + + + Name : uv_key_create + + + Name : uv_key_delete + + + Name : uv_key_get + + + Name : uv_key_set + + + Name : uv_kill + + + Name : uv_library_shutdown + + + Name : uv_listen + + + Name : uv_loadavg + + + Name : uv_loop_alive + + + Name : uv_loop_close + + + Name : uv_loop_configure + + + Name : uv_loop_delete + + + Name : uv_loop_fork + + + Name : uv_loop_get_data + + + Name : uv_loop_init + + + Name : uv_loop_new + + + Name : uv_loop_set_data + + + Name : uv_loop_size + + + Name : uv_metrics_idle_time + + + Name : uv_metrics_info + + + Name : uv_mutex_destroy + + + Name : uv_mutex_init + + + Name : uv_mutex_init_recursive + + + Name : uv_mutex_lock + + + Name : uv_mutex_trylock + + + Name : uv_mutex_unlock + + + Name : uv_now + + + Name : uv_once + + + Name : uv_open_osfhandle + + + Name : uv_os_environ + + + Name : uv_os_free_environ + + + Name : uv_os_free_group + + + Name : uv_os_free_passwd + + + Name : uv_os_get_group + + + Name : uv_os_get_passwd + + + Name : uv_os_get_passwd2 + + + Name : uv_os_getenv + + + Name : uv_os_gethostname + + + Name : uv_os_getpid + + + Name : uv_os_getppid + + + Name : uv_os_getpriority + + + Name : uv_os_homedir + + + Name : uv_os_setenv + + + Name : uv_os_setpriority + + + Name : uv_os_tmpdir + + + Name : uv_os_uname + + + Name : uv_os_unsetenv + + + Name : uv_pipe + + + Name : uv_pipe_bind + + + Name : uv_pipe_bind2 + + + Name : uv_pipe_chmod + + + Name : uv_pipe_connect + + + Name : uv_pipe_connect2 + + + Name : uv_pipe_getpeername + + + Name : uv_pipe_getsockname + + + Name : uv_pipe_init + + + Name : uv_pipe_open + + + Name : uv_pipe_pending_count + + + Name : uv_pipe_pending_instances + + + Name : uv_pipe_pending_type + + + Name : uv_poll_init + + + Name : uv_poll_init_socket + + + Name : uv_poll_start + + + Name : uv_poll_stop + + + Name : uv_prepare_init + + + Name : uv_prepare_start + + + Name : uv_prepare_stop + + + Name : uv_print_active_handles + + + Name : uv_print_all_handles + + + Name : uv_process_get_pid + + + Name : uv_process_kill + + + Name : uv_queue_work + + + Name : uv_random + + + Name : uv_read_start + + + Name : uv_read_stop + + + Name : uv_recv_buffer_size + + + Name : uv_ref + + + Name : uv_replace_allocator + + + Name : uv_req_get_data + + + Name : uv_req_get_type + + + Name : uv_req_set_data + + + Name : uv_req_size + + + Name : uv_req_type_name + + + Name : uv_resident_set_memory + + + Name : uv_run + + + Name : uv_rwlock_destroy + + + Name : uv_rwlock_init + + + Name : uv_rwlock_rdlock + + + Name : uv_rwlock_rdunlock + + + Name : uv_rwlock_tryrdlock + + + Name : uv_rwlock_trywrlock + + + Name : uv_rwlock_wrlock + + + Name : uv_rwlock_wrunlock + + + Name : uv_sem_destroy + + + Name : uv_sem_init + + + Name : uv_sem_post + + + Name : uv_sem_trywait + + + Name : uv_sem_wait + + + Name : uv_send_buffer_size + + + Name : uv_set_process_title + + + Name : uv_setup_args + + + Name : uv_shutdown + + + Name : uv_signal_init + + + Name : uv_signal_start + + + Name : uv_signal_start_oneshot + + + Name : uv_signal_stop + + + Name : uv_sleep + + + Name : uv_socketpair + + + Name : uv_spawn + + + Name : uv_stop + + + Name : uv_stream_get_write_queue_size + + + Name : uv_stream_set_blocking + + + Name : uv_strerror + + + Name : uv_strerror_r + + + Name : uv_tcp_bind + + + Name : uv_tcp_close_reset + + + Name : uv_tcp_connect + + + Name : uv_tcp_getpeername + + + Name : uv_tcp_getsockname + + + Name : uv_tcp_init + + + Name : uv_tcp_init_ex + + + Name : uv_tcp_keepalive + + + Name : uv_tcp_nodelay + + + Name : uv_tcp_open + + + Name : uv_tcp_simultaneous_accepts + + + Name : uv_thread_create + + + Name : uv_thread_create_ex + + + Name : uv_thread_equal + + + Name : uv_thread_getaffinity + + + Name : uv_thread_getcpu + + + Name : uv_thread_join + + + Name : uv_thread_self + + + Name : uv_thread_setaffinity + + + Name : uv_timer_again + + + Name : uv_timer_get_due_in + + + Name : uv_timer_get_repeat + + + Name : uv_timer_init + + + Name : uv_timer_set_repeat + + + Name : uv_timer_start + + + Name : uv_timer_stop + + + Name : uv_translate_sys_error + + + Name : uv_try_write + + + Name : uv_try_write2 + + + Name : uv_tty_get_vterm_state + + + Name : uv_tty_get_winsize + + + Name : uv_tty_init + + + Name : uv_tty_reset_mode + + + Name : uv_tty_set_mode + + + Name : uv_tty_set_vterm_state + + + Name : uv_udp_bind + + + Name : uv_udp_connect + + + Name : uv_udp_get_send_queue_count + + + Name : uv_udp_get_send_queue_size + + + Name : uv_udp_getpeername + + + Name : uv_udp_getsockname + + + Name : uv_udp_init + + + Name : uv_udp_init_ex + + + Name : uv_udp_open + + + Name : uv_udp_recv_start + + + Name : uv_udp_recv_stop + + + Name : uv_udp_send + + + Name : uv_udp_set_broadcast + + + Name : uv_udp_set_membership + + + Name : uv_udp_set_multicast_interface + + + Name : uv_udp_set_multicast_loop + + + Name : uv_udp_set_multicast_ttl + + + Name : uv_udp_set_source_membership + + + Name : uv_udp_set_ttl + + + Name : uv_udp_try_send + + + Name : uv_udp_using_recvmmsg + + + Name : uv_unref + + + Name : uv_update_time + + + Name : uv_uptime + + + Name : uv_version + + + Name : uv_version_string + + + Name : uv_walk + + + Name : uv_write + + + Name : uv_write2 + +[-] Export listing done diff --git a/test/meta/QQNT-EXPORT.txt b/test/meta/QQNT-EXPORT.txt new file mode 100644 index 0000000..b8be457 --- /dev/null +++ b/test/meta/QQNT-EXPORT.txt @@ -0,0 +1,9623 @@ +[-] Export listing for file : D:\Program Files\Tencent\QQNT\resources\app\QQNT.dll +Export 1 : + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0DAAAA@H@v8@@YA_NV?$Local@VArray@v8@@@0@PEAHI@Z + VA : 0x5532EB0 +Export 2 : + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0EAAAA@I@v8@@YA_NV?$Local@VArray@v8@@@0@PEAII@Z + VA : 0x5532EB0 +Export 3 : + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0HAAAA@M@v8@@YA_NV?$Local@VArray@v8@@@0@PEAMI@Z + VA : 0x5532FA0 +Export 4 : + Name : ??$TryToCopyAndConvertArrayToCppBuffer@$0IAAAA@N@v8@@YA_NV?$Local@VArray@v8@@@0@PEANI@Z + VA : 0x55330B0 +Export 5 : + Name : ??$ValidateCallbackInfo@VArray@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VArray@v8@@@1@@Z + VA : 0x5532AD0 +Export 6 : + Name : ??$ValidateCallbackInfo@VBoolean@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VBoolean@v8@@@1@@Z + VA : 0x5532AD0 +Export 7 : + Name : ??$ValidateCallbackInfo@VInteger@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VInteger@v8@@@1@@Z + VA : 0x5532AD0 +Export 8 : + Name : ??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@VValue@v8@@@1@@Z + VA : 0x55328C0 +Export 9 : + Name : ??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VValue@v8@@@1@@Z + VA : 0x5532AD0 +Export 10 : + Name : ??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@X@1@@Z + VA : 0x55328C0 +Export 11 : + Name : ??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@X@1@@Z + VA : 0x5532CE0 +Export 12 : + Name : ??0?$MemorySpan@$$CBD@v8@@QEAA@XZ + VA : 0x2B9870 +Export 13 : + Name : ??0?$MemorySpan@$$CBE@v8@@QEAA@XZ + VA : 0x2B9870 +Export 14 : + Name : ??0?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 15 : + Name : ??0?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 16 : + Name : ??0?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 17 : + Name : ??0?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 18 : + Name : ??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 19 : + Name : ??0?$MemorySpan@$$CB_K@v8@@QEAA@XZ + VA : 0x2B9870 +Export 20 : + Name : ??0?$MemorySpan@E@v8@@QEAA@XZ + VA : 0x2B9870 +Export 21 : + Name : ??0?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 22 : + Name : ??0?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 23 : + Name : ??0?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAA@XZ + VA : 0x2B9870 +Export 24 : + Name : ??0?$MemorySpan@_K@v8@@QEAA@XZ + VA : 0x2B9870 +Export 25 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z + VA : 0x5973C0 +Export 26 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + VA : 0x5973C0 +Export 27 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z + VA : 0xBFFC80 +Export 28 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + VA : 0xBFFC80 +Export 29 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + VA : 0x1F3060 +Export 30 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z + VA : 0xC004D0 +Export 31 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + VA : 0xC004D0 +Export 32 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + VA : 0x1F3060 +Export 33 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z + VA : 0xC002B0 +Export 34 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00360 +Export 35 : + Name : ??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z + VA : 0xC002B0 +Export 36 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@@Z + VA : 0x5973C0 +Export 37 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + VA : 0x5973C0 +Export 38 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@@Z + VA : 0xC01D30 +Export 39 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + VA : 0xC01D30 +Export 40 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + VA : 0x1F3060 +Export 41 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z + VA : 0xC02120 +Export 42 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + VA : 0xC02120 +Export 43 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + VA : 0x1F3060 +Export 44 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_K@Z + VA : 0xC01B20 +Export 45 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC01C20 +Export 46 : + Name : ??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z + VA : 0xC01B20 +Export 47 : + Name : ??0ActivityControl@v8@@QEAA@AEBV01@@Z + VA : 0xBFF140 +Export 48 : + Name : ??0ActivityControl@v8@@QEAA@XZ + VA : 0xBFF140 +Export 49 : + Name : ??0AllocationProfile@v8@@QEAA@AEBV01@@Z + VA : 0xBFFFA0 +Export 50 : + Name : ??0AllocationProfile@v8@@QEAA@XZ + VA : 0xBFFFA0 +Export 51 : + Name : ??0Allocator@ArrayBuffer@v8@@QEAA@AEBV012@@Z + VA : 0xBFEFA0 +Export 52 : + Name : ??0Allocator@ArrayBuffer@v8@@QEAA@XZ + VA : 0xBFEFA0 +Export 53 : + Name : ??0AllowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@@Z + VA : 0x552EF80 +Export 54 : + Name : ??0ArrayBufferAllocator@node@@QEAA@$$QEAV01@@Z + VA : 0x208AF0 +Export 55 : + Name : ??0ArrayBufferAllocator@node@@QEAA@AEBV01@@Z + VA : 0x208AF0 +Export 56 : + Name : ??0ArrayBufferAllocator@node@@QEAA@XZ + VA : 0x208AF0 +Export 57 : + Name : ??0AsyncResource@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEBDN@Z + VA : 0x3098F50 +Export 58 : + Name : ??0BackupIncumbentScope@Context@v8@@QEAA@V?$Local@VContext@v8@@@2@@Z + VA : 0x3986610 +Export 59 : + Name : ??0Binary@protocol@v8_inspector@@AEAA@V?$shared_ptr@V?$vector@EV?$allocator@E@__Cr@std@@@__Cr@std@@@__Cr@std@@@Z + VA : 0xF81290 +Export 60 : + Name : ??0Binary@protocol@v8_inspector@@QEAA@$$QEAV012@@Z + VA : 0xF812F0 +Export 61 : + Name : ??0Binary@protocol@v8_inspector@@QEAA@AEBV012@@Z + VA : 0xF81210 +Export 62 : + Name : ??0Binary@protocol@v8_inspector@@QEAA@XZ + VA : 0xF811A0 +Export 63 : + Name : ??0CFunction@v8@@QEAA@PEBXPEBVCFunctionInfo@1@@Z + VA : 0xC19EC0 +Export 64 : + Name : ??0CFunction@v8@@QEAA@XZ + VA : 0x2B9870 +Export 65 : + Name : ??0CFunctionInfo@v8@@QEAA@AEBVCTypeInfo@1@IPEBV21@W4Int64Representation@01@@Z + VA : 0xC19EE0 +Export 66 : + Name : ??0CachedData@ScriptCompiler@v8@@QEAA@PEBEHW4BufferPolicy@012@@Z + VA : 0xC08720 +Export 67 : + Name : ??0CachedData@ScriptCompiler@v8@@QEAA@XZ + VA : 0xBFF0F0 +Export 68 : + Name : ??0CallbackScope@AsyncResource@node@@QEAA@PEAV12@@Z + VA : 0x3099300 +Export 69 : + Name : ??0CallbackScope@node@@QEAA@PEAVEnvironment@1@V?$Local@VObject@v8@@@v8@@Uasync_context@1@@Z + VA : 0x21EF660 +Export 70 : + Name : ??0CallbackScope@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@Uasync_context@1@@Z + VA : 0x21EF5B0 +Export 71 : + Name : ??0Channel@V8Inspector@v8_inspector@@QEAA@AEBV012@@Z + VA : 0xF81180 +Export 72 : + Name : ??0Channel@V8Inspector@v8_inspector@@QEAA@XZ + VA : 0xF81180 +Export 73 : + Name : ??0CodeEventHandler@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0x5531820 +Export 74 : + Name : ??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@PEBVEmbedderSnapshotData@1@IV?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@PEBUSnapshotConfig@1@@Z + VA : 0x21EE2E0 +Export 75 : + Name : ??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@V?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@@Z + VA : 0x21EED30 +Export 76 : + Name : ??0CompilationDependencies@compiler@internal@v8@@QEAA@$$QEAV0123@@Z + VA : 0xE0AAA0 +Export 77 : + Name : ??0CompilationDependencies@compiler@internal@v8@@QEAA@AEBV0123@@Z + VA : 0xE0A9F0 +Export 78 : + Name : ??0CompilationDependencies@compiler@internal@v8@@QEAA@PEAVJSHeapBroker@123@PEAVZone@23@@Z + VA : 0x3E48660 +Export 79 : + Name : ??0CompiledWasmModule@v8@@AEAA@V?$shared_ptr@VNativeModule@wasm@internal@v8@@@__Cr@std@@PEBD_K@Z + VA : 0x552B7C0 +Export 80 : + Name : ??0CompiledWasmModule@v8@@QEAA@$$QEAV01@@Z + VA : 0xBFFFC0 +Export 81 : + Name : ??0CompiledWasmModule@v8@@QEAA@AEBV01@@Z + VA : 0xBFFFC0 +Export 82 : + Name : ??0ConsumeCodeCacheTask@ScriptCompiler@v8@@AEAA@V?$unique_ptr@VBackgroundDeserializeTask@internal@v8@@U?$default_delete@VBackgroundDeserializeTask@internal@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x551F270 +Export 83 : + Name : ??0CppHeap@v8@@AEAA@XZ + VA : 0xBFF6C0 +Export 84 : + Name : ??0CppHeap@v8@@QEAA@AEBV01@@Z + VA : 0xBFF6C0 +Export 85 : + Name : ??0CppHeapCreateParams@v8@@QEAA@V?$vector@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@V?$allocator@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@__Cr@std@@@__Cr@std@@@23@@__Cr@std@@@Z + VA : 0xBFF930 +Export 86 : + Name : ??0CpuProfileDeoptInfo@v8@@QEAA@$$QEAU01@@Z + VA : 0xBFFCC0 +Export 87 : + Name : ??0CpuProfileDeoptInfo@v8@@QEAA@AEBU01@@Z + VA : 0xBFFC30 +Export 88 : + Name : ??0CpuProfileDeoptInfo@v8@@QEAA@XZ + VA : 0xBFFE30 +Export 89 : + Name : ??0CpuProfilingOptions@v8@@QEAA@$$QEAV01@@Z + VA : 0xBFFEA0 +Export 90 : + Name : ??0CpuProfilingOptions@v8@@QEAA@W4CpuProfilingMode@1@IHV?$MaybeLocal@VContext@v8@@@1@@Z + VA : 0x5531180 +Export 91 : + Name : ??0CreateParams@Isolate@v8@@QEAA@$$QEAU012@@Z + VA : 0xBFF380 +Export 92 : + Name : ??0CreateParams@Isolate@v8@@QEAA@AEBU012@@Z + VA : 0xBFF2F0 +Export 93 : + Name : ??0CreateParams@Isolate@v8@@QEAA@XZ + VA : 0xC17FD0 +Export 94 : + Name : ??0CrossThreadPersistentRegion@internal@cppgc@@QEAA@AEBVFatalOutOfMemoryHandler@12@@Z + VA : 0xF7C0B0 +Export 95 : + Name : ??0DeepSerializationResult@v8_inspector@@QEAA@$$QEAU01@@Z + VA : 0xF80FE0 +Export 96 : + Name : ??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@UDeepSerializedValue@v8_inspector@@U?$default_delete@UDeepSerializedValue@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z + VA : 0xF80F80 +Export 97 : + Name : ??0DeepSerializationResult@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@@Z + VA : 0xF81010 +Export 98 : + Name : ??0DeepSerializedValue@v8_inspector@@QEAA@$$QEAU01@@Z + VA : 0x65D640 +Export 99 : + Name : ??0DeepSerializedValue@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$MaybeLocal@VValue@v8@@@v8@@@Z + VA : 0xF80EF0 +Export 100 : + Name : ??0Delegate@ValueDeserializer@v8@@QEAA@AEBV012@@Z + VA : 0xC05480 +Export 101 : + Name : ??0Delegate@ValueDeserializer@v8@@QEAA@XZ + VA : 0xC05480 +Export 102 : + Name : ??0Delegate@ValueSerializer@v8@@QEAA@AEBV012@@Z + VA : 0xC05470 +Export 103 : + Name : ??0Delegate@ValueSerializer@v8@@QEAA@XZ + VA : 0xC05470 +Export 104 : + Name : ??0DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z + VA : 0x3DC0650 +Export 105 : + Name : ??0DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@W4OnFailure@012@@Z + VA : 0xC18390 +Export 106 : + Name : ??0DiscardedSamplesDelegate@v8@@QEAA@AEBV01@@Z + VA : 0xBFFE80 +Export 107 : + Name : ??0DiscardedSamplesDelegate@v8@@QEAA@XZ + VA : 0xBFF140 +Export 108 : + Name : ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + VA : 0xF839B0 +Export 109 : + Name : ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@AEBV01234@@Z + VA : 0xF839B0 +Export 110 : + Name : ??0Domain@API@Schema@protocol@v8_inspector@@QEAA@XZ + VA : 0xF839B0 +Export 111 : + Name : ??0EmbedderGraph@v8@@QEAA@AEBV01@@Z + VA : 0xBFFFB0 +Export 112 : + Name : ??0EmbedderGraph@v8@@QEAA@XZ + VA : 0xBFFFB0 +Export 113 : + Name : ??0EmbedderRootsHandler@v8@@QEAA@AEBV01@@Z + VA : 0xBFF210 +Export 114 : + Name : ??0EmbedderRootsHandler@v8@@QEAA@XZ + VA : 0xBFF210 +Export 115 : + Name : ??0EmbedderStateScope@v8@@QEAA@PEAVIsolate@1@V?$Local@VContext@v8@@@1@W4EmbedderStateTag@1@@Z + VA : 0x398CEB0 +Export 116 : + Name : ??0EscapableHandleScope@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0xBFE3D0 +Export 117 : + Name : ??0EscapableHandleScopeBase@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0xC04F90 +Export 118 : + Name : ??0EvaluateResult@V8InspectorSession@v8_inspector@@QEAA@XZ + VA : 0xF80ED0 +Export 119 : + Name : ??0Exported@protocol@v8_inspector@@QEAA@AEBV012@@Z + VA : 0xF80EC0 +Export 120 : + Name : ??0Exported@protocol@v8_inspector@@QEAA@XZ + VA : 0xF80EC0 +Export 121 : + Name : ??0Extension@v8@@QEAA@PEBD0HPEAPEBDH@Z + VA : 0xC05730 +Export 122 : + Name : ??0ExtensionConfiguration@v8@@QEAA@HQEAPEBD@Z + VA : 0xBFF510 +Export 123 : + Name : ??0ExtensionConfiguration@v8@@QEAA@XZ + VA : 0xAF5CB0 +Export 124 : + Name : ??0ExternalOneByteStringResource@String@v8@@IEAA@XZ + VA : 0xBFE4F0 +Export 125 : + Name : ??0ExternalResourceVisitor@v8@@QEAA@AEBV01@@Z + VA : 0xBFE3E0 +Export 126 : + Name : ??0ExternalResourceVisitor@v8@@QEAA@XZ + VA : 0xBFE3E0 +Export 127 : + Name : ??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@AEBV012@@Z + VA : 0xBFF140 +Export 128 : + Name : ??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@XZ + VA : 0xBFF140 +Export 129 : + Name : ??0ExternalStringResource@String@v8@@IEAA@XZ + VA : 0xBFE4F0 +Export 130 : + Name : ??0ExternalStringResourceBase@String@v8@@IEAA@XZ + VA : 0xBFE4E0 +Export 131 : + Name : ??0GCInfoTable@internal@cppgc@@QEAA@AEAVPageAllocator@v8@@AEAVFatalOutOfMemoryHandler@12@@Z + VA : 0xF75D00 +Export 132 : + Name : ??0HandleScope@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0x39862B0 +Export 133 : + Name : ??0Heap@cppgc@@AEAA@XZ + VA : 0xBFF6C0 +Export 134 : + Name : ??0Heap@cppgc@@QEAA@AEBV01@@Z + VA : 0xBFF6C0 +Export 135 : + Name : ??0HeapCodeStatistics@v8@@QEAA@XZ + VA : 0x49DED70 +Export 136 : + Name : ??0HeapObjectStatistics@v8@@QEAA@XZ + VA : 0x49DED70 +Export 137 : + Name : ??0HeapSpaceStatistics@v8@@QEAA@XZ + VA : 0x71B460 +Export 138 : + Name : ??0HeapStatistics@v8@@QEAA@XZ + VA : 0xC12740 +Export 139 : + Name : ??0InitializationResult@node@@AEAA@XZ + VA : 0x208AD0 +Export 140 : + Name : ??0InitializationResult@node@@QEAA@AEBV01@@Z + VA : 0x208AD0 +Export 141 : + Name : ??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@AEBV012@@Z + VA : 0xF80EC0 +Export 142 : + Name : ??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@XZ + VA : 0xF80EC0 +Export 143 : + Name : ??0IsolatePlatformDelegate@node@@QEAA@$$QEAV01@@Z + VA : 0x208B00 +Export 144 : + Name : ??0IsolatePlatformDelegate@node@@QEAA@AEBV01@@Z + VA : 0x208B00 +Export 145 : + Name : ??0IsolatePlatformDelegate@node@@QEAA@XZ + VA : 0x208B00 +Export 146 : + Name : ??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@$$QEAV0123@@Z + VA : 0xBFEF30 +Export 147 : + Name : ??0JitPageReference@ThreadIsolation@internal@v8@@QEAA@PEAVJitPage@123@_K@Z + VA : 0x55838A0 +Export 148 : + Name : ??0Location@v8@@QEAA@HH@Z + VA : 0xBFF0C0 +Export 149 : + Name : ??0Locker@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0xC053B0 +Export 150 : + Name : ??0LongTaskStats@metrics@v8@@QEAA@XZ + VA : 0x4BFC30 +Export 151 : + Name : ??0MeasureMemoryDelegate@v8@@QEAA@AEBV01@@Z + VA : 0xBFF220 +Export 152 : + Name : ??0MeasureMemoryDelegate@v8@@QEAA@XZ + VA : 0xBFF220 +Export 153 : + Name : ??0MicrotaskQueue@v8@@AEAA@XZ + VA : 0xC00210 +Export 154 : + Name : ??0MicrotasksScope@v8@@QEAA@PEAVIsolate@1@PEAVMicrotaskQueue@1@W4Type@01@@Z + VA : 0x398CE00 +Export 155 : + Name : ??0MicrotasksScope@v8@@QEAA@V?$Local@VContext@v8@@@1@W4Type@01@@Z + VA : 0xC192F0 +Export 156 : + Name : ??0ModuleWrap@loader@node@@AEAA@PEAVRealm@2@V?$Local@VObject@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VString@v8@@@5@1V?$Local@VValue@v8@@@5@@Z + VA : 0x21800B0 +Export 157 : + Name : ??0MultiIsolatePlatform@node@@QEAA@AEBV01@@Z + VA : 0x208B10 +Export 158 : + Name : ??0MultiIsolatePlatform@node@@QEAA@XZ + VA : 0x208B10 +Export 159 : + Name : ??0NameProvider@cppgc@@QEAA@AEBV01@@Z + VA : 0xBFF140 +Export 160 : + Name : ??0NameProvider@cppgc@@QEAA@XZ + VA : 0xBFF140 +Export 161 : + Name : ??0NoGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z + VA : 0xF76C90 +Export 162 : + Name : ??0OptimizingCompileDispatcherQueue@internal@v8@@QEAA@H@Z + VA : 0xC32380 +Export 163 : + Name : ??0OutputStream@v8@@QEAA@AEBV01@@Z + VA : 0xBFFE50 +Export 164 : + Name : ??0OutputStream@v8@@QEAA@XZ + VA : 0xBFFE50 +Export 165 : + Name : ??0OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@AEAVHeapHandle@2@W4EmbedderStackState@2@@Z + VA : 0x5952600 +Export 166 : + Name : ??0PersistentHandleVisitor@v8@@QEAA@AEBV01@@Z + VA : 0xBFE3E0 +Export 167 : + Name : ??0PersistentHandleVisitor@v8@@QEAA@XZ + VA : 0xBFE3E0 +Export 168 : + Name : ??0PersistentRegion@internal@cppgc@@QEAA@AEBVHeapBase@12@AEBVFatalOutOfMemoryHandler@12@@Z + VA : 0xBFFA30 +Export 169 : + Name : ??0PersistentRegionBase@internal@cppgc@@IEAA@AEBVFatalOutOfMemoryHandler@12@@Z + VA : 0xF7C0B0 +Export 170 : + Name : ??0PersistentRegionLock@internal@cppgc@@QEAA@XZ + VA : 0x3DC7B20 +Export 171 : + Name : ??0Platform@cppgc@@QEAA@AEBV01@@Z + VA : 0xBFF6B0 +Export 172 : + Name : ??0Platform@cppgc@@QEAA@XZ + VA : 0xBFF6B0 +Export 173 : + Name : ??0PrefinalizerRegistration@internal@cppgc@@QEAA@PEAXP6A_NAEBVLivenessBroker@2@0@Z@Z + VA : 0x3DC8030 +Export 174 : + Name : ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@0@Z + VA : 0x5524160 +Export 175 : + Name : ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@@Z + VA : 0x5524120 +Export 176 : + Name : ??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@_N@Z + VA : 0xC0EFB0 +Export 177 : + Name : ??0PropertyDescriptor@v8@@QEAA@XZ + VA : 0x55240F0 +Export 178 : + Name : ??0Recorder@metrics@v8@@QEAA@AEBV012@@Z + VA : 0xBFF620 +Export 179 : + Name : ??0Recorder@metrics@v8@@QEAA@XZ + VA : 0xBFF620 +Export 180 : + Name : ??0RegisterState@v8@@QEAA@AEBU01@@Z + VA : 0x552F2A0 +Export 181 : + Name : ??0RegisterState@v8@@QEAA@XZ + VA : 0x4DFF3D0 +Export 182 : + Name : ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + VA : 0xF839B0 +Export 183 : + Name : ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + VA : 0xF839B0 +Export 184 : + Name : ??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@XZ + VA : 0xF839B0 +Export 185 : + Name : ??0ResourceConstraints@v8@@QEAA@XZ + VA : 0x5AEA50 +Export 186 : + Name : ??0RootVisitor@internal@cppgc@@QEAA@AEBV012@@Z + VA : 0xBFF8B0 +Export 187 : + Name : ??0RootVisitor@internal@cppgc@@QEAA@VKey@Visitor@2@@Z + VA : 0xBFF8B0 +Export 188 : + Name : ??0SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAA@XZ + VA : 0x405ED0 +Export 189 : + Name : ??0Scope@Isolate@v8@@QEAA@PEAV12@@Z + VA : 0xBFF350 +Export 190 : + Name : ??0ScriptOrigin@v8@@QEAA@V?$Local@VValue@v8@@@1@HH_NH0111V?$Local@VData@v8@@@1@@Z + VA : 0xBFEFB0 +Export 191 : + Name : ??0ScriptStreamingTask@ScriptCompiler@v8@@AEAA@PEAUScriptStreamingData@internal@2@@Z + VA : 0x441760 +Export 192 : + Name : ??0SealHandleScope@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0x551D070 +Export 193 : + Name : ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + VA : 0xF839B0 +Export 194 : + Name : ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@AEBV01234@@Z + VA : 0xF839B0 +Export 195 : + Name : ??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@XZ + VA : 0xF839B0 +Export 196 : + Name : ??0SharedMemoryStatistics@v8@@QEAA@XZ + VA : 0x4D49660 +Export 197 : + Name : ??0SharedValueConveyor@v8@@AEAA@PEAVIsolate@1@@Z + VA : 0x55206F0 +Export 198 : + Name : ??0SharedValueConveyor@v8@@QEAA@$$QEAV01@@Z + VA : 0x54BCE20 +Export 199 : + Name : ??0SnapshotCreator@v8@@QEAA@AEBUCreateParams@Isolate@1@@Z + VA : 0x551CB60 +Export 200 : + Name : ??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@AEBUCreateParams@21@@Z + VA : 0x551CBA0 +Export 201 : + Name : ??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@PEB_JPEBVStartupData@1@_N@Z + VA : 0x551CAB0 +Export 202 : + Name : ??0SnapshotCreator@v8@@QEAA@PEB_JPEBVStartupData@1@@Z + VA : 0x551CB10 +Export 203 : + Name : ??0SourceLocation@v8@@AEAA@PEBD0_K@Z + VA : 0xBFE960 +Export 204 : + Name : ??0SourceLocation@v8@@QEAA@XZ + VA : 0x1F3060 +Export 205 : + Name : ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + VA : 0xF839B0 +Export 206 : + Name : ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + VA : 0xF839B0 +Export 207 : + Name : ??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@XZ + VA : 0xF839B0 +Export 208 : + Name : ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z + VA : 0xF839B0 +Export 209 : + Name : ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z + VA : 0xF839B0 +Export 210 : + Name : ??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@XZ + VA : 0xF839B0 +Export 211 : + Name : ??0StandaloneTestingHeap@testing@cppgc@@QEAA@AEAVHeapHandle@2@@Z + VA : 0x48DA470 +Export 212 : + Name : ??0StreamedSource@ScriptCompiler@v8@@QEAA@V?$unique_ptr@VExternalSourceStream@ScriptCompiler@v8@@U?$default_delete@VExternalSourceStream@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@W4Encoding@012@@Z + VA : 0xC08760 +Export 213 : + Name : ??0String16@v8_inspector@@QEAA@PEBD@Z + VA : 0x3DCF930 +Export 214 : + Name : ??0String16@v8_inspector@@QEAA@PEB_S@Z + VA : 0x596D1A0 +Export 215 : + Name : ??0StringBuffer@v8_inspector@@QEAA@AEBV01@@Z + VA : 0xBFF140 +Export 216 : + Name : ??0StringBuffer@v8_inspector@@QEAA@XZ + VA : 0xBFF140 +Export 217 : + Name : ??0StringView@v8_inspector@@QEAA@PEBE_K@Z + VA : 0xF80DF0 +Export 218 : + Name : ??0StringView@v8_inspector@@QEAA@PEBG_K@Z + VA : 0xF80E00 +Export 219 : + Name : ??0StringView@v8_inspector@@QEAA@XZ + VA : 0xF80DE0 +Export 220 : + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVHeap@12@@Z + VA : 0x441760 +Export 221 : + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@12@@Z + VA : 0x55FAC60 +Export 222 : + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVIsolate@2@@Z + VA : 0x55FAC60 +Export 223 : + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalHeap@12@@Z + VA : 0x4FDA3F0 +Export 224 : + Name : ??0StrongRootAllocatorBase@internal@v8@@IEAA@PEAVLocalIsolate@12@@Z + VA : 0x55FAC70 +Export 225 : + Name : ??0SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@PEAV12@PEAVMicrotaskQueue@2@@Z + VA : 0x398CCC0 +Export 226 : + Name : ??0SuspendTagCheckingScope@base@heap@@QEAA@XZ + VA : 0x208AE0 +Export 227 : + Name : ??0TickSample@internal@v8@@QEAA@XZ + VA : 0xC054A0 +Export 228 : + Name : ??0TryCatch@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0x3988350 +Export 229 : + Name : ??0TypecheckWitness@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0xC167C0 +Export 230 : + Name : ??0Unlocker@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0xC05390 +Export 231 : + Name : ??0Utf8Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@W4WriteOptions@12@@Z + VA : 0xC193B0 +Export 232 : + Name : ??0V8ContextInfo@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@HVStringView@1@@Z + VA : 0xF80E20 +Export 233 : + Name : ??0V8DebuggerId@v8_inspector@@AEAA@U?$pair@_J_J@__Cr@std@@@Z + VA : 0x59751D0 +Export 234 : + Name : ??0V8DebuggerId@v8_inspector@@QEAA@XZ + VA : 0x2B9870 +Export 235 : + Name : ??0V8Inspector@v8_inspector@@QEAA@AEBV01@@Z + VA : 0xF81190 +Export 236 : + Name : ??0V8Inspector@v8_inspector@@QEAA@XZ + VA : 0xF81190 +Export 237 : + Name : ??0V8InspectorClient@v8_inspector@@QEAA@AEBV01@@Z + VA : 0xF81150 +Export 238 : + Name : ??0V8InspectorClient@v8_inspector@@QEAA@XZ + VA : 0xF81150 +Export 239 : + Name : ??0V8InspectorSession@v8_inspector@@QEAA@AEBV01@@Z + VA : 0xF80EE0 +Export 240 : + Name : ??0V8InspectorSession@v8_inspector@@QEAA@XZ + VA : 0xF80EE0 +Export 241 : + Name : ??0V8SerializationDuplicateTracker@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@@Z + VA : 0x597E740 +Export 242 : + Name : ??0V8StackFrame@v8_inspector@@QEAA@XZ + VA : 0xF80E60 +Export 243 : + Name : ??0V8StackTrace@v8_inspector@@QEAA@AEBV01@@Z + VA : 0xF80EB0 +Export 244 : + Name : ??0V8StackTrace@v8_inspector@@QEAA@XZ + VA : 0xF80EB0 +Export 245 : + Name : ??0V8StackTraceId@v8_inspector@@QEAA@VStringView@1@@Z + VA : 0xFD4FA0 +Export 246 : + Name : ??0V8StackTraceId@v8_inspector@@QEAA@XZ + VA : 0xFD4F20 +Export 247 : + Name : ??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@@Z + VA : 0x597E780 +Export 248 : + Name : ??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@__Cr@std@@_N@Z + VA : 0xFD4F80 +Export 249 : + Name : ??0Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + VA : 0xC196C0 +Export 250 : + Name : ??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_K@Z + VA : 0x5520C00 +Export 251 : + Name : ??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_KPEAVDelegate@01@@Z + VA : 0xC0D0A0 +Export 252 : + Name : ??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@@Z + VA : 0x55209E0 +Export 253 : + Name : ??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@PEAVDelegate@01@@Z + VA : 0xC0CDA0 +Export 254 : + Name : ??0ValueView@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0x552FCC0 +Export 255 : + Name : ??0Visitor@cppgc@@QEAA@AEBV01@@Z + VA : 0xBFF8A0 +Export 256 : + Name : ??0Visitor@cppgc@@QEAA@VKey@01@@Z + VA : 0xBFF8A0 +Export 257 : + Name : ??0WasmStreaming@v8@@QEAA@V?$unique_ptr@VWasmStreamingImpl@WasmStreaming@v8@@U?$default_delete@VWasmStreamingImpl@WasmStreaming@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x5917460 +Export 258 : + Name : ??1?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + VA : 0xBFFE00 +Export 259 : + Name : ??1?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA@XZ + VA : 0xC01CF0 +Export 260 : + Name : ??1ActivityControl@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 261 : + Name : ??1AllocationProfile@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 262 : + Name : ??1Allocator@ArrayBuffer@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 263 : + Name : ??1AllowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ + VA : 0x552EFC0 +Export 264 : + Name : ??1ArrayBufferAllocator@node@@UEAA@XZ + VA : 0x1EA0F0 +Export 265 : + Name : ??1AsyncResource@node@@UEAA@XZ + VA : 0x3099020 +Export 266 : + Name : ??1BackingStore@v8@@QEAA@XZ + VA : 0xC0E190 +Export 267 : + Name : ??1BackupIncumbentScope@Context@v8@@QEAA@XZ + VA : 0x3986690 +Export 268 : + Name : ??1Binary@protocol@v8_inspector@@QEAA@XZ + VA : 0xF81350 +Export 269 : + Name : ??1CachedData@ScriptCompiler@v8@@QEAA@XZ + VA : 0xC08740 +Export 270 : + Name : ??1CallbackScope@AsyncResource@node@@QEAA@XZ + VA : 0x208B20 +Export 271 : + Name : ??1CallbackScope@node@@QEAA@XZ + VA : 0x21EF560 +Export 272 : + Name : ??1Channel@V8Inspector@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 273 : + Name : ??1CodeEventHandler@v8@@UEAA@XZ + VA : 0x5531860 +Export 274 : + Name : ??1CommonEnvironmentSetup@node@@QEAA@XZ + VA : 0x21EEF30 +Export 275 : + Name : ??1CompilationDependencies@compiler@internal@v8@@QEAA@XZ + VA : 0xE0AB30 +Export 276 : + Name : ??1CompiledWasmModule@v8@@QEAA@XZ + VA : 0xC00030 +Export 277 : + Name : ??1ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAA@XZ + VA : 0xC0B050 +Export 278 : + Name : ??1CppHeap@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 279 : + Name : ??1CppHeapCreateParams@v8@@QEAA@XZ + VA : 0xBFF8C0 +Export 280 : + Name : ??1CpuProfileDeoptInfo@v8@@QEAA@XZ + VA : 0xBFFDD0 +Export 281 : + Name : ??1CpuProfilingOptions@v8@@QEAA@XZ + VA : 0xBFFF70 +Export 282 : + Name : ??1CreateParams@Isolate@v8@@QEAA@XZ + VA : 0xC18020 +Export 283 : + Name : ??1CrossThreadPersistentRegion@internal@cppgc@@QEAA@XZ + VA : 0x3DC7C40 +Export 284 : + Name : ??1DeepSerializationResult@v8_inspector@@QEAA@XZ + VA : 0xF810E0 +Export 285 : + Name : ??1DeepSerializedValue@v8_inspector@@QEAA@XZ + VA : 0xA36BD0 +Export 286 : + Name : ??1Delegate@ValueDeserializer@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 287 : + Name : ??1Delegate@ValueSerializer@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 288 : + Name : ??1DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@XZ + VA : 0x3DC0660 +Export 289 : + Name : ??1DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ + VA : 0xC183F0 +Export 290 : + Name : ??1DiscardedSamplesDelegate@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 291 : + Name : ??1Domain@API@Schema@protocol@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 292 : + Name : ??1EmbedderGraph@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 293 : + Name : ??1EmbedderRootsHandler@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 294 : + Name : ??1EmbedderStateScope@v8@@QEAA@XZ + VA : 0x398CF00 +Export 295 : + Name : ??1EscapableHandleScope@v8@@QEAA@XZ + VA : 0xBFE3C0 +Export 296 : + Name : ??1EscapableHandleScopeBase@v8@@QEAA@XZ + VA : 0xBFE3C0 +Export 297 : + Name : ??1Exported@protocol@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 298 : + Name : ??1Extension@v8@@UEAA@XZ + VA : 0xC05320 +Export 299 : + Name : ??1ExternalOneByteStringResource@String@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 300 : + Name : ??1ExternalResourceVisitor@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 301 : + Name : ??1ExternalSourceStream@ScriptCompiler@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 302 : + Name : ??1ExternalStringResource@String@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 303 : + Name : ??1ExternalStringResourceBase@String@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 304 : + Name : ??1GCInfoTable@internal@cppgc@@QEAA@XZ + VA : 0x594D040 +Export 305 : + Name : ??1HandleScope@v8@@QEAA@XZ + VA : 0x3985880 +Export 306 : + Name : ??1Heap@cppgc@@UEAA@XZ + VA : 0x1EA0F0 +Export 307 : + Name : ??1InitializationResult@node@@UEAA@XZ + VA : 0x1EA0F0 +Export 308 : + Name : ??1Inspectable@V8InspectorSession@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 309 : + Name : ??1JitPageReference@ThreadIsolation@internal@v8@@QEAA@XZ + VA : 0xBFEF90 +Export 310 : + Name : ??1Locker@v8@@QEAA@XZ + VA : 0x55C5730 +Export 311 : + Name : ??1MeasureMemoryDelegate@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 312 : + Name : ??1MicrotaskQueue@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 313 : + Name : ??1MicrotasksScope@v8@@QEAA@XZ + VA : 0x398CE30 +Export 314 : + Name : ??1ModuleWrap@loader@node@@EEAA@XZ + VA : 0x2180330 +Export 315 : + Name : ??1MultiIsolatePlatform@node@@UEAA@XZ + VA : 0x1EA0F0 +Export 316 : + Name : ??1NameProvider@cppgc@@UEAA@XZ + VA : 0x1EA0F0 +Export 317 : + Name : ??1NoGarbageCollectionScope@subtle@cppgc@@QEAA@XZ + VA : 0xF76CA0 +Export 318 : + Name : ??1OptimizingCompileDispatcherQueue@internal@v8@@QEAA@XZ + VA : 0xC32410 +Export 319 : + Name : ??1OutputStream@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 320 : + Name : ??1OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@XZ + VA : 0x5952630 +Export 321 : + Name : ??1PersistentHandleVisitor@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 322 : + Name : ??1PersistentRegion@internal@cppgc@@QEAA@XZ + VA : 0xBFF9E0 +Export 323 : + Name : ??1PersistentRegionBase@internal@cppgc@@QEAA@XZ + VA : 0x3DC75C0 +Export 324 : + Name : ??1PersistentRegionLock@internal@cppgc@@QEAA@XZ + VA : 0x3DC7BB0 +Export 325 : + Name : ??1Platform@cppgc@@UEAA@XZ + VA : 0x1EA0F0 +Export 326 : + Name : ??1PropertyDescriptor@v8@@QEAA@XZ + VA : 0xC0F000 +Export 327 : + Name : ??1Recorder@metrics@v8@@UEAA@XZ + VA : 0x1EA0F0 +Export 328 : + Name : ??1RegisterState@v8@@QEAA@XZ + VA : 0x552F2B0 +Export 329 : + Name : ??1RemoteObject@API@Runtime@protocol@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 330 : + Name : ??1RootVisitor@internal@cppgc@@UEAA@XZ + VA : 0x1EA0F0 +Export 331 : + Name : ??1Scope@Isolate@v8@@QEAA@XZ + VA : 0xBFF370 +Export 332 : + Name : ??1SealHandleScope@v8@@QEAA@XZ + VA : 0x551D0B0 +Export 333 : + Name : ??1SearchMatch@API@Debugger@protocol@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 334 : + Name : ??1SharedValueConveyor@v8@@QEAA@XZ + VA : 0x55206A0 +Export 335 : + Name : ??1SnapshotCreator@v8@@QEAA@XZ + VA : 0x551CBE0 +Export 336 : + Name : ??1StackTrace@API@Runtime@protocol@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 337 : + Name : ??1StackTraceId@API@Runtime@protocol@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 338 : + Name : ??1StreamedSource@ScriptCompiler@v8@@QEAA@XZ + VA : 0xC08810 +Export 339 : + Name : ??1StringBuffer@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 340 : + Name : ??1SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@XZ + VA : 0x398CD10 +Export 341 : + Name : ??1SuspendTagCheckingScope@base@heap@@QEAA@XZ + VA : 0x1EA0F0 +Export 342 : + Name : ??1TryCatch@v8@@QEAA@XZ + VA : 0x39883B0 +Export 343 : + Name : ??1Unlocker@v8@@QEAA@XZ + VA : 0x55C5830 +Export 344 : + Name : ??1Utf8Value@String@v8@@QEAA@XZ + VA : 0xC196B0 +Export 345 : + Name : ??1V8Inspector@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 346 : + Name : ??1V8InspectorClient@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 347 : + Name : ??1V8InspectorSession@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 348 : + Name : ??1V8StackTrace@v8_inspector@@UEAA@XZ + VA : 0x1EA0F0 +Export 349 : + Name : ??1Value@String@v8@@QEAA@XZ + VA : 0xC196B0 +Export 350 : + Name : ??1ValueDeserializer@v8@@QEAA@XZ + VA : 0xC0D130 +Export 351 : + Name : ??1ValueSerializer@v8@@QEAA@XZ + VA : 0xC0CDF0 +Export 352 : + Name : ??1ValueView@String@v8@@QEAA@XZ + VA : 0x5530020 +Export 353 : + Name : ??1Visitor@cppgc@@UEAA@XZ + VA : 0x1EA0F0 +Export 354 : + Name : ??1WasmStreaming@v8@@QEAA@XZ + VA : 0x5917540 +Export 355 : + Name : ??2GlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z + VA : 0xBFFC00 +Export 356 : + Name : ??2HandleScope@v8@@CAPEAX_K@Z + VA : 0x551D050 +Export 357 : + Name : ??2TryCatch@v8@@CAPEAX_K@Z + VA : 0x551D050 +Export 358 : + Name : ??3BackingStore@v8@@SAXPEAX@Z + VA : 0x20A840 +Export 359 : + Name : ??3GlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z + VA : 0xBFFC00 +Export 360 : + Name : ??3HandleScope@v8@@CAXPEAX_K@Z + VA : 0x551D050 +Export 361 : + Name : ??3TryCatch@v8@@CAXPEAX_K@Z + VA : 0x551D050 +Export 362 : + Name : ??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 363 : + Name : ??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 364 : + Name : ??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 365 : + Name : ??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 366 : + Name : ??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 367 : + Name : ??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 368 : + Name : ??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 369 : + Name : ??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 370 : + Name : ??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 371 : + Name : ??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 372 : + Name : ??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 373 : + Name : ??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 374 : + Name : ??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 375 : + Name : ??4?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 376 : + Name : ??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 377 : + Name : ??4?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 378 : + Name : ??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 379 : + Name : ??4?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 380 : + Name : ??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 381 : + Name : ??4?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 382 : + Name : ??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 383 : + Name : ??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 384 : + Name : ??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 385 : + Name : ??4?$MemorySpan@$$CB_K@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 386 : + Name : ??4?$MemorySpan@E@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 387 : + Name : ??4?$MemorySpan@E@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 388 : + Name : ??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 389 : + Name : ??4?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 390 : + Name : ??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 391 : + Name : ??4?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 392 : + Name : ??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 393 : + Name : ??4?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 394 : + Name : ??4?$MemorySpan@_K@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 395 : + Name : ??4?$MemorySpan@_K@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 396 : + Name : ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z + VA : 0xBFFDB0 +Export 397 : + Name : ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z + VA : 0xBFFD40 +Export 398 : + Name : ??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z + VA : 0xC00570 +Export 399 : + Name : ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@$$QEAV012@@Z + VA : 0xC02280 +Export 400 : + Name : ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@AEBV012@@Z + VA : 0xC01E80 +Export 401 : + Name : ??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z + VA : 0xC021F0 +Export 402 : + Name : ??4ActivityControl@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 403 : + Name : ??4AgeTable@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 404 : + Name : ??4AgeTable@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 405 : + Name : ??4AllocationHandle@cppgc@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 406 : + Name : ??4AllocationHandle@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 407 : + Name : ??4AllocationProfile@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 408 : + Name : ??4Allocator@ArrayBuffer@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 409 : + Name : ??4Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 410 : + Name : ??4Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 411 : + Name : ??4ArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 412 : + Name : ??4ArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 413 : + Name : ??4ArrayBufferAllocator@node@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 414 : + Name : ??4ArrayBufferAllocator@node@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 415 : + Name : ??4ArrayBufferView@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 416 : + Name : ??4ArrayBufferView@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 417 : + Name : ??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 418 : + Name : ??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 419 : + Name : ??4BackingStore@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 420 : + Name : ??4BackupIncumbentScope@Context@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0xA08910 +Export 421 : + Name : ??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + VA : 0x208AE0 +Export 422 : + Name : ??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + VA : 0x208AE0 +Export 423 : + Name : ??4BigInt64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 424 : + Name : ??4BigInt64Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 425 : + Name : ??4BigInt@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 426 : + Name : ??4BigInt@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 427 : + Name : ??4BigIntObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 428 : + Name : ??4BigIntObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 429 : + Name : ??4BigUint64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 430 : + Name : ??4BigUint64Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 431 : + Name : ??4Binary@protocol@v8_inspector@@QEAAAEAV012@$$QEAV012@@Z + VA : 0xF81330 +Export 432 : + Name : ??4Binary@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z + VA : 0xF81310 +Export 433 : + Name : ??4Boolean@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 434 : + Name : ??4Boolean@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 435 : + Name : ??4BooleanObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 436 : + Name : ??4BooleanObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 437 : + Name : ??4CFunction@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x7894E0 +Export 438 : + Name : ??4CFunction@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 439 : + Name : ??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 440 : + Name : ??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 441 : + Name : ??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 442 : + Name : ??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 443 : + Name : ??4Channel@V8Inspector@v8_inspector@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 444 : + Name : ??4CodeEvent@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 445 : + Name : ??4CodeEvent@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 446 : + Name : ??4CompileHintsCollector@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 447 : + Name : ??4CompileHintsCollector@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 448 : + Name : ??4Context@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 449 : + Name : ??4Context@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 450 : + Name : ??4CppHeap@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 451 : + Name : ??4CpuProfile@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 452 : + Name : ??4CpuProfile@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 453 : + Name : ??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@$$QEAU01@@Z + VA : 0xBFFD80 +Export 454 : + Name : ??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@AEBU01@@Z + VA : 0xBFFD00 +Export 455 : + Name : ??4CpuProfileNode@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 456 : + Name : ??4CpuProfileNode@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 457 : + Name : ??4CpuProfilingOptions@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFFF00 +Export 458 : + Name : ??4CreateParams@Isolate@v8@@QEAAAEAU012@$$QEAU012@@Z + VA : 0xBFF480 +Export 459 : + Name : ??4CreateParams@Isolate@v8@@QEAAAEAU012@AEBU012@@Z + VA : 0xBFF3E0 +Export 460 : + Name : ??4Data@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 461 : + Name : ??4Data@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 462 : + Name : ??4DataView@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 463 : + Name : ??4DataView@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 464 : + Name : ??4Date@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 465 : + Name : ??4Date@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 466 : + Name : ??4DeepSerializationResult@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + VA : 0xF81050 +Export 467 : + Name : ??4DeepSerializedValue@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + VA : 0xF80F30 +Export 468 : + Name : ??4Delegate@ValueDeserializer@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 469 : + Name : ??4Delegate@ValueSerializer@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 470 : + Name : ??4DeleteACHHandle@node@@QEAAAEAU01@$$QEAU01@@Z + VA : 0x208AE0 +Export 471 : + Name : ??4DeleteACHHandle@node@@QEAAAEAU01@AEBU01@@Z + VA : 0x208AE0 +Export 472 : + Name : ??4DictionaryTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 473 : + Name : ??4DictionaryTemplate@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 474 : + Name : ??4DiscardedSamplesDelegate@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFFE70 +Export 475 : + Name : ??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + VA : 0x208AE0 +Export 476 : + Name : ??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + VA : 0x208AE0 +Export 477 : + Name : ??4EmbedderGraph@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 478 : + Name : ??4EmbedderRootsHandler@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 479 : + Name : ??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + VA : 0x208AE0 +Export 480 : + Name : ??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + VA : 0x208AE0 +Export 481 : + Name : ??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@$$QEAU012@@Z + VA : 0x7894E0 +Export 482 : + Name : ??4EvaluateResult@V8InspectorSession@v8_inspector@@QEAAAEAU012@AEBU012@@Z + VA : 0x7894E0 +Export 483 : + Name : ??4Exception@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 484 : + Name : ??4Exception@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 485 : + Name : ??4Exported@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 486 : + Name : ??4External@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 487 : + Name : ??4External@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 488 : + Name : ??4ExternalResourceVisitor@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 489 : + Name : ??4ExternalSourceStream@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 490 : + Name : ??4FixedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 491 : + Name : ??4FixedArray@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 492 : + Name : ??4Float16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 493 : + Name : ??4Float16Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 494 : + Name : ??4Float32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 495 : + Name : ??4Float32Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 496 : + Name : ??4Float64Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 497 : + Name : ??4Float64Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 498 : + Name : ??4Function@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 499 : + Name : ??4Function@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 500 : + Name : ??4FunctionTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 501 : + Name : ??4FunctionTemplate@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 502 : + Name : ??4Heap@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 503 : + Name : ??4HeapCodeStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFF280 +Export 504 : + Name : ??4HeapCodeStatistics@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFF280 +Export 505 : + Name : ??4HeapGraphEdge@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 506 : + Name : ??4HeapGraphEdge@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 507 : + Name : ??4HeapGraphNode@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 508 : + Name : ??4HeapGraphNode@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 509 : + Name : ??4HeapObjectStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFF280 +Export 510 : + Name : ??4HeapObjectStatistics@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFF280 +Export 511 : + Name : ??4HeapSnapshot@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 512 : + Name : ??4HeapSnapshot@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 513 : + Name : ??4HeapSpaceStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFF260 +Export 514 : + Name : ??4HeapSpaceStatistics@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFF260 +Export 515 : + Name : ??4HeapState@subtle@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 516 : + Name : ??4HeapState@subtle@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 517 : + Name : ??4HeapStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFF230 +Export 518 : + Name : ??4HeapStatistics@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFF230 +Export 519 : + Name : ??4InitializationResult@node@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 520 : + Name : ??4Inspectable@V8InspectorSession@v8_inspector@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 521 : + Name : ??4Int16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 522 : + Name : ??4Int16Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 523 : + Name : ??4Int32@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 524 : + Name : ??4Int32@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 525 : + Name : ??4Int32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 526 : + Name : ??4Int32Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 527 : + Name : ??4Int8Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 528 : + Name : ??4Int8Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 529 : + Name : ??4Integer@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 530 : + Name : ??4Integer@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 531 : + Name : ??4IsolatePlatformDelegate@node@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 532 : + Name : ??4IsolatePlatformDelegate@node@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 533 : + Name : ??4JSON@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 534 : + Name : ??4JSON@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 535 : + Name : ??4LivenessBroker@cppgc@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 536 : + Name : ??4LivenessBroker@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 537 : + Name : ??4Location@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFE3B0 +Export 538 : + Name : ??4Location@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFE3B0 +Export 539 : + Name : ??4LongTaskStats@metrics@v8@@QEAAAEAU012@$$QEAU012@@Z + VA : 0xBFF280 +Export 540 : + Name : ??4LongTaskStats@metrics@v8@@QEAAAEAU012@AEBU012@@Z + VA : 0xBFF280 +Export 541 : + Name : ??4Map@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 542 : + Name : ??4Map@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 543 : + Name : ??4MeasureMemoryDelegate@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 544 : + Name : ??4Message@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 545 : + Name : ??4Message@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 546 : + Name : ??4Module@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 547 : + Name : ??4Module@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 548 : + Name : ??4ModuleRequest@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 549 : + Name : ??4ModuleRequest@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 550 : + Name : ??4MultiIsolatePlatform@node@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 551 : + Name : ??4Name@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 552 : + Name : ??4Name@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 553 : + Name : ??4NameProvider@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 554 : + Name : ??4NameTraitBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 555 : + Name : ??4NameTraitBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 556 : + Name : ??4Number@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 557 : + Name : ??4Number@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 558 : + Name : ??4NumberObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 559 : + Name : ??4NumberObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 560 : + Name : ??4Numeric@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 561 : + Name : ??4Numeric@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 562 : + Name : ??4Object@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 563 : + Name : ??4Object@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 564 : + Name : ??4ObjectTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 565 : + Name : ??4ObjectTemplate@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 566 : + Name : ??4OutputStream@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 567 : + Name : ??4PersistentHandleVisitor@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 568 : + Name : ??4PersistentRegionLock@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 569 : + Name : ??4Platform@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 570 : + Name : ??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 571 : + Name : ??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 572 : + Name : ??4Primitive@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 573 : + Name : ??4Primitive@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 574 : + Name : ??4PrimitiveArray@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 575 : + Name : ??4PrimitiveArray@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 576 : + Name : ??4Private@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 577 : + Name : ??4Private@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 578 : + Name : ??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 579 : + Name : ??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 580 : + Name : ??4Promise@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 581 : + Name : ??4Promise@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 582 : + Name : ??4Proxy@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 583 : + Name : ??4Proxy@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 584 : + Name : ??4Recorder@metrics@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 585 : + Name : ??4RegExp@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 586 : + Name : ??4RegExp@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 587 : + Name : ??4RegisterState@v8@@QEAAAEAU01@AEBU01@@Z + VA : 0x55320C0 +Export 588 : + Name : ??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + VA : 0x208AE0 +Export 589 : + Name : ??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + VA : 0x208AE0 +Export 590 : + Name : ??4Resolver@Promise@v8@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 591 : + Name : ??4Resolver@Promise@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 592 : + Name : ??4ResourceConstraints@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x650010 +Export 593 : + Name : ??4ResourceConstraints@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x650010 +Export 594 : + Name : ??4RootVisitor@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 595 : + Name : ??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0xBFE3B0 +Export 596 : + Name : ??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0xBFE3B0 +Export 597 : + Name : ??4Script@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 598 : + Name : ??4Script@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 599 : + Name : ??4ScriptCompiler@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 600 : + Name : ??4ScriptCompiler@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 601 : + Name : ??4ScriptOrModule@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 602 : + Name : ??4ScriptOrModule@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 603 : + Name : ??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@$$QEAV012@@Z + VA : 0xBFE3B0 +Export 604 : + Name : ??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0xBFE3B0 +Export 605 : + Name : ??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + VA : 0x208AE0 +Export 606 : + Name : ??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + VA : 0x208AE0 +Export 607 : + Name : ??4Set@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 608 : + Name : ??4Set@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 609 : + Name : ??4SharedArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 610 : + Name : ??4SharedArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 611 : + Name : ??4SharedMemoryStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xA08910 +Export 612 : + Name : ??4SharedMemoryStatistics@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xA08910 +Export 613 : + Name : ??4SharedValueConveyor@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x55206C0 +Export 614 : + Name : ??4Signature@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 615 : + Name : ??4Signature@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 616 : + Name : ??4SourceLocation@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xA08910 +Export 617 : + Name : ??4SourceLocation@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xA08910 +Export 618 : + Name : ??4StackFrame@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 619 : + Name : ??4StackFrame@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 620 : + Name : ??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + VA : 0x208AE0 +Export 621 : + Name : ??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + VA : 0x208AE0 +Export 622 : + Name : ??4StackTrace@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 623 : + Name : ??4StackTrace@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 624 : + Name : ??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z + VA : 0x208AE0 +Export 625 : + Name : ??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z + VA : 0x208AE0 +Export 626 : + Name : ??4StartupData@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFF500 +Export 627 : + Name : ??4StartupData@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFF500 +Export 628 : + Name : ??4String@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 629 : + Name : ??4String@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 630 : + Name : ??4StringBuffer@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 631 : + Name : ??4StringObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 632 : + Name : ??4StringObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 633 : + Name : ??4StringView@v8_inspector@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xA08910 +Export 634 : + Name : ??4StringView@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0xA08910 +Export 635 : + Name : ??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + VA : 0xBFE3B0 +Export 636 : + Name : ??4StrongRootAllocatorBase@internal@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0xBFE3B0 +Export 637 : + Name : ??4SuspendTagCheckingScope@base@heap@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 638 : + Name : ??4Symbol@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 639 : + Name : ??4Symbol@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 640 : + Name : ??4SymbolObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 641 : + Name : ??4SymbolObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 642 : + Name : ??4Template@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 643 : + Name : ??4Template@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 644 : + Name : ??4ThreadIsolation@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 645 : + Name : ??4ThreadIsolation@internal@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 646 : + Name : ??4TickSample@internal@v8@@QEAAAEAU012@$$QEAU012@@Z + VA : 0xC05490 +Export 647 : + Name : ??4TickSample@internal@v8@@QEAAAEAU012@AEBU012@@Z + VA : 0xC05490 +Export 648 : + Name : ??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z + VA : 0x208AE0 +Export 649 : + Name : ??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@AEBU012@@Z + VA : 0x208AE0 +Export 650 : + Name : ??4TypecheckWitness@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0xBFE3B0 +Export 651 : + Name : ??4TypecheckWitness@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFE3B0 +Export 652 : + Name : ??4TypedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 653 : + Name : ??4TypedArray@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 654 : + Name : ??4Uint16Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 655 : + Name : ??4Uint16Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 656 : + Name : ??4Uint32@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 657 : + Name : ??4Uint32@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 658 : + Name : ??4Uint32Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 659 : + Name : ??4Uint32Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 660 : + Name : ??4Uint8Array@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 661 : + Name : ??4Uint8Array@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 662 : + Name : ??4Uint8ClampedArray@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 663 : + Name : ??4Uint8ClampedArray@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 664 : + Name : ??4UnboundModuleScript@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 665 : + Name : ??4UnboundModuleScript@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 666 : + Name : ??4UnboundScript@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 667 : + Name : ??4UnboundScript@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 668 : + Name : ??4Unlocker@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0xBFE3B0 +Export 669 : + Name : ??4Unwinder@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 670 : + Name : ??4Unwinder@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 671 : + Name : ??4V8@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 672 : + Name : ??4V8@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 673 : + Name : ??4V8DebuggerId@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0x7894E0 +Export 674 : + Name : ??4V8Inspector@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 675 : + Name : ??4V8InspectorClient@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 676 : + Name : ??4V8InspectorSession@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 677 : + Name : ??4V8StackFrame@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + VA : 0xF80E80 +Export 678 : + Name : ??4V8StackFrame@v8_inspector@@QEAAAEAU01@AEBU01@@Z + VA : 0xF80E80 +Export 679 : + Name : ??4V8StackTrace@v8_inspector@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 680 : + Name : ??4V8StackTraceId@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z + VA : 0xF81160 +Export 681 : + Name : ??4V8StackTraceId@v8_inspector@@QEAAAEAU01@AEBU01@@Z + VA : 0xF81160 +Export 682 : + Name : ??4Value@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 683 : + Name : ??4Value@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 684 : + Name : ??4Version@internal@v8@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 685 : + Name : ??4Version@internal@v8@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 686 : + Name : ??4Visitor@cppgc@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 687 : + Name : ??4WasmMemoryObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 688 : + Name : ??4WasmMemoryObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 689 : + Name : ??4WasmModuleObject@v8@@QEAAAEAV01@$$QEAV01@@Z + VA : 0x208AE0 +Export 690 : + Name : ??4WasmModuleObject@v8@@QEAAAEAV01@AEBV01@@Z + VA : 0x208AE0 +Export 691 : + Name : ??4WriteBarrier@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 692 : + Name : ??4WriteBarrier@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 693 : + Name : ??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 694 : + Name : ??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 695 : + Name : ??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z + VA : 0x208AE0 +Export 696 : + Name : ??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z + VA : 0x208AE0 +Export 697 : + Name : ??A?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBAAEBV?$Local@VContext@v8@@@1@_K@Z + VA : 0xC0A120 +Export 698 : + Name : ??A?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBAAEBV?$Local@VString@v8@@@1@_K@Z + VA : 0xC0A120 +Export 699 : + Name : ??A?$MemorySpan@$$CB_K@v8@@QEBAAEB_K_K@Z + VA : 0xC0A120 +Export 700 : + Name : ??A?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBAAEAV?$Handle@VMap@internal@v8@@@internal@1@_K@Z + VA : 0xC0A120 +Export 701 : + Name : ??A?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBAAEAV?$MaybeLocal@VValue@v8@@@1@_K@Z + VA : 0xC0A120 +Export 702 : + Name : ??A?$MemorySpan@_K@v8@@QEBAAEA_K_K@Z + VA : 0xC0A120 +Export 703 : + Name : ??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z + VA : 0xC00A40 +Export 704 : + Name : ??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z + VA : 0xC00A40 +Export 705 : + Name : ??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z + VA : 0xC027A0 +Export 706 : + Name : ??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z + VA : 0xC027A0 +Export 707 : + Name : ??DUtf8Value@String@v8@@QEAAPEADXZ + VA : 0x7E8D30 +Export 708 : + Name : ??DUtf8Value@String@v8@@QEBAPEBDXZ + VA : 0x7E8D30 +Export 709 : + Name : ??DValue@String@v8@@QEAAPEAGXZ + VA : 0x7E8D30 +Export 710 : + Name : ??DValue@String@v8@@QEBAPEBGXZ + VA : 0x7E8D30 +Export 711 : + Name : ??RDeleteACHHandle@node@@QEBAXPEAUACHHandle@1@@Z + VA : 0x27C7B10 +Export 712 : + Name : ??_7ActivityControl@v8@@6B@ + VA : 0x9746930 +Export 713 : + Name : ??_7AllocationProfile@v8@@6B@ + VA : 0x974AE80 +Export 714 : + Name : ??_7Allocator@ArrayBuffer@v8@@6B@ + VA : 0x974AF50 +Export 715 : + Name : ??_7ArrayBufferAllocator@node@@6B@ + VA : 0x97E06D0 +Export 716 : + Name : ??_7AsyncResource@node@@6B@ + VA : 0x97D1238 +Export 717 : + Name : ??_7Channel@V8Inspector@v8_inspector@@6B@ + VA : 0x9733A20 +Export 718 : + Name : ??_7CodeEventHandler@v8@@6B@ + VA : 0x972AC78 +Export 719 : + Name : ??_7CppHeap@v8@@6B@ + VA : 0x972D180 +Export 720 : + Name : ??_7Delegate@ValueDeserializer@v8@@6B@ + VA : 0x9743F30 +Export 721 : + Name : ??_7Delegate@ValueSerializer@v8@@6B@ + VA : 0x9743EE0 +Export 722 : + Name : ??_7DiscardedSamplesDelegate@v8@@6B@ + VA : 0x9746930 +Export 723 : + Name : ??_7Domain@API@Schema@protocol@v8_inspector@@6B@ + VA : 0x97278B8 +Export 724 : + Name : ??_7EmbedderGraph@v8@@6B@ + VA : 0x974AEA0 +Export 725 : + Name : ??_7EmbedderRootsHandler@v8@@6B@ + VA : 0x974AF80 +Export 726 : + Name : ??_7Exported@protocol@v8_inspector@@6B@ + VA : 0x97469A0 +Export 727 : + Name : ??_7Extension@v8@@6B@ + VA : 0x977F7E0 +Export 728 : + Name : ??_7ExternalOneByteStringResource@String@v8@@6B@ + VA : 0x974AF10 +Export 729 : + Name : ??_7ExternalResourceVisitor@v8@@6B@ + VA : 0x974AEC8 +Export 730 : + Name : ??_7ExternalSourceStream@ScriptCompiler@v8@@6B@ + VA : 0x9746930 +Export 731 : + Name : ??_7ExternalStringResource@String@v8@@6B@ + VA : 0x974AF10 +Export 732 : + Name : ??_7ExternalStringResourceBase@String@v8@@6B@ + VA : 0x974AEE0 +Export 733 : + Name : ??_7Heap@cppgc@@6B@ + VA : 0x972D180 +Export 734 : + Name : ??_7InitializationResult@node@@6B@ + VA : 0x97E0690 +Export 735 : + Name : ??_7Inspectable@V8InspectorSession@v8_inspector@@6B@ + VA : 0x97469A0 +Export 736 : + Name : ??_7IsolatePlatformDelegate@node@@6B@ + VA : 0x9776DA8 +Export 737 : + Name : ??_7MeasureMemoryDelegate@v8@@6B@ + VA : 0x974AFA0 +Export 738 : + Name : ??_7MicrotaskQueue@v8@@6B@ + VA : 0x9748050 +Export 739 : + Name : ??_7ModuleWrap@loader@node@@6B@ + VA : 0x979A980 +Export 740 : + Name : ??_7MultiIsolatePlatform@node@@6B@ + VA : 0x97E0700 +Export 741 : + Name : ??_7NameProvider@cppgc@@6B@ + VA : 0x9746930 +Export 742 : + Name : ??_7OutputStream@v8@@6B@ + VA : 0x974AE50 +Export 743 : + Name : ??_7PersistentHandleVisitor@v8@@6B@ + VA : 0x974AEC8 +Export 744 : + Name : ??_7Platform@cppgc@@6B@ + VA : 0x974B020 +Export 745 : + Name : ??_7Recorder@metrics@v8@@6B@ + VA : 0x974AFC0 +Export 746 : + Name : ??_7RemoteObject@API@Runtime@protocol@v8_inspector@@6B@ + VA : 0x97278B8 +Export 747 : + Name : ??_7RootVisitor@internal@cppgc@@6B@ + VA : 0x974B0B0 +Export 748 : + Name : ??_7SearchMatch@API@Debugger@protocol@v8_inspector@@6B@ + VA : 0x97278B8 +Export 749 : + Name : ??_7StackTrace@API@Runtime@protocol@v8_inspector@@6B@ + VA : 0x97278B8 +Export 750 : + Name : ??_7StackTraceId@API@Runtime@protocol@v8_inspector@@6B@ + VA : 0x97278B8 +Export 751 : + Name : ??_7StringBuffer@v8_inspector@@6B@ + VA : 0x9746930 +Export 752 : + Name : ??_7V8Inspector@v8_inspector@@6B@ + VA : 0x9746B40 +Export 753 : + Name : ??_7V8InspectorClient@v8_inspector@@6B@ + VA : 0x9746A40 +Export 754 : + Name : ??_7V8InspectorSession@v8_inspector@@6B@ + VA : 0x97469B0 +Export 755 : + Name : ??_7V8StackTrace@v8_inspector@@6B@ + VA : 0x9746940 +Export 756 : + Name : ??_7Visitor@cppgc@@6B@ + VA : 0x974B060 +Export 757 : + Name : ??_FCpuProfilingOptions@v8@@QEAAXXZ + VA : 0xC19E70 +Export 758 : + Name : ??_FSnapshotCreator@v8@@QEAAXXZ + VA : 0xC056B0 +Export 759 : + Name : ??_UGlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z + VA : 0xBFFC00 +Export 760 : + Name : ??_UHandleScope@v8@@CAPEAX_K@Z + VA : 0x551D050 +Export 761 : + Name : ??_UTryCatch@v8@@CAPEAX_K@Z + VA : 0x551D050 +Export 762 : + Name : ??_VGlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z + VA : 0xBFFC00 +Export 763 : + Name : ??_VHandleScope@v8@@CAXPEAX_K@Z + VA : 0x551D050 +Export 764 : + Name : ??_VTryCatch@v8@@CAXPEAX_K@Z + VA : 0x551D050 +Export 765 : + Name : ?Abort@WasmStreaming@v8@@QEAAXV?$MaybeLocal@VValue@v8@@@2@@Z + VA : 0x5917730 +Export 766 : + Name : ?Add@Set@v8@@QEAA?AV?$MaybeLocal@VSet@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x552A840 +Export 767 : + Name : ?AddBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + VA : 0xC18790 +Export 768 : + Name : ?AddBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z + VA : 0x5532060 +Export 769 : + Name : ?AddCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + VA : 0x552F2E0 +Export 770 : + Name : ?AddContext@SnapshotCreator@v8@@QEAA_KV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z + VA : 0x551CC80 +Export 771 : + Name : ?AddData@SnapshotCreator@v8@@AEAA_KV?$Local@VContext@v8@@@2@_K@Z + VA : 0x551CCF0 +Export 772 : + Name : ?AddData@SnapshotCreator@v8@@AEAA_K_K@Z + VA : 0x551CCE0 +Export 773 : + Name : ?AddEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z + VA : 0x27C7B70 +Export 774 : + Name : ?AddEnvironmentCleanupHookInternal@node@@YAPEAUACHHandle@1@PEAVIsolate@v8@@P6AXPEAXP6AX1@Z1@Z1@Z + VA : 0x27C7CA0 +Export 775 : + Name : ?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z + VA : 0xC17F30 +Export 776 : + Name : ?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z + VA : 0x552EBF0 +Export 777 : + Name : ?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z + VA : 0xC17EE0 +Export 778 : + Name : ?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z + VA : 0x552EBC0 +Export 779 : + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnapi_module@@@Z + VA : 0x21ED2F0 +Export 780 : + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnode_module@1@@Z + VA : 0x21ED200 +Export 781 : + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6APEAUnapi_value__@@PEAUnapi_env__@@PEAU3@@ZH@Z + VA : 0x21ED3D0 +Export 782 : + Name : ?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6AXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@4@V?$Local@VContext@v8@@@4@PEAX@Z5@Z + VA : 0x21ED360 +Export 783 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalMark@metrics@v8@@@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 784 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalSweep@metrics@v8@@@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 785 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullCycle@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 786 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalMark@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 787 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalSweep@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 788 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionYoungCycle@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 789 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleCompiled@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 790 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleDecoded@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 791 : + Name : ?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleInstantiated@23@VContextId@123@@Z + VA : 0x1EA0F0 +Export 792 : + Name : ?AddMessageListener@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z1@Z + VA : 0x552F910 +Export 793 : + Name : ?AddMessageListenerWithErrorLevel@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@ZH1@Z + VA : 0xC18DF0 +Export 794 : + Name : ?AddMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + VA : 0x552F490 +Export 795 : + Name : ?AddNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z0@Z + VA : 0x552F8E0 +Export 796 : + Name : ?AddThreadSafeEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModulesPerIsolate@23@@Z + VA : 0x48C0B20 +Export 797 : + Name : ?Address@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + VA : 0x2D4690 +Export 798 : + Name : ?AdjustAmountOfExternalAllocatedMemory@Isolate@v8@@QEAA_J_J@Z + VA : 0x398CD80 +Export 799 : + Name : ?AdoptSharedValueConveyor@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@$$QEAVSharedValueConveyor@3@@Z + VA : 0x55208B0 +Export 800 : + Name : ?Allocate@Isolate@v8@@SAPEAV12@XZ + VA : 0xC17FC0 +Export 801 : + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KG@Z + VA : 0x3DBC9F0 +Export 802 : + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KGUCustomSpaceIndex@3@@Z + VA : 0x3DBCB10 +Export 803 : + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@G@Z + VA : 0x594C5C0 +Export 804 : + Name : ?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@GUCustomSpaceIndex@3@@Z + VA : 0x594C630 +Export 805 : + Name : ?AllocateEnvironmentThreadId@node@@YA?AUThreadId@1@XZ + VA : 0x21ED460 +Export 806 : + Name : ?AllocateNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + VA : 0xBFFB20 +Export 807 : + Name : ?AllocateNode@PersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + VA : 0xBFFA60 +Export 808 : + Name : ?AllocationContaining@JitPageReference@ThreadIsolation@internal@v8@@QEAA?AU?$pair@_KAEAVJitAllocation@ThreadIsolation@internal@v8@@@__Cr@std@@_K@Z + VA : 0x39C4C80 +Export 809 : + Name : ?AllowCodeGenerationFromStrings@Context@v8@@QEAAX_N@Z + VA : 0xC14240 +Export 810 : + Name : ?AllowWasmCodeGenerationCallback@node@@YA_NV?$Local@VContext@v8@@@v8@@V?$Local@VString@v8@@@3@@Z + VA : 0x21EA9D0 +Export 811 : + Name : ?Ambiguous@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093D80 +Export 812 : + Name : ?AnnotateStrongRetainer@api_internal@v8@@YAXPEA_KPEBD@Z + VA : 0x3986290 +Export 813 : + Name : ?AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z + VA : 0xBFF740 +Export 814 : + Name : ?ArgumentCount@CFunction@v8@@QEBAIXZ + VA : 0xC000F0 +Export 815 : + Name : ?ArgumentCount@CFunctionInfo@v8@@QEBAIXZ + VA : 0xC00090 +Export 816 : + Name : ?ArgumentInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@I@Z + VA : 0xC000E0 +Export 817 : + Name : ?ArgumentInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@I@Z + VA : 0xC05350 +Export 818 : + Name : ?AsArray@Map@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ + VA : 0x552A3A0 +Export 819 : + Name : ?AsArray@Set@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ + VA : 0x552ADB0 +Export 820 : + Name : ?Assert@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093D88 +Export 821 : + Name : ?AssertLocked@PersistentRegionLock@internal@cppgc@@SAXXZ + VA : 0x3DC7690 +Export 822 : + Name : ?AsyncHooksGetExecutionAsyncId@node@@YANPEAVIsolate@v8@@@Z + VA : 0x27C7FA0 +Export 823 : + Name : ?AsyncHooksGetTriggerAsyncId@node@@YANPEAVIsolate@v8@@@Z + VA : 0x27C7FD0 +Export 824 : + Name : ?AtExit@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z + VA : 0x27C7700 +Export 825 : + Name : ?AttachCppHeap@Isolate@v8@@QEAAXPEAVCppHeap@2@@Z + VA : 0xC17F80 +Export 826 : + Name : ?AutomaticallyRestoreInitialHeapLimit@Isolate@v8@@QEAAXN@Z + VA : 0x552F900 +Export 827 : + Name : ?BindToCurrentContext@UnboundScript@v8@@QEAA?AV?$Local@VScript@v8@@@2@XZ + VA : 0xC08840 +Export 828 : + Name : ?BooleanValue@Value@v8@@QEBA_NPEAVIsolate@2@@Z + VA : 0xC0DED0 +Export 829 : + Name : ?Buffer@ArrayBufferView@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ + VA : 0xC17810 +Export 830 : + Name : ?Buffer@WasmMemoryObject@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ + VA : 0x5527790 +Export 831 : + Name : ?Build@?$CTypeInfoBuilder@H$S@v8@@SA?AVCTypeInfo@2@XZ + VA : 0xC04270 +Export 832 : + Name : ?Build@?$CTypeInfoBuilder@I$S@v8@@SA?AVCTypeInfo@2@XZ + VA : 0xC04280 +Export 833 : + Name : ?Build@?$CTypeInfoBuilder@M$S@v8@@SA?AVCTypeInfo@2@XZ + VA : 0xC04290 +Export 834 : + Name : ?Build@?$CTypeInfoBuilder@N$S@v8@@SA?AVCTypeInfo@2@XZ + VA : 0xC042A0 +Export 835 : + Name : ?ByteLength@ArrayBuffer@v8@@QEBA_KXZ + VA : 0x552C230 +Export 836 : + Name : ?ByteLength@ArrayBufferView@v8@@QEAA_KXZ + VA : 0xC17960 +Export 837 : + Name : ?ByteLength@BackingStore@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 838 : + Name : ?ByteLength@SharedArrayBuffer@v8@@QEBA_KXZ + VA : 0x552C230 +Export 839 : + Name : ?ByteOffset@ArrayBufferView@v8@@QEAA_KXZ + VA : 0xC17930 +Export 840 : + Name : ?CSPViolation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093D90 +Export 841 : + Name : ?CacheResolvedWrapsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2181E90 +Export 842 : + Name : ?CachedDataVersionTag@ScriptCompiler@v8@@SAIXZ + VA : 0xC0B9B0 +Export 843 : + Name : ?CalculateAgeTableSizeForHeapSize@AgeTable@internal@cppgc@@SA_K_K@Z + VA : 0xBFF780 +Export 844 : + Name : ?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV62@@Z + VA : 0x398A840 +Export 845 : + Name : ?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z + VA : 0xC11DA0 +Export 846 : + Name : ?CallAsConstructor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z + VA : 0xC111E0 +Export 847 : + Name : ?CallAsFunction@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z + VA : 0x5526610 +Export 848 : + Name : ?CanBeRehashed@StartupData@v8@@QEBA_NXZ + VA : 0x551CD20 +Export 849 : + Name : ?CanContinue@TryCatch@v8@@QEBA_NXZ + VA : 0xC0BD00 +Export 850 : + Name : ?CanLookupStartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA_N_K@Z + VA : 0x5583D50 +Export 851 : + Name : ?CanMakeExternal@String@v8@@QEBA_NW4Encoding@12@@Z + VA : 0x398C930 +Export 852 : + Name : ?CancelTerminateExecution@Isolate@v8@@QEAAXXZ + VA : 0x552EC40 +Export 853 : + Name : ?CaptureStackTrace@Exception@v8@@SA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z + VA : 0xC19C60 +Export 854 : + Name : ?Cast@Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 855 : + Name : ?Cast@ArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 856 : + Name : ?Cast@ArrayBufferView@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 857 : + Name : ?Cast@BigInt64Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 858 : + Name : ?Cast@BigInt@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 859 : + Name : ?Cast@BigIntObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 860 : + Name : ?Cast@BigUint64Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 861 : + Name : ?Cast@Boolean@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 862 : + Name : ?Cast@BooleanObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 863 : + Name : ?Cast@Context@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 864 : + Name : ?Cast@DataView@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 865 : + Name : ?Cast@Date@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 866 : + Name : ?Cast@DictionaryTemplate@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 867 : + Name : ?Cast@External@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 868 : + Name : ?Cast@FixedArray@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 869 : + Name : ?Cast@Float16Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 870 : + Name : ?Cast@Float32Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 871 : + Name : ?Cast@Float64Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 872 : + Name : ?Cast@Function@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 873 : + Name : ?Cast@FunctionTemplate@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 874 : + Name : ?Cast@Int16Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 875 : + Name : ?Cast@Int32@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 876 : + Name : ?Cast@Int32Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 877 : + Name : ?Cast@Int8Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 878 : + Name : ?Cast@Integer@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 879 : + Name : ?Cast@Map@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 880 : + Name : ?Cast@Module@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 881 : + Name : ?Cast@ModuleRequest@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 882 : + Name : ?Cast@Name@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 883 : + Name : ?Cast@Number@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 884 : + Name : ?Cast@NumberObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 885 : + Name : ?Cast@Object@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 886 : + Name : ?Cast@ObjectTemplate@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 887 : + Name : ?Cast@PrimitiveArray@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 888 : + Name : ?Cast@Private@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 889 : + Name : ?Cast@Promise@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 890 : + Name : ?Cast@Proxy@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 891 : + Name : ?Cast@RegExp@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 892 : + Name : ?Cast@Resolver@Promise@v8@@SAPEAV123@PEAVValue@3@@Z + VA : 0x208AE0 +Export 893 : + Name : ?Cast@Set@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 894 : + Name : ?Cast@SharedArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 895 : + Name : ?Cast@Signature@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 896 : + Name : ?Cast@String@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 897 : + Name : ?Cast@StringObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 898 : + Name : ?Cast@Symbol@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 899 : + Name : ?Cast@SymbolObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 900 : + Name : ?Cast@TypedArray@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 901 : + Name : ?Cast@Uint16Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 902 : + Name : ?Cast@Uint32@v8@@SAPEAV12@PEAVData@2@@Z + VA : 0x208AE0 +Export 903 : + Name : ?Cast@Uint32Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 904 : + Name : ?Cast@Uint8Array@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 905 : + Name : ?Cast@Uint8ClampedArray@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 906 : + Name : ?Cast@WasmMemoryObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 907 : + Name : ?Cast@WasmModuleObject@v8@@SAPEAV12@PEAVValue@2@@Z + VA : 0x208AE0 +Export 908 : + Name : ?Catch@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z + VA : 0xC16F60 +Export 909 : + Name : ?CheckCachedDataInvariants@ExternalOneByteStringResource@String@v8@@AEBAXXZ + VA : 0x37DC8A0 +Export 910 : + Name : ?CheckCachedDataInvariants@ExternalStringResource@String@v8@@AEBAXXZ + VA : 0x1EA0F0 +Export 911 : + Name : ?CheckCast@Array@v8@@CAXPEAVValue@2@@Z + VA : 0x55224E0 +Export 912 : + Name : ?CheckCast@ArrayBuffer@v8@@CAXPEAVValue@2@@Z + VA : 0x5522A20 +Export 913 : + Name : ?CheckCast@ArrayBufferView@v8@@CAXPEAVValue@2@@Z + VA : 0x5522A60 +Export 914 : + Name : ?CheckCast@BigInt64Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522E60 +Export 915 : + Name : ?CheckCast@BigInt@v8@@CAXPEAVData@2@@Z + VA : 0x5522460 +Export 916 : + Name : ?CheckCast@BigIntObject@v8@@CAXPEAVValue@2@@Z + VA : 0x55232C0 +Export 917 : + Name : ?CheckCast@BigUint64Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522DE0 +Export 918 : + Name : ?CheckCast@Boolean@v8@@CAXPEAVData@2@@Z + VA : 0x5522150 +Export 919 : + Name : ?CheckCast@BooleanObject@v8@@CAXPEAVValue@2@@Z + VA : 0x5523320 +Export 920 : + Name : ?CheckCast@Context@v8@@CAXPEAVData@2@@Z + VA : 0x55224A0 +Export 921 : + Name : ?CheckCast@DataView@v8@@CAXPEAVValue@2@@Z + VA : 0x5523100 +Export 922 : + Name : ?CheckCast@Date@v8@@CAXPEAVValue@2@@Z + VA : 0x5523190 +Export 923 : + Name : ?CheckCast@DictionaryTemplate@v8@@CAXPEAVData@2@@Z + VA : 0x5528610 +Export 924 : + Name : ?CheckCast@External@v8@@CAXPEAVValue@2@@Z + VA : 0x5522090 +Export 925 : + Name : ?CheckCast@FixedArray@v8@@CAXPEAVData@2@@Z + VA : 0x5522250 +Export 926 : + Name : ?CheckCast@Float16Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5523060 +Export 927 : + Name : ?CheckCast@Float32Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522F60 +Export 928 : + Name : ?CheckCast@Float64Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522FE0 +Export 929 : + Name : ?CheckCast@Function@v8@@CAXPEAVValue@2@@Z + VA : 0x5522110 +Export 930 : + Name : ?CheckCast@FunctionTemplate@v8@@CAXPEAVData@2@@Z + VA : 0x5528650 +Export 931 : + Name : ?CheckCast@Int16Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522C60 +Export 932 : + Name : ?CheckCast@Int32@v8@@CAXPEAVData@2@@Z + VA : 0x55223C0 +Export 933 : + Name : ?CheckCast@Int32Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522D60 +Export 934 : + Name : ?CheckCast@Int8Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522B60 +Export 935 : + Name : ?CheckCast@Integer@v8@@CAXPEAVData@2@@Z + VA : 0x5522390 +Export 936 : + Name : ?CheckCast@Map@v8@@CAXPEAVValue@2@@Z + VA : 0x5522520 +Export 937 : + Name : ?CheckCast@Module@v8@@CAXPEAVData@2@@Z + VA : 0x55222D0 +Export 938 : + Name : ?CheckCast@ModuleRequest@v8@@CAXPEAVData@2@@Z + VA : 0x5522290 +Export 939 : + Name : ?CheckCast@Name@v8@@CAXPEAVData@2@@Z + VA : 0x5522190 +Export 940 : + Name : ?CheckCast@Number@v8@@CAXPEAVData@2@@Z + VA : 0x5522360 +Export 941 : + Name : ?CheckCast@NumberObject@v8@@CAXPEAVValue@2@@Z + VA : 0x5523270 +Export 942 : + Name : ?CheckCast@Numeric@v8@@CAXPEAVData@2@@Z + VA : 0x5522310 +Export 943 : + Name : ?CheckCast@Object@v8@@CAXPEAVValue@2@@Z + VA : 0x55220D0 +Export 944 : + Name : ?CheckCast@ObjectTemplate@v8@@CAXPEAVData@2@@Z + VA : 0x55285E0 +Export 945 : + Name : ?CheckCast@PrimitiveArray@v8@@CAXPEAVData@2@@Z + VA : 0x551E980 +Export 946 : + Name : ?CheckCast@Private@v8@@CAXPEAVData@2@@Z + VA : 0x5522220 +Export 947 : + Name : ?CheckCast@Promise@v8@@CAXPEAVValue@2@@Z + VA : 0x55225A0 +Export 948 : + Name : ?CheckCast@Proxy@v8@@CAXPEAVValue@2@@Z + VA : 0x5522620 +Export 949 : + Name : ?CheckCast@RegExp@v8@@CAXPEAVValue@2@@Z + VA : 0x5523380 +Export 950 : + Name : ?CheckCast@Resolver@Promise@v8@@CAXPEAVValue@3@@Z + VA : 0x55225E0 +Export 951 : + Name : ?CheckCast@Set@v8@@CAXPEAVValue@2@@Z + VA : 0x5522560 +Export 952 : + Name : ?CheckCast@SharedArrayBuffer@v8@@CAXPEAVValue@2@@Z + VA : 0x5523150 +Export 953 : + Name : ?CheckCast@Signature@v8@@CAXPEAVData@2@@Z + VA : 0x5528680 +Export 954 : + Name : ?CheckCast@String@v8@@CAXPEAVData@2@@Z + VA : 0x55221C0 +Export 955 : + Name : ?CheckCast@StringObject@v8@@CAXPEAVValue@2@@Z + VA : 0x55231D0 +Export 956 : + Name : ?CheckCast@Symbol@v8@@CAXPEAVData@2@@Z + VA : 0x55221F0 +Export 957 : + Name : ?CheckCast@SymbolObject@v8@@CAXPEAVValue@2@@Z + VA : 0x5523220 +Export 958 : + Name : ?CheckCast@TypedArray@v8@@CAXPEAVValue@2@@Z + VA : 0x5522AA0 +Export 959 : + Name : ?CheckCast@Uint16Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522BE0 +Export 960 : + Name : ?CheckCast@Uint32@v8@@CAXPEAVData@2@@Z + VA : 0x5522430 +Export 961 : + Name : ?CheckCast@Uint32Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522CE0 +Export 962 : + Name : ?CheckCast@Uint8Array@v8@@CAXPEAVValue@2@@Z + VA : 0x5522AE0 +Export 963 : + Name : ?CheckCast@Uint8ClampedArray@v8@@CAXPEAVValue@2@@Z + VA : 0x5522EE0 +Export 964 : + Name : ?CheckCast@Value@v8@@CAXPEAVData@2@@Z + VA : 0x5522060 +Export 965 : + Name : ?CheckCast@WasmMemoryObject@v8@@CAXPEAVValue@2@@Z + VA : 0x5522660 +Export 966 : + Name : ?CheckCast@WasmModuleObject@v8@@CAXPEAVValue@2@@Z + VA : 0x55226A0 +Export 967 : + Name : ?CheckInitializedImpl@Internals@internal@v8@@SAXPEAVIsolate@3@@Z + VA : 0x5522030 +Export 968 : + Name : ?CheckMemoryIsZeroed@GCInfoTable@internal@cppgc@@AEAAXPEA_K_K@Z + VA : 0x48C0B20 +Export 969 : + Name : ?CheckOneByte@ValueView@String@v8@@AEBAX_N@Z + VA : 0x5530030 +Export 970 : + Name : ?CheckParams@WriteBarrier@internal@cppgc@@SAXW4Type@123@AEBUParams@123@@Z + VA : 0x1EA0F0 +Export 971 : + Name : ?CheckPointerImpl@SameThreadEnabledCheckingPolicyBase@internal@cppgc@@IEAAXPEBX_N1@Z + VA : 0x5950DB0 +Export 972 : + Name : ?CheckValue@TracedReferenceBase@v8@@IEBAXXZ + VA : 0x55320A0 +Export 973 : + Name : ?CheckYoungGenerationConsistency@HeapLayout@internal@v8@@CAXPEBVMemoryChunk@23@@Z + VA : 0x48C0B20 +Export 974 : + Name : ?Clear@Map@v8@@QEAAXXZ + VA : 0x5529BA0 +Export 975 : + Name : ?Clear@Set@v8@@QEAAXXZ + VA : 0x552A7D0 +Export 976 : + Name : ?ClearAllUsedNodes@CrossThreadPersistentRegion@internal@cppgc@@QEAAXXZ + VA : 0x3DC7E90 +Export 977 : + Name : ?ClearAllUsedNodes@PersistentRegionBase@internal@cppgc@@QEAAXXZ + VA : 0x3DC7710 +Export 978 : + Name : ?ClearCachesForTesting@Isolate@v8@@QEAAXXZ + VA : 0x552F540 +Export 979 : + Name : ?ClearKeptObjects@Isolate@v8@@QEAAXXZ + VA : 0x552E920 +Export 980 : + Name : ?ClearObjectIds@HeapProfiler@v8@@QEAAXXZ + VA : 0xC19E90 +Export 981 : + Name : ?ClearWeak@api_internal@v8@@YAPEAXPEA_K@Z + VA : 0xC05890 +Export 982 : + Name : ?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z + VA : 0x398A320 +Export 983 : + Name : ?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + VA : 0x5526470 +Export 984 : + Name : ?CollectCustomSpaceStatisticsAtLastGC@CppHeap@v8@@QEAAXV?$vector@UCustomSpaceIndex@cppgc@@V?$allocator@UCustomSpaceIndex@cppgc@@@__Cr@std@@@__Cr@std@@V?$unique_ptr@VCustomSpaceStatisticsReceiver@v8@@U?$default_delete@VCustomSpaceStatisticsReceiver@v8@@@__Cr@std@@@45@@Z + VA : 0x55E5D30 +Export 985 : + Name : ?CollectGarbageForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z + VA : 0x55E6030 +Export 986 : + Name : ?CollectGarbageInYoungGenerationForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z + VA : 0x55E6130 +Export 987 : + Name : ?CollectSample@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z + VA : 0x5531290 +Export 988 : + Name : ?CollectStatistics@CppHeap@v8@@QEAA?AUHeapStatistics@cppgc@@W4DetailLevel@34@@Z + VA : 0x55E5D00 +Export 989 : + Name : ?ColumnOffset@ScriptOrigin@v8@@QEBAHXZ + VA : 0xBFF070 +Export 990 : + Name : ?Commit@CompilationDependencies@compiler@internal@v8@@QEAA_NV?$Handle@VCode@internal@v8@@@34@@Z + VA : 0x3E4CAA0 +Export 991 : + Name : ?CompatibilityCheck@CachedData@ScriptCompiler@v8@@QEAA?AW4CompatibilityCheckResult@123@PEAVIsolate@3@@Z + VA : 0x551DFE0 +Export 992 : + Name : ?Compile@Script@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@PEAVScriptOrigin@2@@Z + VA : 0x551F440 +Export 993 : + Name : ?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + VA : 0xC0A730 +Export 994 : + Name : ?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z + VA : 0xC0B210 +Export 995 : + Name : ?Compile@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBE@2@@Z + VA : 0x552BC40 +Export 996 : + Name : ?CompileFunction@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PEAVSource@12@_KQEAV?$Local@VString@v8@@@2@2QEAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@@Z + VA : 0xC0A990 +Export 997 : + Name : ?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + VA : 0xC0A8B0 +Export 998 : + Name : ?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@V?$Local@VContext@v8@@@2@PEAVStreamedSource@12@V?$Local@VString@v8@@@2@AEBVScriptOrigin@2@@Z + VA : 0xC0B5F0 +Export 999 : + Name : ?CompileOptionsIsValid@ScriptCompiler@v8@@SA_NW4CompileOptions@12@@Z + VA : 0xBFF110 +Export 1000 : + Name : ?CompileUnboundInternal@ScriptCompiler@v8@@CA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + VA : 0xC0A1B0 +Export 1001 : + Name : ?CompileUnboundScript@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PEAVIsolate@2@PEAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z + VA : 0x551F220 +Export 1002 : + Name : ?Concat@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@V32@1@Z + VA : 0x55289E0 +Export 1003 : + Name : ?ConfigureDefaults@ResourceConstraints@v8@@QEAAX_K0@Z + VA : 0xC057E0 +Export 1004 : + Name : ?ConfigureDefaultsFromHeapSize@ResourceConstraints@v8@@QEAAX_K0@Z + VA : 0x551CE30 +Export 1005 : + Name : ?ContainsOnlyOneByte@String@v8@@QEBA_NXZ + VA : 0x398B530 +Export 1006 : + Name : ?ContextDisposedNotification@Isolate@v8@@QEAAH_N@Z + VA : 0xC18AB0 +Export 1007 : + Name : ?ConvertToJSGlobalProxyIfNecessary@api_internal@v8@@YA_K_K@Z + VA : 0x5521FE0 +Export 1008 : + Name : ?Copy@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEBD_K@Z + VA : 0x21669C0 +Export 1009 : + Name : ?CopyCodePages@Isolate@v8@@QEAA_K_KPEAUMemoryRange@2@@Z + VA : 0x552F840 +Export 1010 : + Name : ?CopyContents@ArrayBufferView@v8@@QEAA_KPEAX_K@Z + VA : 0x552C5C0 +Export 1011 : + Name : ?CopyGlobalReference@api_internal@v8@@YAPEA_KPEA_K@Z + VA : 0x551CF30 +Export 1012 : + Name : ?CopyNameForHeapSnapshot@HeapProfiler@v8@@QEAAPEBDPEBD@Z + VA : 0x5532090 +Export 1013 : + Name : ?CopyTracedReference@internal@v8@@YAXPEBQEB_KPEAPEA_K@Z + VA : 0x3986210 +Export 1014 : + Name : ?Create@ArrayBufferAllocator@node@@SA?AV?$unique_ptr@VArrayBufferAllocator@node@@U?$default_delete@VArrayBufferAllocator@node@@@__Cr@std@@@__Cr@std@@_N@Z + VA : 0x21EB330 +Export 1015 : + Name : ?Create@CppHeap@v8@@SA?AV?$unique_ptr@VCppHeap@v8@@U?$default_delete@VCppHeap@v8@@@__Cr@std@@@__Cr@std@@PEAVPlatform@2@AEBUCppHeapCreateParams@2@@Z + VA : 0xC97D70 +Export 1016 : + Name : ?Create@Heap@cppgc@@SA?AV?$unique_ptr@VHeap@cppgc@@U?$default_delete@VHeap@cppgc@@@__Cr@std@@@__Cr@std@@V?$shared_ptr@VPlatform@cppgc@@@45@UHeapOptions@12@@Z + VA : 0x594EFA0 +Export 1017 : + Name : ?Create@MultiIsolatePlatform@node@@SA?AV?$unique_ptr@VMultiIsolatePlatform@node@@U?$default_delete@VMultiIsolatePlatform@node@@@__Cr@std@@@__Cr@std@@HPEAVTracingController@v8@@PEAVPageAllocator@7@@Z + VA : 0x21EC720 +Export 1018 : + Name : ?CreateAgent@node@@YAPEAVAgent@tracing@1@XZ + VA : 0x21EC6D0 +Export 1019 : + Name : ?CreateArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@XZ + VA : 0x21EB450 +Export 1020 : + Name : ?CreateBlob@SnapshotCreator@v8@@QEAA?AVStartupData@2@W4FunctionCodeHandling@12@@Z + VA : 0x551CD00 +Export 1021 : + Name : ?CreateCachedData@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2185830 +Export 1022 : + Name : ?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundModuleScript@v8@@@2@@Z + VA : 0xC0BC30 +Export 1023 : + Name : ?CreateCodeCache@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VUnboundScript@v8@@@2@@Z + VA : 0xC0BC30 +Export 1024 : + Name : ?CreateCodeCacheForFunction@ScriptCompiler@v8@@SAPEAUCachedData@12@V?$Local@VFunction@v8@@@2@@Z + VA : 0x551F360 +Export 1025 : + Name : ?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z + VA : 0x5523EA0 +Export 1026 : + Name : ?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0xC0EC10 +Export 1027 : + Name : ?CreateEnvironment@node@@YAPEAVEnvironment@1@PEAVIsolateData@1@V?$Local@VContext@v8@@@v8@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@2W4Flags@EnvironmentFlags@1@UThreadId@1@V?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@78@@Z + VA : 0x21EBB40 +Export 1028 : + Name : ?CreateForSnapshotting@CommonEnvironmentSetup@node@@SA?AV?$unique_ptr@VCommonEnvironmentSetup@node@@U?$default_delete@VCommonEnvironmentSetup@node@@@__Cr@std@@@__Cr@std@@PEAVMultiIsolatePlatform@2@PEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@45@AEBV745@2AEBUSnapshotConfig@2@@Z + VA : 0x21EEE20 +Export 1029 : + Name : ?CreateHandle@HandleScope@v8@@KAPEA_KPEAVIsolate@internal@2@_K@Z + VA : 0x3986330 +Export 1030 : + Name : ?CreateIsolateData@node@@YAPEAVIsolateData@1@PEAVIsolate@v8@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEAVArrayBufferAllocator@1@PEBVEmbedderSnapshotData@1@@Z + VA : 0x21EBAE0 +Export 1031 : + Name : ?CreateMessage@Exception@v8@@SA?AV?$Local@VMessage@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + VA : 0xC19B50 +Export 1032 : + Name : ?CreatePerContextProperties@ModuleWrap@loader@node@@SAXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@5@V?$Local@VContext@v8@@@5@PEAX@Z + VA : 0x2185E60 +Export 1033 : + Name : ?CreatePerIsolateProperties@ModuleWrap@loader@node@@SAXPEAVIsolateData@3@V?$Local@VObjectTemplate@v8@@@v8@@@Z + VA : 0x2185AD0 +Export 1034 : + Name : ?CreatePlatform@node@@YAPEAVMultiIsolatePlatform@1@HPEAVTracingController@v8@@@Z + VA : 0x21EC6F0 +Export 1035 : + Name : ?CreateSnapshot@CommonEnvironmentSetup@node@@QEAA?AV?$unique_ptr@$$CBVEmbedderSnapshotData@node@@UDeleteSnapshotData@12@@__Cr@std@@XZ + VA : 0x21EF170 +Export 1036 : + Name : ?CreateSyntheticModule@Module@v8@@SA?AV?$Local@VModule@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@AEBV?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@2@P6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V32@@Z@Z + VA : 0x551ECA0 +Export 1037 : + Name : ?Current@SourceLocation@v8@@SA?AV12@PEBD0_K@Z + VA : 0xBFE960 +Export 1038 : + Name : ?CurrentScriptNameOrSourceURL@StackTrace@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC0C710 +Export 1039 : + Name : ?CurrentStackTrace@StackTrace@v8@@SA?AV?$Local@VStackTrace@v8@@@2@PEAVIsolate@2@HW4StackTraceOptions@12@@Z + VA : 0x3988A40 +Export 1040 : + Name : ?DCheckImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z + VA : 0x594FAA0 +Export 1041 : + Name : ?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DA0 +Export 1042 : + Name : ?Data@ArrayBuffer@v8@@QEBAPEAXXZ + VA : 0x5522820 +Export 1043 : + Name : ?Data@BackingStore@v8@@QEBAPEAXXZ + VA : 0x7E8D30 +Export 1044 : + Name : ?Data@Buffer@node@@YAPEADV?$Local@VObject@v8@@@v8@@@Z + VA : 0x2166130 +Export 1045 : + Name : ?Data@Buffer@node@@YAPEADV?$Local@VValue@v8@@@v8@@@Z + VA : 0x2166130 +Export 1046 : + Name : ?Data@SharedArrayBuffer@v8@@QEBAPEAXXZ + VA : 0x5522820 +Export 1047 : + Name : ?DateTimeConfigurationChangeNotification@Isolate@v8@@QEAAXW4TimeZoneDetection@12@@Z + VA : 0xC19220 +Export 1048 : + Name : ?DebugCommand@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093D98 +Export 1049 : + Name : ?DecodeBytes@node@@YA_JPEAVIsolate@v8@@V?$Local@VValue@v8@@@3@W4encoding@1@@Z + VA : 0x2848D50 +Export 1050 : + Name : ?DecodeWrite@node@@YA_JPEAVIsolate@v8@@PEAD_KV?$Local@VValue@v8@@@3@W4encoding@1@@Z + VA : 0x2848E00 +Export 1051 : + Name : ?DeepFreeze@Context@v8@@QEAA?AV?$Maybe@X@2@PEAVDeepFreezeDelegate@12@@Z + VA : 0x5527CA0 +Export 1052 : + Name : ?Default@MeasureMemoryDelegate@v8@@SA?AV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@W4MeasureMemoryMode@2@@Z + VA : 0x552F1B0 +Export 1053 : + Name : ?DefaultProcessExitHandler@node@@YAXPEAVEnvironment@1@H@Z + VA : 0x21ED480 +Export 1054 : + Name : ?DeferTraceToMutatorThreadIfConcurrent@Visitor@cppgc@@UEAA_NPEBXP6AXPEAV12@0@Z_K@Z + VA : 0x3813410 +Export 1055 : + Name : ?DefineOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@W4PropertyAttribute@2@@Z + VA : 0x3988F30 +Export 1056 : + Name : ?DefineProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@AEAVPropertyDescriptor@2@@Z + VA : 0x5524210 +Export 1057 : + Name : ?Delete@CpuProfile@v8@@QEAAXXZ + VA : 0x5530E50 +Export 1058 : + Name : ?Delete@HeapSnapshot@v8@@QEAAXXZ + VA : 0x5531BC0 +Export 1059 : + Name : ?Delete@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x552A1F0 +Export 1060 : + Name : ?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + VA : 0x5525300 +Export 1061 : + Name : ?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0xC0FEB0 +Export 1062 : + Name : ?Delete@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x552AC00 +Export 1063 : + Name : ?DeleteAllHeapSnapshots@HeapProfiler@v8@@QEAAXXZ + VA : 0x5531FE0 +Export 1064 : + Name : ?DeletePrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + VA : 0xC10120 +Export 1065 : + Name : ?DependOnArrayBufferDetachingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x100AED0 +Export 1066 : + Name : ?DependOnArrayIteratorProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x100AF40 +Export 1067 : + Name : ?DependOnArraySpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x100AFB0 +Export 1068 : + Name : ?DependOnConsistentJSFunctionView@CompilationDependencies@compiler@internal@v8@@QEAAXVJSFunctionRef@234@@Z + VA : 0x3E4D810 +Export 1069 : + Name : ?DependOnConstantInDictionaryPrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@VNameRef@234@VObjectRef@234@W4PropertyKind@34@@Z + VA : 0x59AD1F0 +Export 1070 : + Name : ?DependOnElementsKind@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z + VA : 0x100B100 +Export 1071 : + Name : ?DependOnElementsKinds@CompilationDependencies@compiler@internal@v8@@QEAAXVAllocationSiteRef@234@@Z + VA : 0x100BC80 +Export 1072 : + Name : ?DependOnFieldConstness@CompilationDependencies@compiler@internal@v8@@QEAA?AW4PropertyConstness@34@VMapRef@234@0VInternalIndex@34@@Z + VA : 0x3E496E0 +Export 1073 : + Name : ?DependOnGlobalProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVPropertyCellRef@234@@Z + VA : 0x3E4A020 +Export 1074 : + Name : ?DependOnInitialMap@CompilationDependencies@compiler@internal@v8@@QEAA?AVMapRef@234@VJSFunctionRef@234@@Z + VA : 0x59AD130 +Export 1075 : + Name : ?DependOnInitialMapInstanceSizePrediction@CompilationDependencies@compiler@internal@v8@@QEAA?AVSlackTrackingPrediction@234@VJSFunctionRef@234@@Z + VA : 0x100BE50 +Export 1076 : + Name : ?DependOnMegaDOMProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x59AD2A0 +Export 1077 : + Name : ?DependOnNoElementsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x3E4B460 +Export 1078 : + Name : ?DependOnNoProfilingProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x100AE50 +Export 1079 : + Name : ?DependOnNoSlackTrackingChange@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z + VA : 0x100BD40 +Export 1080 : + Name : ?DependOnNoUndetectableObjectsProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x3E4B200 +Export 1081 : + Name : ?DependOnObjectSlotValue@CompilationDependencies@compiler@internal@v8@@QEAAXVHeapObjectRef@234@HVObjectRef@234@@Z + VA : 0x3E4BF20 +Export 1082 : + Name : ?DependOnOwnConstantDataProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VObjectRef@234@@Z + VA : 0x3E4C000 +Export 1083 : + Name : ?DependOnOwnConstantDictionaryProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VInternalIndex@34@VObjectRef@234@@Z + VA : 0x59AD4A0 +Export 1084 : + Name : ?DependOnOwnConstantDoubleProperty@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@VMapRef@234@VFieldIndex@34@VFloat64@34@@Z + VA : 0x100B220 +Export 1085 : + Name : ?DependOnOwnConstantElement@CompilationDependencies@compiler@internal@v8@@QEAAXVJSObjectRef@234@IVObjectRef@234@@Z + VA : 0x59AD3F0 +Export 1086 : + Name : ?DependOnPretenureMode@CompilationDependencies@compiler@internal@v8@@QEAA?AW4AllocationType@34@VAllocationSiteRef@234@@Z + VA : 0x100AC40 +Export 1087 : + Name : ?DependOnPromiseHookProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x100B020 +Export 1088 : + Name : ?DependOnPromiseSpeciesProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x59AD310 +Export 1089 : + Name : ?DependOnPromiseThenProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x59AD380 +Export 1090 : + Name : ?DependOnProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NVPropertyCellRef@234@@Z + VA : 0x3E4A960 +Export 1091 : + Name : ?DependOnPrototypeProperty@CompilationDependencies@compiler@internal@v8@@QEAA?AVHeapObjectRef@234@VJSFunctionRef@234@@Z + VA : 0x100AB80 +Export 1092 : + Name : ?DependOnScriptContextSlotProperty@CompilationDependencies@compiler@internal@v8@@QEAA_NVContextRef@234@_KW4Property@ContextSidePropertyCell@34@PEAVJSHeapBroker@234@@Z + VA : 0x100AD10 +Export 1093 : + Name : ?DependOnStableMap@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@@Z + VA : 0x3E48E20 +Export 1094 : + Name : ?DependOnStablePrototypeChain@CompilationDependencies@compiler@internal@v8@@QEAAXVMapRef@234@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z + VA : 0x100B2E0 +Export 1095 : + Name : ?DependOnStablePrototypeChains@CompilationDependencies@compiler@internal@v8@@QEAAXAEBV?$ZoneVector@VMapRef@compiler@internal@v8@@@34@W4WhereToStart@34@V?$OptionalRef@VJSObjectRef@compiler@internal@v8@@@234@@Z + VA : 0x3E4CE10 +Export 1096 : + Name : ?DependOnStringWrapperToPrimitiveProtector@CompilationDependencies@compiler@internal@v8@@QEAA_NXZ + VA : 0x100B090 +Export 1097 : + Name : ?Dequeue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAPEAVTurbofanCompilationJob@23@XZ + VA : 0x39B4940 +Export 1098 : + Name : ?Description@Symbol@v8@@QEBA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@@Z + VA : 0x5527730 +Export 1099 : + Name : ?Detach@ArrayBuffer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x552BEF0 +Export 1100 : + Name : ?Detach@ArrayBuffer@v8@@QEAAXXZ + VA : 0x552C150 +Export 1101 : + Name : ?DetachCppHeap@Isolate@v8@@QEAAXXZ + VA : 0xC17F90 +Export 1102 : + Name : ?DetachGlobal@Context@v8@@QEAAXXZ + VA : 0xC141D0 +Export 1103 : + Name : ?DijkstraMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z + VA : 0xBFF870 +Export 1104 : + Name : ?DijkstraMarkingBarrierRange@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z + VA : 0xBFF880 +Export 1105 : + Name : ?DijkstraMarkingBarrierRangeSlow@WriteBarrier@internal@cppgc@@CAXAEAVHeapHandle@3@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z + VA : 0x3DCE080 +Export 1106 : + Name : ?DijkstraMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z + VA : 0x3DCDEA0 +Export 1107 : + Name : ?DijkstraMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z + VA : 0x5952710 +Export 1108 : + Name : ?Disable@CodeEventHandler@v8@@QEAAXXZ + VA : 0x5531890 +Export 1109 : + Name : ?DiscardThreadSpecificMetadata@Isolate@v8@@QEAAXXZ + VA : 0x552EEE0 +Export 1110 : + Name : ?Dispose@CpuProfiler@v8@@QEAAXXZ + VA : 0x5531260 +Export 1111 : + Name : ?Dispose@ExternalStringResourceBase@String@v8@@MEAAXXZ + VA : 0x383E370 +Export 1112 : + Name : ?Dispose@Isolate@v8@@QEAAXXZ + VA : 0xC18320 +Export 1113 : + Name : ?Dispose@V8@v8@@SA_NXZ + VA : 0x5527B50 +Export 1114 : + Name : ?DisposeGlobal@api_internal@v8@@YAXPEA_K@Z + VA : 0x39862A0 +Export 1115 : + Name : ?DisposePlatform@V8@v8@@SAXXZ + VA : 0x5527B20 +Export 1116 : + Name : ?DisposeTracedReference@internal@v8@@YAXPEA_K@Z + VA : 0x3986220 +Export 1117 : + Name : ?DumpAndResetStats@Isolate@v8@@QEAAXXZ + VA : 0xC18350 +Export 1118 : + Name : ?DumpAsyncTaskStacksStateForTest@v8_inspector@@YAXPEAVV8Inspector@1@@Z + VA : 0x596D970 +Export 1119 : + Name : ?EmitAsyncDestroy@node@@YAXPEAVEnvironment@1@Uasync_context@1@@Z + VA : 0x27C8230 +Export 1120 : + Name : ?EmitAsyncDestroy@node@@YAXPEAVIsolate@v8@@Uasync_context@1@@Z + VA : 0x27C8200 +Export 1121 : + Name : ?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@PEBDN@Z + VA : 0x27C8000 +Export 1122 : + Name : ?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@V?$Local@VString@v8@@@4@N@Z + VA : 0x27C8150 +Export 1123 : + Name : ?EmitBeforeExit@node@@YAXPEAVEnvironment@1@@Z + VA : 0x27C7730 +Export 1124 : + Name : ?EmitExit@node@@YAHPEAVEnvironment@1@@Z + VA : 0x27C7910 +Export 1125 : + Name : ?EmitProcessBeforeExit@node@@YA?AV?$Maybe@_N@v8@@PEAVEnvironment@1@@Z + VA : 0x27C7770 +Export 1126 : + Name : ?EmitProcessExit@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z + VA : 0x27C7AA0 +Export 1127 : + Name : ?Empty@JitPageReference@ThreadIsolation@internal@v8@@QEBA_NXZ + VA : 0xBFEF70 +Export 1128 : + Name : ?Empty@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + VA : 0xBFE510 +Export 1129 : + Name : ?EmptyDeleter@BackingStore@v8@@SAXPEAX_K0@Z + VA : 0x48C0B20 +Export 1130 : + Name : ?Enable@CodeEventHandler@v8@@QEAAXXZ + VA : 0x5531880 +Export 1131 : + Name : ?EnableDetachedGarbageCollectionsForTesting@CppHeap@v8@@QEAAXXZ + VA : 0x55E5FF0 +Export 1132 : + Name : ?EnableWebAssemblyTrapHandler@V8@v8@@SA_N_N@Z + VA : 0xC12700 +Export 1133 : + Name : ?Enabled@ThreadIsolation@internal@v8@@SA_NXZ + VA : 0x48C3700 +Export 1134 : + Name : ?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBD_KW4encoding@1@@Z + VA : 0x2848C40 +Export 1135 : + Name : ?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBG_K@Z + VA : 0x2848CE0 +Export 1136 : + Name : ?End@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + VA : 0xBFEF50 +Export 1137 : + Name : ?Enqueue@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVTurbofanCompilationJob@23@@Z + VA : 0xC32450 +Export 1138 : + Name : ?EnqueueMicrotask@Isolate@v8@@QEAAXP6AXPEAX@Z0@Z + VA : 0x552F460 +Export 1139 : + Name : ?EnqueueMicrotask@Isolate@v8@@QEAAXV?$Local@VFunction@v8@@@2@@Z + VA : 0x552F350 +Export 1140 : + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@Z@Z + VA : 0xF76150 +Export 1141 : + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z + VA : 0x594D110 +Export 1142 : + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@Z@Z + VA : 0xF760D0 +Export 1143 : + Name : ?EnsureGCInfoIndex@EnsureGCInfoIndexTrait@internal@cppgc@@CUGAEAU?$atomic@G@__Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z + VA : 0xF76060 +Export 1144 : + Name : ?Enter@Context@v8@@QEAAXXZ + VA : 0x3986370 +Export 1145 : + Name : ?Enter@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + VA : 0x594DD00 +Export 1146 : + Name : ?Enter@Isolate@v8@@QEAAXXZ + VA : 0xC05300 +Export 1147 : + Name : ?Enter@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + VA : 0x3DC0670 +Export 1148 : + Name : ?Equals@Value@v8@@QEBA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5523870 +Export 1149 : + Name : ?ErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z + VA : 0x2FEB580 +Export 1150 : + Name : ?Error@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x552EA20 +Export 1151 : + Name : ?ErrorLevel@Message@v8@@QEBAHXZ + VA : 0xC0C490 +Export 1152 : + Name : ?EscapeSlot@EscapableHandleScopeBase@v8@@IEAAPEA_KPEA_K@Z + VA : 0xC05930 +Export 1153 : + Name : ?Eternalize@api_internal@v8@@YAPEA_KPEAVIsolate@2@PEAVValue@2@@Z + VA : 0xC058A0 +Export 1154 : + Name : ?Evaluate@Module@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC09BA0 +Export 1155 : + Name : ?Evaluate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2183030 +Export 1156 : + Name : ?EvaluateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2183D20 +Export 1157 : + Name : ?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DA8 +Export 1158 : + Name : ?Exception@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DB0 +Export 1159 : + Name : ?Exception@TryCatch@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x39884A0 +Export 1160 : + Name : ?Exec@RegExp@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + VA : 0x55298C0 +Export 1161 : + Name : ?Exit@Context@v8@@QEAAXXZ + VA : 0x3986560 +Export 1162 : + Name : ?Exit@Isolate@v8@@QEAAXXZ + VA : 0xC05310 +Export 1163 : + Name : ?Expand@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z + VA : 0x5583920 +Export 1164 : + Name : ?Experimental_IsNopFunction@Function@v8@@QEBA_NXZ + VA : 0x5526C10 +Export 1165 : + Name : ?Fatal@internal@cppgc@@YAXAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@AEBVSourceLocation@v8@@@Z + VA : 0x5950CC0 +Export 1166 : + Name : ?FatalException@node@@YAXPEAVIsolate@v8@@AEBVTryCatch@3@@Z + VA : 0x2FEC560 +Export 1167 : + Name : ?FatalImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z + VA : 0x594FAC0 +Export 1168 : + Name : ?FieldRepresentationDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VRepresentation@34@@Z + VA : 0x3E4E150 +Export 1169 : + Name : ?FieldTypeDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@0VInternalIndex@34@VObjectRef@234@@Z + VA : 0x3E4E1B0 +Export 1170 : + Name : ?FileName@SourceLocation@v8@@QEBAPEBDXZ + VA : 0x7D88E0 +Export 1171 : + Name : ?FinalizeGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXW4EmbedderStackState@3@@Z + VA : 0x5952680 +Export 1172 : + Name : ?FindInstanceInPrototypeChain@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + VA : 0x5524C20 +Export 1173 : + Name : ?FindKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAPEAVDictionaryValue@protocol@2@V?$Local@VValue@v8@@@v8@@@Z + VA : 0x597E640 +Export 1174 : + Name : ?FindObjectById@HeapProfiler@v8@@QEAA?AV?$Local@VValue@v8@@@2@I@Z + VA : 0x5531E60 +Export 1175 : + Name : ?Finish@WasmStreaming@v8@@QEAAX_N@Z + VA : 0x5917660 +Export 1176 : + Name : ?Flush@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXPEAVIsolate@23@@Z + VA : 0x5585790 +Export 1177 : + Name : ?For@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0x552E490 +Export 1178 : + Name : ?ForApi@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0xC17C10 +Export 1179 : + Name : ?ForApi@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0x552E510 +Export 1180 : + Name : ?ForceCompactionForNextGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ + VA : 0x59526B0 +Export 1181 : + Name : ?ForceGarbageCollectionSlow@Heap@cppgc@@QEAAXPEBD0W4EmbedderStackState@2@@Z + VA : 0x594F090 +Export 1182 : + Name : ?FreeArrayBufferAllocator@node@@YAXPEAVArrayBufferAllocator@1@@Z + VA : 0x38F950 +Export 1183 : + Name : ?FreeBufferMemory@Delegate@ValueSerializer@v8@@UEAAXPEAX@Z + VA : 0x4E87E60 +Export 1184 : + Name : ?FreeEnvironment@node@@YAXPEAVEnvironment@1@@Z + VA : 0x21EC120 +Export 1185 : + Name : ?FreeIsolateData@node@@YAXPEAVIsolateData@1@@Z + VA : 0x21EBB30 +Export 1186 : + Name : ?FreeNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z + VA : 0xBFFB70 +Export 1187 : + Name : ?FreeNode@PersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z + VA : 0xBFFA10 +Export 1188 : + Name : ?FreeNode@PersistentRegionBase@internal@cppgc@@IEAAXPEAVPersistentNode@23@@Z + VA : 0xBFFA10 +Export 1189 : + Name : ?FreePlatform@node@@YAXPEAVMultiIsolatePlatform@1@@Z + VA : 0x38F950 +Export 1190 : + Name : ?FreeUnreferencedObject@ExplicitManagementImpl@internal@cppgc@@CAXAEAVHeapHandle@3@PEAX@Z + VA : 0x3DBFE00 +Export 1191 : + Name : ?FromCompiledModule@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@AEBVCompiledWasmModule@2@@Z + VA : 0x552BBA0 +Export 1192 : + Name : ?FromJustIsNothing@api_internal@v8@@YAXXZ + VA : 0x551CF80 +Export 1193 : + Name : ?FromSnapshot@Context@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@_KUDeserializeInternalFieldsCallback@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VValue@v8@@@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z + VA : 0xC13410 +Export 1194 : + Name : ?FullIsFalse@Value@v8@@AEBA_NXZ + VA : 0x5520D30 +Export 1195 : + Name : ?FullIsNull@Value@v8@@AEBA_NXZ + VA : 0x5520CF0 +Export 1196 : + Name : ?FullIsString@Value@v8@@AEBA_NXZ + VA : 0x5520D70 +Export 1197 : + Name : ?FullIsTrue@Value@v8@@AEBA_NXZ + VA : 0x5520D10 +Export 1198 : + Name : ?FullIsUndefined@Value@v8@@AEBA_NXZ + VA : 0x5520CD0 +Export 1199 : + Name : ?Function@SourceLocation@v8@@QEBAPEBDXZ + VA : 0x7E8D30 +Export 1200 : + Name : ?FunctionProtoToString@Function@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5526F40 +Export 1201 : + Name : ?GCInfoFromIndex@GCInfoTable@internal@cppgc@@QEBAAEBUGCInfo@23@G@Z + VA : 0xBFFBA0 +Export 1202 : + Name : ?GCInfoFromIndex@GlobalGCInfoTable@internal@cppgc@@SAAEBUGCInfo@23@G@Z + VA : 0xBFFBE0 +Export 1203 : + Name : ?GenerationalBarrierForSourceObjectSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@PEBXPEAVHeapHandle@3@@Z + VA : 0x5952790 +Export 1204 : + Name : ?GenerationalBarrierForUncompressedSlotSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z + VA : 0x5952760 +Export 1205 : + Name : ?GenerationalBarrierSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z + VA : 0x5952730 +Export 1206 : + Name : ?Get@CageBaseGlobal@internal@cppgc@@SA_KXZ + VA : 0xBFF6D0 +Export 1207 : + Name : ?Get@FixedArray@v8@@QEBA?AV?$Local@VData@v8@@@2@V?$Local@VContext@v8@@@2@H@Z + VA : 0xC09340 +Export 1208 : + Name : ?Get@GlobalGCInfoTable@internal@cppgc@@SAAEBVGCInfoTable@23@XZ + VA : 0xBFFBD0 +Export 1209 : + Name : ?Get@LongTaskStats@metrics@v8@@SA?AU123@PEAVIsolate@3@@Z + VA : 0x55284C0 +Export 1210 : + Name : ?Get@Map@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5529C10 +Export 1211 : + Name : ?Get@Message@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0xC0BD20 +Export 1212 : + Name : ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@I@Z + VA : 0x39894A0 +Export 1213 : + Name : ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x3989210 +Export 1214 : + Name : ?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$MaybeLocal@VObject@v8@@@2@@Z + VA : 0x5524360 +Export 1215 : + Name : ?Get@PrimitiveArray@v8@@QEAA?AV?$Local@VPrimitive@v8@@@2@PEAVIsolate@2@H@Z + VA : 0x551E8D0 +Export 1216 : + Name : ?GetAddress@CFunction@v8@@QEBAPEBXXZ + VA : 0x7E8D30 +Export 1217 : + Name : ?GetAge@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K@Z + VA : 0xBFF7B0 +Export 1218 : + Name : ?GetAgeForRange@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K0@Z + VA : 0x5952980 +Export 1219 : + Name : ?GetAgeTableSize@CagedHeapBase@internal@cppgc@@SA_KXZ + VA : 0xBFF770 +Export 1220 : + Name : ?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXH@Z + VA : 0xBFF5C0 +Export 1221 : + Name : ?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXPEAVIsolate@2@H@Z + VA : 0xBFF580 +Export 1222 : + Name : ?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXH@Z + VA : 0x5526520 +Export 1223 : + Name : ?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z + VA : 0x398A4C0 +Export 1224 : + Name : ?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXH@Z + VA : 0xBFE700 +Export 1225 : + Name : ?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXPEAVIsolate@2@H@Z + VA : 0xBFE840 +Export 1226 : + Name : ?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$BasicTracedReference@VObject@v8@@@2@H@Z + VA : 0xBFE680 +Export 1227 : + Name : ?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$PersistentBase@VObject@v8@@@2@H@Z + VA : 0xBFE680 +Export 1228 : + Name : ?GetAllocationHandle@CppHeap@v8@@QEAAAEAVAllocationHandle@cppgc@@XZ + VA : 0xC97DD0 +Export 1229 : + Name : ?GetAllocationHandle@Heap@cppgc@@QEAAAEAVAllocationHandle@2@XZ + VA : 0x594F1B0 +Export 1230 : + Name : ?GetAllocationProfile@HeapProfiler@v8@@QEAAPEAVAllocationProfile@2@XZ + VA : 0x5531FD0 +Export 1231 : + Name : ?GetAnonymousMainPath@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + VA : 0x2867E20 +Export 1232 : + Name : ?GetArrayBufferAllocator@Isolate@v8@@QEAAPEAVAllocator@ArrayBuffer@2@XZ + VA : 0x552E910 +Export 1233 : + Name : ?GetArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@PEAVIsolateData@1@@Z + VA : 0x21EC670 +Export 1234 : + Name : ?GetAsyncIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0x552E590 +Export 1235 : + Name : ?GetBackingStore@ArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ + VA : 0xC0E1C0 +Export 1236 : + Name : ?GetBackingStore@SharedArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@__Cr@std@@XZ + VA : 0x5522850 +Export 1237 : + Name : ?GetBailoutReason@CpuProfileNode@v8@@QEBAPEBDXZ + VA : 0x5530DC0 +Export 1238 : + Name : ?GetBase@CagedHeapBase@internal@cppgc@@SA_KXZ + VA : 0xBFF760 +Export 1239 : + Name : ?GetBoundFunction@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x398B310 +Export 1240 : + Name : ?GetBuild@Version@internal@v8@@SAHXZ + VA : 0xC054F0 +Export 1241 : + Name : ?GetChild@CpuProfileNode@v8@@QEBAPEBV12@H@Z + VA : 0x5530E10 +Export 1242 : + Name : ?GetChild@HeapGraphNode@v8@@QEBAPEBVHeapGraphEdge@2@H@Z + VA : 0x5531B40 +Export 1243 : + Name : ?GetChildrenCount@CpuProfileNode@v8@@QEBAHXZ + VA : 0x5530E00 +Export 1244 : + Name : ?GetChildrenCount@HeapGraphNode@v8@@QEBAHXZ + VA : 0x5531AB0 +Export 1245 : + Name : ?GetChunkSize@OutputStream@v8@@UEAAHXZ + VA : 0x551BBA0 +Export 1246 : + Name : ?GetCodeEventTypeName@CodeEvent@v8@@SAPEBDW4CodeEventType@2@@Z + VA : 0x5531790 +Export 1247 : + Name : ?GetCodeRange@Isolate@v8@@QEAAXPEAPEAXPEA_K@Z + VA : 0x552F590 +Export 1248 : + Name : ?GetCodeSize@CodeEvent@v8@@QEAA_KXZ + VA : 0x492D2E0 +Export 1249 : + Name : ?GetCodeStartAddress@CodeEvent@v8@@QEAA_KXZ + VA : 0x492D2D0 +Export 1250 : + Name : ?GetCodeType@CodeEvent@v8@@QEAA?AW4CodeEventType@2@XZ + VA : 0x4F79390 +Export 1251 : + Name : ?GetColumn@StackFrame@v8@@QEBAHXZ + VA : 0xBFF1A0 +Export 1252 : + Name : ?GetColumnNumber@CpuProfileNode@v8@@QEBAHXZ + VA : 0x5530D90 +Export 1253 : + Name : ?GetColumnNumber@Location@v8@@QEAAHXZ + VA : 0xBFF0B0 +Export 1254 : + Name : ?GetColumnNumber@UnboundScript@v8@@QEAAHH@Z + VA : 0x551E160 +Export 1255 : + Name : ?GetComment@CodeEvent@v8@@QEAAPEBDXZ + VA : 0x4D3C320 +Export 1256 : + Name : ?GetCompileHints@CompileHintsCollector@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@PEAVIsolate@2@@Z + VA : 0x3988160 +Export 1257 : + Name : ?GetCompileHintsCollector@Script@v8@@QEBA?AV?$Local@VCompileHintsCollector@v8@@@2@XZ + VA : 0xC09110 +Export 1258 : + Name : ?GetCompiledModule@WasmModuleObject@v8@@QEAA?AVCompiledWasmModule@2@XZ + VA : 0x552BA20 +Export 1259 : + Name : ?GetConstructorName@Object@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + VA : 0xC0FBB0 +Export 1260 : + Name : ?GetContents@ArrayBufferView@v8@@QEAA?AV?$MemorySpan@E@2@V32@@Z + VA : 0x552C640 +Export 1261 : + Name : ?GetContext@Recorder@metrics@v8@@SA?AV?$MaybeLocal@VContext@v8@@@3@PEAVIsolate@3@VContextId@123@@Z + VA : 0xC14880 +Export 1262 : + Name : ?GetContextId@Recorder@metrics@v8@@SA?AVContextId@123@V?$Local@VContext@v8@@@3@@Z + VA : 0x5528420 +Export 1263 : + Name : ?GetContinuationPreservedEmbedderData@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x398CD30 +Export 1264 : + Name : ?GetCppHeap@Isolate@v8@@QEBAPEAVCppHeap@2@XZ + VA : 0xC17FA0 +Export 1265 : + Name : ?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@@Z + VA : 0x551C240 +Export 1266 : + Name : ?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@XZ + VA : 0x398A390 +Export 1267 : + Name : ?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z + VA : 0xC11010 +Export 1268 : + Name : ?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z + VA : 0xBFE780 +Export 1269 : + Name : ?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@@Z + VA : 0x398A440 +Export 1270 : + Name : ?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + VA : 0xC11050 +Export 1271 : + Name : ?GetCurrent@Isolate@v8@@SAPEAV12@XZ + VA : 0x398A420 +Export 1272 : + Name : ?GetCurrentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + VA : 0x39882E0 +Export 1273 : + Name : ?GetCurrentDepth@MicrotasksScope@v8@@SAHPEAVIsolate@2@@Z + VA : 0x552FCA0 +Export 1274 : + Name : ?GetCurrentEnvironment@node@@YAPEAVEnvironment@1@V?$Local@VContext@v8@@@v8@@@Z + VA : 0x21EC5D0 +Export 1275 : + Name : ?GetCurrentEventLoop@node@@YAPEAUuv_loop_s@@PEAVIsolate@v8@@@Z + VA : 0x21ED0E0 +Export 1276 : + Name : ?GetCurrentHostDefinedOptions@Isolate@v8@@QEAA?AV?$MaybeLocal@VData@v8@@@2@XZ + VA : 0x552E930 +Export 1277 : + Name : ?GetData@Isolate@v8@@QEAAPEAXI@Z + VA : 0xBFF4F0 +Export 1278 : + Name : ?GetDataFromSnapshotOnce@Context@v8@@AEAAPEA_K_K@Z + VA : 0x55284F0 +Export 1279 : + Name : ?GetDataFromSnapshotOnce@Isolate@v8@@AEAAPEA_K_K@Z + VA : 0xC18420 +Export 1280 : + Name : ?GetDebugName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x55268E0 +Export 1281 : + Name : ?GetDefaultLocale@Isolate@v8@@QEAA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + VA : 0x552FB90 +Export 1282 : + Name : ?GetDeoptInfos@CpuProfileNode@v8@@QEBAAEBV?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@XZ + VA : 0x5530E40 +Export 1283 : + Name : ?GetDetachedJSWrapperObjects@HeapProfiler@v8@@QEAA?AV?$vector@V?$Local@VValue@v8@@@v8@@V?$allocator@V?$Local@VValue@v8@@@v8@@@__Cr@std@@@__Cr@std@@XZ + VA : 0x5531F70 +Export 1284 : + Name : ?GetEmbeddedCodeRange@Isolate@v8@@QEAAXPEAPEBXPEA_K@Z + VA : 0x552F5C0 +Export 1285 : + Name : ?GetEmbedder@Version@internal@v8@@SAPEBDXZ + VA : 0xC05510 +Export 1286 : + Name : ?GetEmbedderData@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@H@Z + VA : 0xBFF530 +Export 1287 : + Name : ?GetEndColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x551FD90 +Export 1288 : + Name : ?GetEndColumn@Message@v8@@QEBAHXZ + VA : 0x551FC70 +Export 1289 : + Name : ?GetEndPosition@Message@v8@@QEBAHXZ + VA : 0x551FA30 +Export 1290 : + Name : ?GetEndTime@CpuProfile@v8@@QEBA_JXZ + VA : 0x5531060 +Export 1291 : + Name : ?GetEnteredOrMicrotaskContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + VA : 0x398CBA0 +Export 1292 : + Name : ?GetEnvironmentIsolateData@node@@YAPEAVIsolateData@1@PEAVEnvironment@1@@Z + VA : 0x836BB0 +Export 1293 : + Name : ?GetError@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2184C40 +Export 1294 : + Name : ?GetException@Module@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E9D0 +Export 1295 : + Name : ?GetExternalOneByteStringResource@String@v8@@QEBAPEBVExternalOneByteStringResource@12@XZ + VA : 0x55275F0 +Export 1296 : + Name : ?GetExternalStringResource@String@v8@@QEBAPEAVExternalStringResource@12@XZ + VA : 0xBFE520 +Export 1297 : + Name : ?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAVIsolate@2@PEAW4Encoding@12@@Z + VA : 0xBFE580 +Export 1298 : + Name : ?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z + VA : 0xBFE5E0 +Export 1299 : + Name : ?GetExternalStringResourceBaseSlow@String@v8@@AEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z + VA : 0x39858C0 +Export 1300 : + Name : ?GetExternalStringResourceSlow@String@v8@@AEBAPEAVExternalStringResource@12@XZ + VA : 0x551C130 +Export 1301 : + Name : ?GetExtrasBindingObject@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + VA : 0x5528300 +Export 1302 : + Name : ?GetFlags@RegExp@v8@@QEBA?AW4Flags@12@XZ + VA : 0x55298B0 +Export 1303 : + Name : ?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@W4TaskPriority@v8@@@Z + VA : 0x49DD4B0 +Export 1304 : + Name : ?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@__Cr@std@@XZ + VA : 0xBFF640 +Export 1305 : + Name : ?GetFrame@StackTrace@v8@@QEBA?AV?$Local@VStackFrame@v8@@@2@PEAVIsolate@2@I@Z + VA : 0xC0C680 +Export 1306 : + Name : ?GetFrameCount@StackTrace@v8@@QEBAHXZ + VA : 0x3988A00 +Export 1307 : + Name : ?GetFromModule@ModuleWrap@loader@node@@SAPEAV123@PEAVEnvironment@3@V?$Local@VModule@v8@@@v8@@@Z + VA : 0x2180640 +Export 1308 : + Name : ?GetFromNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ + VA : 0x55319C0 +Export 1309 : + Name : ?GetFunction@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x398A580 +Export 1310 : + Name : ?GetFunctionName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + VA : 0x524D5A0 +Export 1311 : + Name : ?GetFunctionName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5530C40 +Export 1312 : + Name : ?GetFunctionName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0xC0C980 +Export 1313 : + Name : ?GetFunctionNameStr@CpuProfileNode@v8@@QEBAPEBDXZ + VA : 0x5530CC0 +Export 1314 : + Name : ?GetFunctionTemplateData@api_internal@v8@@YA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VData@v8@@@2@@Z + VA : 0xC19F10 +Export 1315 : + Name : ?GetHandler@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x5527790 +Export 1316 : + Name : ?GetHasInstance@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC17AC0 +Export 1317 : + Name : ?GetHeapCodeAndMetadataStatistics@Isolate@v8@@QEAA_NPEAVHeapCodeStatistics@2@@Z + VA : 0x552F0D0 +Export 1318 : + Name : ?GetHeapHandle@CppHeap@v8@@QEAAAEAVHeapHandle@cppgc@@XZ + VA : 0xC97DF0 +Export 1319 : + Name : ?GetHeapHandle@Heap@cppgc@@QEAAAEAVHeapHandle@2@XZ + VA : 0x594F1D0 +Export 1320 : + Name : ?GetHeapObjectStatisticsAtLastGC@Isolate@v8@@QEAA_NPEAVHeapObjectStatistics@2@_K@Z + VA : 0x552F010 +Export 1321 : + Name : ?GetHeapProfiler@Isolate@v8@@QEAAPEAVHeapProfiler@2@XZ + VA : 0xC17E30 +Export 1322 : + Name : ?GetHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@H@Z + VA : 0x5531E30 +Export 1323 : + Name : ?GetHeapSpaceStatistics@Isolate@v8@@QEAA_NPEAVHeapSpaceStatistics@2@_K@Z + VA : 0xC18630 +Export 1324 : + Name : ?GetHeapStatistics@Isolate@v8@@QEAAXPEAVHeapStatistics@2@@Z + VA : 0xC184E0 +Export 1325 : + Name : ?GetHeapStats@HeapProfiler@v8@@QEAAIPEAVOutputStream@2@PEA_J@Z + VA : 0x5531FA0 +Export 1326 : + Name : ?GetHitCount@CpuProfileNode@v8@@QEBAIXZ + VA : 0x4D145F0 +Export 1327 : + Name : ?GetHitLineCount@CpuProfileNode@v8@@QEBAIXZ + VA : 0x5530DA0 +Export 1328 : + Name : ?GetHostDefinedOptions@ScriptOrigin@v8@@QEBA?AV?$Local@VData@v8@@@2@XZ + VA : 0xBFF060 +Export 1329 : + Name : ?GetID@StackTrace@v8@@QEBAHXZ + VA : 0xC09330 +Export 1330 : + Name : ?GetId@DiscardedSamplesDelegate@v8@@QEBAIXZ + VA : 0x22EE60 +Export 1331 : + Name : ?GetId@HeapGraphNode@v8@@QEBAIXZ + VA : 0x49925B0 +Export 1332 : + Name : ?GetId@UnboundScript@v8@@QEBAHXZ + VA : 0xC08950 +Export 1333 : + Name : ?GetIdentityHash@Module@v8@@QEBAHXZ + VA : 0xC09940 +Export 1334 : + Name : ?GetIdentityHash@Name@v8@@QEAAHXZ + VA : 0xC12060 +Export 1335 : + Name : ?GetIdentityHash@Object@v8@@QEAAHXZ + VA : 0xC110F0 +Export 1336 : + Name : ?GetImportAssertions@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + VA : 0xBFF0D0 +Export 1337 : + Name : ?GetImportAttributes@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + VA : 0xC05100 +Export 1338 : + Name : ?GetIncumbentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ + VA : 0x398CC10 +Export 1339 : + Name : ?GetInferredName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x55267E0 +Export 1340 : + Name : ?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD2@Z + VA : 0x21EC260 +Export 1341 : + Name : ?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@__Cr@std@@@__Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD@Z + VA : 0x21EC260 +Export 1342 : + Name : ?GetInt64Representation@CFunction@v8@@QEBA?AW4Int64Representation@CFunctionInfo@2@XZ + VA : 0xC00110 +Export 1343 : + Name : ?GetInt64Representation@CFunctionInfo@v8@@QEBA?AW4Int64Representation@12@XZ + VA : 0xC000D0 +Export 1344 : + Name : ?GetInternalField@Object@v8@@QEAA?AV?$Local@VData@v8@@@2@H@Z + VA : 0xBFE7C0 +Export 1345 : + Name : ?GetIsConcatSpreadable@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC17AD0 +Export 1346 : + Name : ?GetIsolate@Context@v8@@QEAAPEAVIsolate@2@XZ + VA : 0x3985A10 +Export 1347 : + Name : ?GetIsolate@HandleScope@v8@@QEBAPEAVIsolate@2@XZ + VA : 0x7E8D30 +Export 1348 : + Name : ?GetIsolate@Message@v8@@QEBAPEAVIsolate@2@XZ + VA : 0x551F8B0 +Export 1349 : + Name : ?GetIsolate@Object@v8@@QEAAPEAVIsolate@2@XZ + VA : 0x3985A10 +Export 1350 : + Name : ?GetIsolate@Object@v8@@SAPEAVIsolate@2@AEBV?$TracedReference@VObject@v8@@@2@@Z + VA : 0xBFE7B0 +Export 1351 : + Name : ?GetIsolate@SnapshotCreator@v8@@QEAAPEAVIsolate@2@XZ + VA : 0x551CC10 +Export 1352 : + Name : ?GetIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC17AE0 +Export 1353 : + Name : ?GetJSEntryStubs@Isolate@v8@@QEAA?AUJSEntryStubs@2@XZ + VA : 0x552F600 +Export 1354 : + Name : ?GetLineNumber@CpuProfileNode@v8@@QEBAHXZ + VA : 0x5530D80 +Export 1355 : + Name : ?GetLineNumber@Location@v8@@QEAAHXZ + VA : 0xBFF0A0 +Export 1356 : + Name : ?GetLineNumber@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0C340 +Export 1357 : + Name : ?GetLineNumber@StackFrame@v8@@QEBAHXZ + VA : 0xBFF150 +Export 1358 : + Name : ?GetLineNumber@UnboundScript@v8@@QEAAHH@Z + VA : 0x551E090 +Export 1359 : + Name : ?GetLineTicks@CpuProfileNode@v8@@QEBA_NPEAULineTick@12@I@Z + VA : 0x5530DB0 +Export 1360 : + Name : ?GetLocation@StackFrame@v8@@QEBA?AVLocation@2@XZ + VA : 0xC05190 +Export 1361 : + Name : ?GetMainContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVEnvironment@1@@Z + VA : 0x21EC680 +Export 1362 : + Name : ?GetMajor@Version@internal@v8@@SAHXZ + VA : 0xC054D0 +Export 1363 : + Name : ?GetMatch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0x552E5A0 +Export 1364 : + Name : ?GetMaxSnapshotJSObjectId@HeapSnapshot@v8@@QEBAIXZ + VA : 0x50C0FA0 +Export 1365 : + Name : ?GetMicrotaskQueue@Context@v8@@QEAAPEAVMicrotaskQueue@2@XZ + VA : 0xC14140 +Export 1366 : + Name : ?GetMicrotasksPolicy@Isolate@v8@@QEBA?AW4MicrotasksPolicy@2@XZ + VA : 0x552F480 +Export 1367 : + Name : ?GetMinor@Version@internal@v8@@SAHXZ + VA : 0xC054E0 +Export 1368 : + Name : ?GetModuleNamespace@Module@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551EAE0 +Export 1369 : + Name : ?GetModuleRequests@Module@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ + VA : 0xC094D0 +Export 1370 : + Name : ?GetModuleRequestsSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2181880 +Export 1371 : + Name : ?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVEnvironment@1@@Z + VA : 0x21EC6B0 +Export 1372 : + Name : ?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVIsolateData@1@@Z + VA : 0x21EC6C0 +Export 1373 : + Name : ?GetMutable@GlobalGCInfoTable@internal@cppgc@@SAAEAVGCInfoTable@23@XZ + VA : 0xBFFBD0 +Export 1374 : + Name : ?GetName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x398AD20 +Export 1375 : + Name : ?GetName@HeapGraphEdge@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x55318B0 +Export 1376 : + Name : ?GetName@HeapGraphNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5531A20 +Export 1377 : + Name : ?GetNameFromTypeSignature@NameTraitBase@internal@cppgc@@KA?AUHeapObjectName@23@PEBD@Z + VA : 0xF7B170 +Export 1378 : + Name : ?GetNamespace@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x21845D0 +Export 1379 : + Name : ?GetNamespaceSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2184300 +Export 1380 : + Name : ?GetNativeFunctionTemplate@Extension@v8@@UEAA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0x490BAC0 +Export 1381 : + Name : ?GetNode@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@H@Z + VA : 0x5531C40 +Export 1382 : + Name : ?GetNodeById@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@I@Z + VA : 0x5531C20 +Export 1383 : + Name : ?GetNodeId@CpuProfileNode@v8@@QEBAIXZ + VA : 0x5530DE0 +Export 1384 : + Name : ?GetNodeReport@node@@YAXPEAVEnvironment@1@PEBD1V?$Local@VValue@v8@@@v8@@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + VA : 0x2138F70 +Export 1385 : + Name : ?GetNodeReport@node@@YAXPEAVIsolate@v8@@PEBD1V?$Local@VValue@v8@@@3@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + VA : 0x2138E50 +Export 1386 : + Name : ?GetNodesCount@HeapSnapshot@v8@@QEBAHXZ + VA : 0x5531C30 +Export 1387 : + Name : ?GetNumberOfDataSlots@Isolate@v8@@SAIXZ + VA : 0x68D410 +Export 1388 : + Name : ?GetNumberOfEmbedderDataFields@Context@v8@@QEAAIXZ + VA : 0x39866D0 +Export 1389 : + Name : ?GetObjectId@HeapProfiler@v8@@QEAAIPEAX@Z + VA : 0x5531E50 +Export 1390 : + Name : ?GetObjectId@HeapProfiler@v8@@QEAAIV?$Local@VValue@v8@@@2@@Z + VA : 0x5531E40 +Export 1391 : + Name : ?GetObjectSizeForGarbageCollected@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z + VA : 0x3DC6730 +Export 1392 : + Name : ?GetObjectSizeForGarbageCollectedMixin@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z + VA : 0x5950C10 +Export 1393 : + Name : ?GetOverloadResolution@CFunction@v8@@QEAA?AW4OverloadResolution@12@PEBV12@@Z + VA : 0xC00120 +Export 1394 : + Name : ?GetOwnPropertyDescriptor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0xC0F440 +Export 1395 : + Name : ?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0FB40 +Export 1396 : + Name : ?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4PropertyFilter@2@W4KeyConversionMode@2@@Z + VA : 0xC0FB80 +Export 1397 : + Name : ?GetParent@CpuProfileNode@v8@@QEBAPEBV12@XZ + VA : 0x5033E00 +Export 1398 : + Name : ?GetPatch@Version@internal@v8@@SAHXZ + VA : 0xC05500 +Export 1399 : + Name : ?GetPersistentRegion@StrongCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z + VA : 0x3DC7FD0 +Export 1400 : + Name : ?GetPersistentRegion@StrongPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z + VA : 0x3DC7F70 +Export 1401 : + Name : ?GetPersistentRegion@WeakCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z + VA : 0x3DC8000 +Export 1402 : + Name : ?GetPersistentRegion@WeakPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z + VA : 0x3DC7FA0 +Export 1403 : + Name : ?GetPhase@ModuleRequest@v8@@QEBA?AW4ModuleImportPhase@2@XZ + VA : 0x551E9C0 +Export 1404 : + Name : ?GetPreviousCodeStartAddress@CodeEvent@v8@@QEAA_KXZ + VA : 0x4A7EAB0 +Export 1405 : + Name : ?GetPrivate@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + VA : 0xC0F420 +Export 1406 : + Name : ?GetProducedCompileHints@Script@v8@@QEBA?AV?$vector@HV?$allocator@H@__Cr@std@@@__Cr@std@@XZ + VA : 0x551E7A0 +Export 1407 : + Name : ?GetPromise@Resolver@Promise@v8@@QEAA?AV?$Local@VPromise@v8@@@3@XZ + VA : 0xC16B40 +Export 1408 : + Name : ?GetPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5524520 +Export 1409 : + Name : ?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5524D70 +Export 1410 : + Name : ?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4KeyCollectionMode@2@W4PropertyFilter@2@W4IndexFilter@2@W4KeyConversionMode@2@@Z + VA : 0xC0F800 +Export 1411 : + Name : ?GetPrototype@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0xC0F740 +Export 1412 : + Name : ?GetPrototypeV2@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x5524860 +Export 1413 : + Name : ?GetRealNamedProperty@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0x5525F10 +Export 1414 : + Name : ?GetRealNamedPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0x5526200 +Export 1415 : + Name : ?GetRealNamedPropertyAttributesInPrototypeChain@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0xC10BB0 +Export 1416 : + Name : ?GetRealNamedPropertyInPrototypeChain@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0x5525B90 +Export 1417 : + Name : ?GetReplace@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0x552E5B0 +Export 1418 : + Name : ?GetResourceName@Script@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E6D0 +Export 1419 : + Name : ?GetResourceName@ScriptOrModule@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E570 +Export 1420 : + Name : ?GetRoot@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@XZ + VA : 0x492D2D0 +Export 1421 : + Name : ?GetSONAME@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z + VA : 0x57FB520 +Export 1422 : + Name : ?GetSample@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@H@Z + VA : 0x5530EE0 +Export 1423 : + Name : ?GetSampleEmbedderState@CpuProfile@v8@@QEBA?AW4EmbedderStateTag@2@H@Z + VA : 0x5530FE0 +Export 1424 : + Name : ?GetSampleState@CpuProfile@v8@@QEBA?AW4StateTag@2@H@Z + VA : 0x5530FA0 +Export 1425 : + Name : ?GetSampleTimestamp@CpuProfile@v8@@QEBA_JH@Z + VA : 0x5530F20 +Export 1426 : + Name : ?GetSamplesCount@CpuProfile@v8@@QEBAHXZ + VA : 0x5530DE0 +Export 1427 : + Name : ?GetSandboxAddressSpace@V8@v8@@SAPEAVVirtualAddressSpace@2@XZ + VA : 0xC12760 +Export 1428 : + Name : ?GetSandboxReservationSizeInBytes@V8@v8@@SA_KXZ + VA : 0xC127A0 +Export 1429 : + Name : ?GetSandboxSizeInBytes@V8@v8@@SA_KXZ + VA : 0x5527BB0 +Export 1430 : + Name : ?GetScriptColumn@CodeEvent@v8@@QEAAHXZ + VA : 0x4EAD960 +Export 1431 : + Name : ?GetScriptColumnNumber@Function@v8@@QEBAHXZ + VA : 0x5526AF0 +Export 1432 : + Name : ?GetScriptId@CpuProfileNode@v8@@QEBAHXZ + VA : 0x5530CD0 +Export 1433 : + Name : ?GetScriptId@StackFrame@v8@@QEBAHXZ + VA : 0xC0C780 +Export 1434 : + Name : ?GetScriptLine@CodeEvent@v8@@QEAAHXZ + VA : 0x49925B0 +Export 1435 : + Name : ?GetScriptLineNumber@Function@v8@@QEBAHXZ + VA : 0x55269D0 +Export 1436 : + Name : ?GetScriptName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5531780 +Export 1437 : + Name : ?GetScriptName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0xC0C7B0 +Export 1438 : + Name : ?GetScriptName@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0xC08970 +Export 1439 : + Name : ?GetScriptNameOrSourceURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0xC0C880 +Export 1440 : + Name : ?GetScriptOrigin@Function@v8@@QEBA?AVScriptOrigin@2@XZ + VA : 0x398AEE0 +Export 1441 : + Name : ?GetScriptOrigin@Message@v8@@QEBA?AVScriptOrigin@2@XZ + VA : 0xC0BEB0 +Export 1442 : + Name : ?GetScriptResourceName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5530CE0 +Export 1443 : + Name : ?GetScriptResourceName@Message@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551F8F0 +Export 1444 : + Name : ?GetScriptResourceNameStr@CpuProfileNode@v8@@QEBAPEBDXZ + VA : 0x5530D60 +Export 1445 : + Name : ?GetScriptSource@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x55200A0 +Export 1446 : + Name : ?GetScriptSourceMappingURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x55202D0 +Export 1447 : + Name : ?GetScriptStartPosition@Function@v8@@QEBAHXZ + VA : 0x398B220 +Export 1448 : + Name : ?GetSearch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0x552E5C0 +Export 1449 : + Name : ?GetSecurityToken@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x5527C00 +Export 1450 : + Name : ?GetShallowSize@HeapGraphNode@v8@@QEBA_KXZ + VA : 0x5531AA0 +Export 1451 : + Name : ?GetSharedArrayBufferFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VSharedArrayBuffer@v8@@@3@PEAVIsolate@3@I@Z + VA : 0x5520A60 +Export 1452 : + Name : ?GetSharedArrayBufferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VSharedArrayBuffer@v8@@@3@@Z + VA : 0x5520730 +Export 1453 : + Name : ?GetSharedMemoryStatistics@V8@v8@@SAXPEAVSharedMemoryStatistics@2@@Z + VA : 0x5527BF0 +Export 1454 : + Name : ?GetSharedValueConveyor@Delegate@ValueDeserializer@v8@@UEAAPEBVSharedValueConveyor@3@PEAVIsolate@3@@Z + VA : 0x5520B40 +Export 1455 : + Name : ?GetSnapshotCount@HeapProfiler@v8@@QEAAHXZ + VA : 0x5531DC0 +Export 1456 : + Name : ?GetSource@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x551FE20 +Export 1457 : + Name : ?GetSource@RegExp@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5529820 +Export 1458 : + Name : ?GetSourceLine@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x551FF50 +Export 1459 : + Name : ?GetSourceMappingURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E310 +Export 1460 : + Name : ?GetSourceMappingURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E310 +Export 1461 : + Name : ?GetSourceOffset@ModuleRequest@v8@@QEBAHXZ + VA : 0xC09470 +Export 1462 : + Name : ?GetSourceType@CpuProfileNode@v8@@QEBA?AW4SourceType@12@XZ + VA : 0x5530DF0 +Export 1463 : + Name : ?GetSourceURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E230 +Export 1464 : + Name : ?GetSourceURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551E230 +Export 1465 : + Name : ?GetSpecifier@ModuleRequest@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0xC093E0 +Export 1466 : + Name : ?GetSplit@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0x552E5D0 +Export 1467 : + Name : ?GetStackSample@Isolate@v8@@QEAAXAEBURegisterState@2@PEAPEAX_KPEAUSampleInfo@2@@Z + VA : 0x552F1E0 +Export 1468 : + Name : ?GetStackSample@TickSample@internal@v8@@SA_NPEAVIsolate@23@PEAURegisterState@3@W4RecordCEntryFrame@123@PEAPEAX_KPEAUSampleInfo@3@PEAW4StateTag@3@_N@Z + VA : 0x57A96D0 +Export 1469 : + Name : ?GetStackTrace@Exception@v8@@SA?AV?$Local@VStackTrace@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5530910 +Export 1470 : + Name : ?GetStackTrace@Message@v8@@QEBA?AV?$Local@VStackTrace@v8@@@2@XZ + VA : 0xC0C190 +Export 1471 : + Name : ?GetStackTraceLimit@Isolate@v8@@QEAAHXZ + VA : 0x552EF20 +Export 1472 : + Name : ?GetStalledTopLevelAwaitMessages@Module@v8@@QEAA?AU?$pair@V?$LocalVector@VModule@v8@@@v8@@V?$LocalVector@VMessage@v8@@@2@@__Cr@std@@PEAVIsolate@2@@Z + VA : 0x551F010 +Export 1473 : + Name : ?GetStartColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0C5F0 +Export 1474 : + Name : ?GetStartColumn@Message@v8@@QEBAHXZ + VA : 0xC0C4A0 +Export 1475 : + Name : ?GetStartPosition@Message@v8@@QEBAHXZ + VA : 0x551F940 +Export 1476 : + Name : ?GetStartTime@CpuProfile@v8@@QEBA_JXZ + VA : 0x5531020 +Export 1477 : + Name : ?GetStaticDependencySpecifiers@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2184960 +Export 1478 : + Name : ?GetStatus@Module@v8@@QEBA?AW4Status@12@XZ + VA : 0xC09480 +Export 1479 : + Name : ?GetStatus@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2184850 +Export 1480 : + Name : ?GetString@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z + VA : 0xDFF6D0 +Export 1481 : + Name : ?GetTarget@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x552B550 +Export 1482 : + Name : ?GetTitle@CpuProfile@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5530E60 +Export 1483 : + Name : ?GetToNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ + VA : 0x492D2D0 +Export 1484 : + Name : ?GetToPrimitive@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC17AF0 +Export 1485 : + Name : ?GetToStringTag@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC17B00 +Export 1486 : + Name : ?GetTopDownRoot@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@XZ + VA : 0x5530ED0 +Export 1487 : + Name : ?GetTraceDescriptor@TraceTraitFromInnerAddressImpl@internal@cppgc@@SA?AUTraceDescriptor@3@PEBX@Z + VA : 0x3DCD740 +Export 1488 : + Name : ?GetTracingController@Platform@cppgc@@UEAAPEAVTracingController@v8@@XZ + VA : 0x5950D30 +Export 1489 : + Name : ?GetTracingController@node@@YAPEAVTracingController@v8@@XZ + VA : 0x2131340 +Export 1490 : + Name : ?GetType@HeapGraphEdge@v8@@QEBA?AW4Type@12@XZ + VA : 0x55318A0 +Export 1491 : + Name : ?GetType@HeapGraphNode@v8@@QEBA?AW4Type@12@XZ + VA : 0x5531A10 +Export 1492 : + Name : ?GetTypeInfo@CFunction@v8@@QEBAPEBVCFunctionInfo@2@XZ + VA : 0x7D88E0 +Export 1493 : + Name : ?GetUnboundModuleScript@Module@v8@@QEAA?AV?$Local@VUnboundModuleScript@v8@@@2@XZ + VA : 0xC097A0 +Export 1494 : + Name : ?GetUnboundScript@Script@v8@@QEAA?AV?$Local@VUnboundScript@v8@@@2@XZ + VA : 0xC09080 +Export 1495 : + Name : ?GetUnscopables@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC17B10 +Export 1496 : + Name : ?GetVersion@V8@v8@@SAPEBDXZ + VA : 0x5527BA0 +Export 1497 : + Name : ?GetVersion@Version@internal@v8@@SAPEBDXZ + VA : 0xC05690 +Export 1498 : + Name : ?GetWasmFunctionIndex@Message@v8@@QEBAHXZ + VA : 0x551FB20 +Export 1499 : + Name : ?GetWasmModuleFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VWasmModuleObject@v8@@@3@PEAVIsolate@3@I@Z + VA : 0x5520A60 +Export 1500 : + Name : ?GetWasmModuleTransferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VWasmModuleObject@v8@@@3@@Z + VA : 0x55208A0 +Export 1501 : + Name : ?GetWireBytesRef@CompiledWasmModule@v8@@QEAA?AV?$MemorySpan@$$CBE@2@XZ + VA : 0x552B9D0 +Export 1502 : + Name : ?GetWireFormatVersion@ValueDeserializer@v8@@QEBAIXZ + VA : 0x5520C80 +Export 1503 : + Name : ?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBX0AEAUParams@123@@Z + VA : 0xBFF7D0 +Export 1504 : + Name : ?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBXAEAUParams@123@@Z + VA : 0xBFF840 +Export 1505 : + Name : ?Global@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ + VA : 0x398C370 +Export 1506 : + Name : ?GlobalizeReference@api_internal@v8@@YAPEA_KPEAVIsolate@internal@2@_K@Z + VA : 0x3986230 +Export 1507 : + Name : ?GlobalizeTracedReference@internal@v8@@YAPEA_KPEAVIsolate@12@_KPEA_KW4TracedReferenceStoreMode@12@W4TracedReferenceHandling@12@@Z + VA : 0x3985FD0 +Export 1508 : + Name : ?HandleExternalMemoryInterrupt@Isolate@v8@@AEAAXXZ + VA : 0x552E8F0 +Export 1509 : + Name : ?HandleMovableReference@Visitor@cppgc@@MEAAXPEAPEBX@Z + VA : 0x48C0B20 +Export 1510 : + Name : ?Has@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x552A040 +Export 1511 : + Name : ?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + VA : 0x5525430 +Export 1512 : + Name : ?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5524FB0 +Export 1513 : + Name : ?Has@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x552AA50 +Export 1514 : + Name : ?HasBuffer@ArrayBufferView@v8@@QEBA_NXZ + VA : 0x552C890 +Export 1515 : + Name : ?HasCaught@TryCatch@v8@@QEBA_NXZ + VA : 0x3988490 +Export 1516 : + Name : ?HasCustomHostObject@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@@Z + VA : 0x48C3700 +Export 1517 : + Name : ?HasHandler@Promise@v8@@QEBA_NXZ + VA : 0x552B380 +Export 1518 : + Name : ?HasIndexedLookupInterceptor@Object@v8@@QEBA_NXZ + VA : 0x5525B60 +Export 1519 : + Name : ?HasInstance@Buffer@node@@YA_NV?$Local@VObject@v8@@@v8@@@Z + VA : 0x2166120 +Export 1520 : + Name : ?HasInstance@Buffer@node@@YA_NV?$Local@VValue@v8@@@v8@@@Z + VA : 0x2166120 +Export 1521 : + Name : ?HasInstance@FunctionTemplate@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z + VA : 0x398C510 +Export 1522 : + Name : ?HasNamedLookupInterceptor@Object@v8@@QEBA_NXZ + VA : 0x5525B30 +Export 1523 : + Name : ?HasOptions@CFunctionInfo@v8@@QEBA_NXZ + VA : 0xC000B0 +Export 1524 : + Name : ?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + VA : 0x5525590 +Export 1525 : + Name : ?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0x55251D0 +Export 1526 : + Name : ?HasPendingBackgroundTasks@Isolate@v8@@QEAA_NXZ + VA : 0x552EC70 +Export 1527 : + Name : ?HasPendingException@Isolate@v8@@QEAA_NXZ + VA : 0x552EB90 +Export 1528 : + Name : ?HasPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z + VA : 0x55251B0 +Export 1529 : + Name : ?HasRealIndexedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z + VA : 0x55257F0 +Export 1530 : + Name : ?HasRealNamedCallbackProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0x5525990 +Export 1531 : + Name : ?HasRealNamedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z + VA : 0xC109A0 +Export 1532 : + Name : ?HasTemplateLiteralObject@Context@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z + VA : 0x55283A0 +Export 1533 : + Name : ?HasTerminated@TryCatch@v8@@QEBA_NXZ + VA : 0xC0BCA0 +Export 1534 : + Name : ?HasTopLevelAwait@Module@v8@@QEBA_NXZ + VA : 0x551EBA0 +Export 1535 : + Name : ?Hash@Version@internal@v8@@SAIXZ + VA : 0xC05530 +Export 1536 : + Name : ?HostDefinedOptions@ScriptOrModule@v8@@QEAA?AV?$Local@VData@v8@@@2@XZ + VA : 0x551E620 +Export 1537 : + Name : ?HostInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@SAXV?$Local@VContext@v8@@@v8@@V?$Local@VModule@v8@@@5@V?$Local@VObject@v8@@@5@@Z + VA : 0x2185280 +Export 1538 : + Name : ?ImportModuleDynamically@loader@node@@YA?AV?$MaybeLocal@VPromise@v8@@@v8@@V?$Local@VContext@v8@@@4@V?$Local@VData@v8@@@4@V?$Local@VValue@v8@@@4@V?$Local@VString@v8@@@4@V?$Local@VFixedArray@v8@@@4@@Z + VA : 0x2184D40 +Export 1539 : + Name : ?InContext@Isolate@v8@@QEAA_NXZ + VA : 0x398CB90 +Export 1540 : + Name : ?InYoungGenerationForStickyMarkbits@HeapLayout@internal@v8@@CA_NPEBVMemoryChunk@23@V?$Tagged@VHeapObject@internal@v8@@@23@@Z + VA : 0x49D8A30 +Export 1541 : + Name : ?IncreaseHeapLimitForDebugging@Isolate@v8@@QEAAXXZ + VA : 0x48C0B20 +Export 1542 : + Name : ?Inherit@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z + VA : 0xC05FC0 +Export 1543 : + Name : ?Init@TickSample@internal@v8@@QEAAXPEAVIsolate@23@AEBURegisterState@3@W4RecordCEntryFrame@123@_N3VTimeDelta@base@3@@Z + VA : 0x57A95A0 +Export 1544 : + Name : ?InitialTableLimit@GCInfoTable@internal@cppgc@@AEBAGXZ + VA : 0x594D0A0 +Export 1545 : + Name : ?Initialize@GlobalGCInfoTable@internal@cppgc@@SAXAEAVPageAllocator@v8@@@Z + VA : 0xF75C70 +Export 1546 : + Name : ?Initialize@HandleScope@v8@@IEAAXPEAVIsolate@2@@Z + VA : 0x551CFE0 +Export 1547 : + Name : ?Initialize@Isolate@v8@@SAXPEAV12@AEBUCreateParams@12@@Z + VA : 0xC18060 +Export 1548 : + Name : ?Initialize@Locker@v8@@AEAAXPEAVIsolate@2@@Z + VA : 0x55C54A0 +Export 1549 : + Name : ?Initialize@ThreadIsolation@internal@v8@@SAXPEAVThreadIsolatedAllocator@3@@Z + VA : 0xC60F20 +Export 1550 : + Name : ?Initialize@Unlocker@v8@@AEAAXPEAVIsolate@2@@Z + VA : 0x55C5460 +Export 1551 : + Name : ?Initialize@V8@v8@@CA_NH@Z + VA : 0xC053D0 +Export 1552 : + Name : ?Initialize@V8@v8@@SA_NXZ + VA : 0xC00220 +Export 1553 : + Name : ?InitializeBeforeThreadCreation@SandboxHardwareSupport@v8@@SAXXZ + VA : 0x492D2C0 +Export 1554 : + Name : ?InitializeContext@node@@YA?AV?$Maybe@_N@v8@@V?$Local@VContext@v8@@@3@@Z + VA : 0x21ECCA0 +Export 1555 : + Name : ?InitializeExternalStartupData@V8@v8@@SAXPEBD@Z + VA : 0x5527B80 +Export 1556 : + Name : ?InitializeExternalStartupDataFromFile@V8@v8@@SAXPEBD@Z + VA : 0x5527B90 +Export 1557 : + Name : ?InitializeICU@V8@v8@@SA_NPEBD@Z + VA : 0x5527B60 +Export 1558 : + Name : ?InitializeICUDefaultLocation@V8@v8@@SA_NPEBD0@Z + VA : 0x5527B70 +Export 1559 : + Name : ?InitializeNodeWithArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4Flags@ProcessInitializationFlags@1@@Z + VA : 0x217C430 +Export 1560 : + Name : ?InitializeOncePerProcess@node@@YA?AV?$unique_ptr@VInitializationResult@node@@U?$default_delete@VInitializationResult@node@@@__Cr@std@@@__Cr@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@34@W4Flags@ProcessInitializationFlags@1@@Z + VA : 0x217D160 +Export 1561 : + Name : ?InitializePlatform@V8@v8@@SAXPEAVPlatform@2@@Z + VA : 0xC126F0 +Export 1562 : + Name : ?InitializeProcess@cppgc@@YAXPEAVPageAllocator@v8@@_K@Z + VA : 0xF7C1D0 +Export 1563 : + Name : ?InstallConditionalFeatures@Isolate@v8@@QEAAXV?$Local@VContext@v8@@@2@@Z + VA : 0xC18C70 +Export 1564 : + Name : ?InstanceOf@Value@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z + VA : 0x5523A30 +Export 1565 : + Name : ?InstanceTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ + VA : 0xC066F0 +Export 1566 : + Name : ?Instantiate@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x21828B0 +Export 1567 : + Name : ?InstantiateModule@Module@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@P6A?AV?$MaybeLocal@VModule@v8@@@2@0V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@V?$Local@VModule@v8@@@2@@ZP6A?AV?$MaybeLocal@VObject@v8@@@2@0123@Z@Z + VA : 0xC09950 +Export 1568 : + Name : ?InstantiateSync@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2183910 +Export 1569 : + Name : ?Instrumentation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DB8 +Export 1570 : + Name : ?Int32Value@Value@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0E520 +Export 1571 : + Name : ?Int64Value@BigInt@v8@@QEBA_JPEA_N@Z + VA : 0x552E870 +Export 1572 : + Name : ?IntegerValue@Value@v8@@QEBA?AV?$Maybe@_J@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x55233C0 +Export 1573 : + Name : ?InternalFieldCount@Object@v8@@QEBAHXZ + VA : 0xC05040 +Export 1574 : + Name : ?InternalFieldCount@Object@v8@@SAHAEBV?$BasicTracedReference@VObject@v8@@@2@@Z + VA : 0xBFE670 +Export 1575 : + Name : ?InternalFieldCount@Object@v8@@SAHAEBV?$PersistentBase@VObject@v8@@@2@@Z + VA : 0xBFE670 +Export 1576 : + Name : ?InternalFieldCount@ObjectTemplate@v8@@QEBAHXZ + VA : 0xC084B0 +Export 1577 : + Name : ?InternalFieldOutOfBounds@api_internal@v8@@YAXH@Z + VA : 0x551CFC0 +Export 1578 : + Name : ?InternalizeString@String@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC120F0 +Export 1579 : + Name : ?IsApiWrapper@Object@v8@@QEBA_NXZ + VA : 0xC111A0 +Export 1580 : + Name : ?IsArgumentsObject@Value@v8@@QEBA_NXZ + VA : 0x5520FE0 +Export 1581 : + Name : ?IsArray@Value@v8@@QEBA_NXZ + VA : 0xC0D660 +Export 1582 : + Name : ?IsArrayBuffer@Value@v8@@QEBA_NXZ + VA : 0xC0D690 +Export 1583 : + Name : ?IsArrayBufferView@Value@v8@@QEBA_NXZ + VA : 0xC0D6C0 +Export 1584 : + Name : ?IsAsyncFunction@Value@v8@@QEBA_NXZ + VA : 0x55210A0 +Export 1585 : + Name : ?IsAvailable@OptimizingCompileDispatcherQueue@internal@v8@@QEAA_NXZ + VA : 0xC32310 +Export 1586 : + Name : ?IsBaseConsistent@CageBaseGlobal@internal@cppgc@@CA_NXZ + VA : 0xBFF6F0 +Export 1587 : + Name : ?IsBigInt64Array@Value@v8@@QEBA_NXZ + VA : 0x5520E00 +Export 1588 : + Name : ?IsBigInt@Value@v8@@QEBA_NXZ + VA : 0xC0DAA0 +Export 1589 : + Name : ?IsBigIntObject@Value@v8@@QEBA_NXZ + VA : 0xC0DB00 +Export 1590 : + Name : ?IsBigUint64Array@Value@v8@@QEBA_NXZ + VA : 0x5520D90 +Export 1591 : + Name : ?IsBoolean@Value@v8@@QEBA_NXZ + VA : 0x3988B30 +Export 1592 : + Name : ?IsBooleanObject@Value@v8@@QEBA_NXZ + VA : 0xC0DB50 +Export 1593 : + Name : ?IsCacheable@ExternalStringResourceBase@String@v8@@UEBA_NXZ + VA : 0x388D510 +Export 1594 : + Name : ?IsCallable@Object@v8@@QEBA_NXZ + VA : 0x398A560 +Export 1595 : + Name : ?IsCandidate@Version@internal@v8@@SA_NXZ + VA : 0xC05520 +Export 1596 : + Name : ?IsCodeGenerationFromStringsAllowed@Context@v8@@QEBA_NXZ + VA : 0xC14320 +Export 1597 : + Name : ?IsCodeLike@Object@v8@@QEBA_NPEAVIsolate@2@@Z + VA : 0x552FBF0 +Export 1598 : + Name : ?IsCodeLike@ObjectTemplate@v8@@QEBA_NXZ + VA : 0x551DF70 +Export 1599 : + Name : ?IsConstructor@Object@v8@@QEBA_NXZ + VA : 0xC11180 +Export 1600 : + Name : ?IsConstructor@StackFrame@v8@@QEBA_NXZ + VA : 0x55203D0 +Export 1601 : + Name : ?IsContext@Data@v8@@QEBA_NXZ + VA : 0x551D190 +Export 1602 : + Name : ?IsCookieEncryptionEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB10 +Export 1603 : + Name : ?IsCreationThread@PersistentRegion@internal@cppgc@@AEAA_NXZ + VA : 0xF7C0D0 +Export 1604 : + Name : ?IsCurrent@Isolate@v8@@QEBA_NXZ + VA : 0x552EDC0 +Export 1605 : + Name : ?IsDataView@Value@v8@@QEBA_NXZ + VA : 0xC0DA30 +Export 1606 : + Name : ?IsDate@Value@v8@@QEBA_NXZ + VA : 0xC0DC60 +Export 1607 : + Name : ?IsDead@Isolate@v8@@QEAA_NXZ + VA : 0x398CDF0 +Export 1608 : + Name : ?IsDetachable@ArrayBuffer@v8@@QEBA_NXZ + VA : 0x552BEE0 +Export 1609 : + Name : ?IsEmbeddedAsarIntegrityValidationEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB40 +Export 1610 : + Name : ?IsEnabled@WriteBarrier@internal@cppgc@@SA_NXZ + VA : 0xBFF7C0 +Export 1611 : + Name : ?IsEnvironmentStopping@node@@YA_NPEAVIsolate@v8@@@Z + VA : 0x217E980 +Export 1612 : + Name : ?IsEval@StackFrame@v8@@QEBA_NXZ + VA : 0x55203A0 +Export 1613 : + Name : ?IsExecutionTerminating@Isolate@v8@@QEAA_NXZ + VA : 0x398CCB0 +Export 1614 : + Name : ?IsExternal@String@v8@@QEBA_NXZ + VA : 0x55271C0 +Export 1615 : + Name : ?IsExternal@Value@v8@@QEBA_NXZ + VA : 0xC0DD80 +Export 1616 : + Name : ?IsExternalOneByte@String@v8@@QEBA_NXZ + VA : 0x55272D0 +Export 1617 : + Name : ?IsExternalTwoByte@String@v8@@QEBA_NXZ + VA : 0x55271F0 +Export 1618 : + Name : ?IsFalse@Value@v8@@QEBA_NXZ + VA : 0xBFE440 +Export 1619 : + Name : ?IsFixedArray@Data@v8@@QEBA_NXZ + VA : 0x551D100 +Export 1620 : + Name : ?IsFloat16Array@Value@v8@@QEBA_NXZ + VA : 0x5520F50 +Export 1621 : + Name : ?IsFloat32Array@Value@v8@@QEBA_NXZ + VA : 0x5520E70 +Export 1622 : + Name : ?IsFloat64Array@Value@v8@@QEBA_NXZ + VA : 0x5520EE0 +Export 1623 : + Name : ?IsFunction@Value@v8@@QEBA_NXZ + VA : 0x3988AC0 +Export 1624 : + Name : ?IsFunctionTemplate@Data@v8@@QEBA_NXZ + VA : 0x551D170 +Export 1625 : + Name : ?IsGarbageCollectionAllowed@DisallowGarbageCollectionScope@subtle@cppgc@@SA_NAEAVHeapHandle@3@@Z + VA : 0x3DC0630 +Export 1626 : + Name : ?IsGeneratorFunction@Value@v8@@QEBA_NXZ + VA : 0x55210E0 +Export 1627 : + Name : ?IsGeneratorObject@Value@v8@@QEBA_NXZ + VA : 0xC0DE10 +Export 1628 : + Name : ?IsGrantFileProtocolExtraPrivilegesEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB70 +Export 1629 : + Name : ?IsGraphAsync@Module@v8@@QEBA_NXZ + VA : 0x551EBD0 +Export 1630 : + Name : ?IsHeapLimitIncreasedForDebugging@Isolate@v8@@QEAA_NXZ + VA : 0x1F34E0 +Export 1631 : + Name : ?IsHeapObjectAliveImpl@LivenessBroker@cppgc@@AEBA_NPEBX@Z + VA : 0x3DC0B60 +Export 1632 : + Name : ?IsHeapObjectOld@testing@cppgc@@YA_NPEAX@Z + VA : 0x59526C0 +Export 1633 : + Name : ?IsHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z + VA : 0x5520820 +Export 1634 : + Name : ?IsImmutableProto@ObjectTemplate@v8@@QEBA_NXZ + VA : 0x551DF60 +Export 1635 : + Name : ?IsInAtomicPause@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + VA : 0x3DC0B50 +Export 1636 : + Name : ?IsInUse@Isolate@v8@@QEAA_NXZ + VA : 0x552FB50 +Export 1637 : + Name : ?IsInt16Array@Value@v8@@QEBA_NXZ + VA : 0xC0D870 +Export 1638 : + Name : ?IsInt32@Value@v8@@QEBA_NXZ + VA : 0x3988B60 +Export 1639 : + Name : ?IsInt32Array@Value@v8@@QEBA_NXZ + VA : 0xC0D950 +Export 1640 : + Name : ?IsInt8Array@Value@v8@@QEBA_NXZ + VA : 0xC0D790 +Export 1641 : + Name : ?IsInvalid@V8StackTraceId@v8_inspector@@QEBA_NXZ + VA : 0x597E7A0 +Export 1642 : + Name : ?IsLeafTemplateForApiObject@FunctionTemplate@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + VA : 0x55288D0 +Export 1643 : + Name : ?IsLoadBrowserProcessSpecificV8SnapshotEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB60 +Export 1644 : + Name : ?IsLocked@Locker@v8@@SA_NPEAVIsolate@2@@Z + VA : 0x55C5710 +Export 1645 : + Name : ?IsMap@Value@v8@@QEBA_NXZ + VA : 0xC0DC90 +Export 1646 : + Name : ?IsMapIterator@Value@v8@@QEBA_NXZ + VA : 0xC0DE40 +Export 1647 : + Name : ?IsMarking@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + VA : 0x3DC0B30 +Export 1648 : + Name : ?IsModule@Data@v8@@QEBA_NXZ + VA : 0x551D0D0 +Export 1649 : + Name : ?IsModuleNamespaceObject@Value@v8@@QEBA_NXZ + VA : 0x5521120 +Export 1650 : + Name : ?IsName@Value@v8@@QEBA_NXZ + VA : 0x5520D50 +Export 1651 : + Name : ?IsNativeError@Value@v8@@QEBA_NXZ + VA : 0xC0DDB0 +Export 1652 : + Name : ?IsNodeCliInspectEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB30 +Export 1653 : + Name : ?IsNodeOptionsEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB20 +Export 1654 : + Name : ?IsNotIndicativeOfMemoryLeakAtExit@ModuleWrap@loader@node@@UEBA_NXZ + VA : 0x2D0F40 +Export 1655 : + Name : ?IsNull@Value@v8@@QEBA_NXZ + VA : 0xBFE400 +Export 1656 : + Name : ?IsNullOrUndefined@Value@v8@@QEBA_NXZ + VA : 0xBFE410 +Export 1657 : + Name : ?IsNumber@Value@v8@@QEBA_NXZ + VA : 0x3988B10 +Export 1658 : + Name : ?IsNumberObject@Value@v8@@QEBA_NXZ + VA : 0xC0DBA0 +Export 1659 : + Name : ?IsObject@Value@v8@@QEBA_NXZ + VA : 0x3988AE0 +Export 1660 : + Name : ?IsObjectTemplate@Data@v8@@QEBA_NXZ + VA : 0x551D150 +Export 1661 : + Name : ?IsOneByte@String@v8@@QEBA_NXZ + VA : 0x398B510 +Export 1662 : + Name : ?IsOnlyLoadAppFromAsarEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB50 +Export 1663 : + Name : ?IsOpaque@Message@v8@@QEBA_NXZ + VA : 0x551FDB0 +Export 1664 : + Name : ?IsPrivate@Data@v8@@QEBA_NXZ + VA : 0x551D130 +Export 1665 : + Name : ?IsPromise@Value@v8@@QEBA_NXZ + VA : 0xC0DEA0 +Export 1666 : + Name : ?IsProxy@Value@v8@@QEBA_NXZ + VA : 0xC0DAD0 +Export 1667 : + Name : ?IsRegExp@Value@v8@@QEBA_NXZ + VA : 0xC0DDE0 +Export 1668 : + Name : ?IsResizableByUserJavaScript@ArrayBuffer@v8@@QEBA_NXZ + VA : 0x5522840 +Export 1669 : + Name : ?IsResizableByUserJavaScript@BackingStore@v8@@QEBA_NXZ + VA : 0xC0E1B0 +Export 1670 : + Name : ?IsRevoked@Proxy@v8@@QEBA_NXZ + VA : 0x552B5E0 +Export 1671 : + Name : ?IsRunAsNodeEnabled@fuses@electron@@YA_NXZ + VA : 0x42CB00 +Export 1672 : + Name : ?IsRunningMicrotasks@MicrotasksScope@v8@@SA_NPEAVIsolate@2@@Z + VA : 0x552FCB0 +Export 1673 : + Name : ?IsSandboxConfiguredSecurely@V8@v8@@SA_NXZ + VA : 0xC127E0 +Export 1674 : + Name : ?IsScriptSharedCrossOrigin@CpuProfileNode@v8@@QEBA_NXZ + VA : 0x5530D70 +Export 1675 : + Name : ?IsSet@CageBaseGlobal@internal@cppgc@@SA_NXZ + VA : 0xBFF6E0 +Export 1676 : + Name : ?IsSet@Value@v8@@QEBA_NXZ + VA : 0xC0DCC0 +Export 1677 : + Name : ?IsSetIterator@Value@v8@@QEBA_NXZ + VA : 0xC0DE70 +Export 1678 : + Name : ?IsShared@BackingStore@v8@@QEBA_NXZ + VA : 0xC0E1A0 +Export 1679 : + Name : ?IsSharedArrayBuffer@Value@v8@@QEBA_NXZ + VA : 0xC0DA70 +Export 1680 : + Name : ?IsSharedCrossOrigin@Message@v8@@QEBA_NXZ + VA : 0xC0C610 +Export 1681 : + Name : ?IsSourceTextModule@Module@v8@@QEBA_NXZ + VA : 0xC09920 +Export 1682 : + Name : ?IsString@Value@v8@@QEBA_NXZ + VA : 0xBFE450 +Export 1683 : + Name : ?IsStringObject@Value@v8@@QEBA_NXZ + VA : 0xC0DBE0 +Export 1684 : + Name : ?IsSweeping@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + VA : 0x594E3E0 +Export 1685 : + Name : ?IsSweepingOnOwningThread@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + VA : 0x594E3F0 +Export 1686 : + Name : ?IsSymbol@Value@v8@@QEBA_NXZ + VA : 0xC0D640 +Export 1687 : + Name : ?IsSymbolObject@Value@v8@@QEBA_NXZ + VA : 0xC0DC20 +Export 1688 : + Name : ?IsSyntheticModule@Module@v8@@QEBA_NXZ + VA : 0x551EC80 +Export 1689 : + Name : ?IsTakingSnapshot@HeapProfiler@v8@@QEAA_NXZ + VA : 0x5532080 +Export 1690 : + Name : ?IsTrue@Value@v8@@QEBA_NXZ + VA : 0xBFE430 +Export 1691 : + Name : ?IsTypedArray@Value@v8@@QEBA_NXZ + VA : 0xC0D6F0 +Export 1692 : + Name : ?IsUint16Array@Value@v8@@QEBA_NXZ + VA : 0xC0D800 +Export 1693 : + Name : ?IsUint32@Value@v8@@QEBA_NXZ + VA : 0x3988BC0 +Export 1694 : + Name : ?IsUint32Array@Value@v8@@QEBA_NXZ + VA : 0xC0D8E0 +Export 1695 : + Name : ?IsUint8Array@Value@v8@@QEBA_NXZ + VA : 0xC0D720 +Export 1696 : + Name : ?IsUint8ClampedArray@Value@v8@@QEBA_NXZ + VA : 0xC0D9C0 +Export 1697 : + Name : ?IsUndefined@Value@v8@@QEBA_NXZ + VA : 0xBFE3F0 +Export 1698 : + Name : ?IsUndetectable@Object@v8@@QEBA_NXZ + VA : 0x55265F0 +Export 1699 : + Name : ?IsUserJavaScript@StackFrame@v8@@QEBA_NXZ + VA : 0x55203F0 +Export 1700 : + Name : ?IsValid@StartupData@v8@@QEBA_NXZ + VA : 0x551CD30 +Export 1701 : + Name : ?IsValue@Data@v8@@QEBA_NXZ + VA : 0xC05940 +Export 1702 : + Name : ?IsVerbose@TryCatch@v8@@QEBA_NXZ + VA : 0x551F8A0 +Export 1703 : + Name : ?IsWasm@StackFrame@v8@@QEBA_NXZ + VA : 0x55203E0 +Export 1704 : + Name : ?IsWasmMemoryObject@Value@v8@@QEBA_NXZ + VA : 0xC0DCF0 +Export 1705 : + Name : ?IsWasmModuleObject@Value@v8@@QEBA_NXZ + VA : 0x5521010 +Export 1706 : + Name : ?IsWasmNull@Value@v8@@QEBA_NXZ + VA : 0x5521040 +Export 1707 : + Name : ?IsWeakMap@Value@v8@@QEBA_NXZ + VA : 0xC0DD20 +Export 1708 : + Name : ?IsWeakRef@Value@v8@@QEBA_NXZ + VA : 0x5521070 +Export 1709 : + Name : ?IsWeakSet@Value@v8@@QEBA_NXZ + VA : 0xC0DD50 +Export 1710 : + Name : ?IsWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX@Z + VA : 0xBFF720 +Export 1711 : + Name : ?IsolateFromNeverReadOnlySpaceObject@internal@v8@@YAPEAVIsolate@12@_K@Z + VA : 0xC050C0 +Export 1712 : + Name : ?IsolateInBackgroundNotification@Isolate@v8@@QEAAXXZ + VA : 0x552F4C0 +Export 1713 : + Name : ?IsolateInForegroundNotification@Isolate@v8@@QEAAXXZ + VA : 0x552F4B0 +Export 1714 : + Name : ?Iterate@Array@v8@@QEAA?AV?$Maybe@X@2@V?$Local@VContext@v8@@@2@P6A?AW4CallbackResult@12@IV?$Local@VValue@v8@@@2@PEAX@Z2@Z + VA : 0xC16590 +Export 1715 : + Name : ?Iterate@CrossThreadPersistentRegion@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z + VA : 0xF7C130 +Export 1716 : + Name : ?Iterate@PersistentRegionBase@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z + VA : 0x3DC7960 +Export 1717 : + Name : ?JSStackComparableAddressPrivate@BackupIncumbentScope@Context@v8@@AEBA_KXZ + VA : 0x7D88E0 +Export 1718 : + Name : ?JSStackComparableAddressPrivate@TryCatch@v8@@AEAA_KXZ + VA : 0x347550 +Export 1719 : + Name : ?JitPage@JitPageReference@ThreadIsolation@internal@v8@@QEAAPEAV0234@XZ + VA : 0x7D88E0 +Export 1720 : + Name : ?Leave@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + VA : 0x594DD10 +Export 1721 : + Name : ?Leave@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z + VA : 0x3DC0680 +Export 1722 : + Name : ?Length@Array@v8@@QEBAIXZ + VA : 0x398C940 +Export 1723 : + Name : ?Length@Buffer@node@@YA_KV?$Local@VObject@v8@@@v8@@@Z + VA : 0x21661F0 +Export 1724 : + Name : ?Length@Buffer@node@@YA_KV?$Local@VValue@v8@@@v8@@@Z + VA : 0x21661B0 +Export 1725 : + Name : ?Length@FixedArray@v8@@QEBAHXZ + VA : 0xC09330 +Export 1726 : + Name : ?Length@OptimizingCompileDispatcherQueue@internal@v8@@QEAAHXZ + VA : 0xC32350 +Export 1727 : + Name : ?Length@PrimitiveArray@v8@@QEBAHXZ + VA : 0x551E8C0 +Export 1728 : + Name : ?Length@String@v8@@QEBAHXZ + VA : 0x398B500 +Export 1729 : + Name : ?Length@TypedArray@v8@@QEAA_KXZ + VA : 0xC17A40 +Export 1730 : + Name : ?LimitForTesting@GCInfoTable@internal@cppgc@@QEBAGXZ + VA : 0xBFFBC0 +Export 1731 : + Name : ?Line@SourceLocation@v8@@QEBA_KXZ + VA : 0x2D4690 +Export 1732 : + Name : ?LineOffset@ScriptOrigin@v8@@QEBAHXZ + VA : 0x22EE60 +Export 1733 : + Name : ?Link@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x21821E0 +Export 1734 : + Name : ?LinkExistingOrCreate@V8SerializationDuplicateTracker@v8_inspector@@QEAA?AV?$unique_ptr@VDictionaryValue@protocol@v8_inspector@@U?$default_delete@VDictionaryValue@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@PEA_N@Z + VA : 0x597E450 +Export 1735 : + Name : ?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z + VA : 0x21EC4A0 +Export 1736 : + Name : ?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@AEBUStartExecutionCallbackInfo@node@@@Z@__Cr@std@@V?$function@$$A6AXPEAVEnvironment@node@@V?$Local@VValue@v8@@@v8@@1@Z@67@@Z + VA : 0x21EC2A0 +Export 1737 : + Name : ?LocaleConfigurationChangeNotification@Isolate@v8@@QEAAXXZ + VA : 0x552FB60 +Export 1738 : + Name : ?Lock@ExternalStringResourceBase@String@v8@@MEBAXXZ + VA : 0x1EA0F0 +Export 1739 : + Name : ?LookupAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z + VA : 0xC61730 +Export 1740 : + Name : ?LookupJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z + VA : 0x39C57C0 +Export 1741 : + Name : ?LookupJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + VA : 0x39C45D0 +Export 1742 : + Name : ?LookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + VA : 0x39C4360 +Export 1743 : + Name : ?LookupJumpTableAllocations@ThreadIsolation@internal@v8@@SA?AVWritableJumpTablePair@23@_K000@Z + VA : 0xC61E10 +Export 1744 : + Name : ?LookupWritableJitPage@ThreadIsolation@internal@v8@@SA?AVWritableJitPage@23@_K0@Z + VA : 0x39C48A0 +Export 1745 : + Name : ?LowMemoryNotification@Isolate@v8@@QEAAXXZ + VA : 0xC18830 +Export 1746 : + Name : ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEBDHPEAV?$Local@VValue@v8@@@4@@Z + VA : 0x3099180 +Export 1747 : + Name : ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VFunction@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z + VA : 0x3099090 +Export 1748 : + Name : ?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VString@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z + VA : 0x3099230 +Export 1749 : + Name : ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV23@@Z + VA : 0x21F05C0 +Export 1750 : + Name : ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV23@@Z + VA : 0x21F07A0 +Export 1751 : + Name : ?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV23@@Z + VA : 0x21F06C0 +Export 1752 : + Name : ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + VA : 0x21EFF60 +Export 1753 : + Name : ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + VA : 0x21F01E0 +Export 1754 : + Name : ?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z + VA : 0x21F0020 +Export 1755 : + Name : ?MakeExecutable@ThreadIsolation@internal@v8@@SA_N_K0@Z + VA : 0x49D8A30 +Export 1756 : + Name : ?MakeExternal@String@v8@@QEAA_NPEAVExternalOneByteStringResource@12@@Z + VA : 0x398C870 +Export 1757 : + Name : ?MakeExternal@String@v8@@QEAA_NPEAVExternalStringResource@12@@Z + VA : 0xC14EB0 +Export 1758 : + Name : ?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z + VA : 0x5528B20 +Export 1759 : + Name : ?MakeExternal@String@v8@@QEAA_NPEAVIsolate@2@PEAVExternalStringResource@12@@Z + VA : 0x5528A80 +Export 1760 : + Name : ?MakeWeak@api_internal@v8@@YAXPEAPEA_K@Z + VA : 0xC05880 +Export 1761 : + Name : ?MakeWeak@api_internal@v8@@YAXPEA_KPEAXP6AXAEBV?$WeakCallbackInfo@X@2@@ZW4WeakCallbackType@2@@Z + VA : 0x3986280 +Export 1762 : + Name : ?MarkAsHandled@Promise@v8@@QEAAXXZ + VA : 0x552B530 +Export 1763 : + Name : ?MarkAsSilent@Promise@v8@@QEAAXXZ + VA : 0x552B540 +Export 1764 : + Name : ?MarkAsUndetectable@ObjectTemplate@v8@@QEAAXXZ + VA : 0xC06EE0 +Export 1765 : + Name : ?Matches@TypecheckWitness@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + VA : 0xBFE470 +Export 1766 : + Name : ?MaxByteLength@ArrayBuffer@v8@@QEBA_KXZ + VA : 0x552C270 +Export 1767 : + Name : ?MaxByteLength@BackingStore@v8@@QEBA_KXZ + VA : 0x492D2E0 +Export 1768 : + Name : ?MaxByteLength@SharedArrayBuffer@v8@@QEBA_KXZ + VA : 0x552C270 +Export 1769 : + Name : ?MaxTableSize@GCInfoTable@internal@cppgc@@AEBA_KXZ + VA : 0x594D010 +Export 1770 : + Name : ?MaybeNew@ArrayBuffer@v8@@SA?AV?$MaybeLocal@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + VA : 0x552C280 +Export 1771 : + Name : ?MeasureMemory@Isolate@v8@@QEAA_NV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@__Cr@std@@@__Cr@std@@W4MeasureMemoryExecution@2@@Z + VA : 0x552F130 +Export 1772 : + Name : ?MeasurementComplete@MeasureMemoryDelegate@v8@@UEAAXUResult@12@@Z + VA : 0x1EA0F0 +Export 1773 : + Name : ?MemoryInfo@ModuleWrap@loader@node@@UEBAXPEAVMemoryTracker@3@@Z + VA : 0x390E60 +Export 1774 : + Name : ?MemoryInfoName@ModuleWrap@loader@node@@UEBAPEBDXZ + VA : 0x391100 +Export 1775 : + Name : ?MemoryPressureNotification@Isolate@v8@@QEAAXW4MemoryPressureLevel@2@@Z + VA : 0x552F4D0 +Export 1776 : + Name : ?Merge@JitPageReference@ThreadIsolation@internal@v8@@QEAAXAEAV1234@@Z + VA : 0x55838E0 +Export 1777 : + Name : ?MergeFlags@?$CTypeInfoBuilder@H$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + VA : 0x1F34E0 +Export 1778 : + Name : ?MergeFlags@?$CTypeInfoBuilder@I$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + VA : 0x1F34E0 +Export 1779 : + Name : ?MergeFlags@?$CTypeInfoBuilder@M$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + VA : 0x1F34E0 +Export 1780 : + Name : ?MergeFlags@?$CTypeInfoBuilder@N$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ + VA : 0x1F34E0 +Export 1781 : + Name : ?MergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ + VA : 0x551F2B0 +Export 1782 : + Name : ?Message@TryCatch@v8@@QEBA?AV?$Local@VMessage@v8@@@2@XZ + VA : 0x551F840 +Export 1783 : + Name : ?MoveGlobalReference@api_internal@v8@@YAXPEAPEA_K0@Z + VA : 0xC05870 +Export 1784 : + Name : ?MoveTracedReference@internal@v8@@YAXPEAPEA_K0@Z + VA : 0x3986200 +Export 1785 : + Name : ?Name@Private@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x5527790 +Export 1786 : + Name : ?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z + VA : 0xC157D0 +Export 1787 : + Name : ?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@PEAV?$Local@VValue@v8@@@2@_K@Z + VA : 0xC15940 +Export 1788 : + Name : ?New@Array@v8@@SA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@_KV?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@XZ@__Cr@std@@@Z + VA : 0xC15AA0 +Export 1789 : + Name : ?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z + VA : 0xC17610 +Export 1790 : + Name : ?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + VA : 0x552C310 +Export 1791 : + Name : ?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D5C0 +Export 1792 : + Name : ?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D6B0 +Export 1793 : + Name : ?New@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_J@Z + VA : 0x552E5E0 +Export 1794 : + Name : ?New@BigIntObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_J@Z + VA : 0x5528D30 +Export 1795 : + Name : ?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D3E0 +Export 1796 : + Name : ?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D4D0 +Export 1797 : + Name : ?New@Boolean@v8@@SA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@_N@Z + VA : 0xBFE650 +Export 1798 : + Name : ?New@BooleanObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_N@Z + VA : 0x5528DE0 +Export 1799 : + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_K@Z + VA : 0x21671C0 +Export 1800 : + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_KP6AX1PEAX@Z3@Z + VA : 0x2166CE0 +Export 1801 : + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@V?$Local@VString@v8@@@4@W4encoding@2@@Z + VA : 0x21663F0 +Export 1802 : + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@_K@Z + VA : 0x21666C0 +Export 1803 : + Name : ?New@Buffer@node@@YA?AV?$MaybeLocal@VUint8Array@v8@@@v8@@PEAVIsolate@4@V?$Local@VArrayBuffer@v8@@@4@_K2@Z + VA : 0x2166340 +Export 1804 : + Name : ?New@Context@v8@@SA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@UDeserializeInternalFieldsCallback@2@PEAVMicrotaskQueue@2@UDeserializeContextDataCallback@2@UDeserializeAPIWrapperCallback@2@@Z + VA : 0xC13360 +Export 1805 : + Name : ?New@CpuProfiler@v8@@SAPEAV12@PEAVIsolate@2@W4CpuProfilingNamingMode@2@W4CpuProfilingLoggingMode@2@@Z + VA : 0x5531140 +Export 1806 : + Name : ?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DF50 +Export 1807 : + Name : ?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DF50 +Export 1808 : + Name : ?New@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@N@Z + VA : 0x5528F70 +Export 1809 : + Name : ?New@DictionaryTemplate@v8@@SA?AV?$Local@VDictionaryTemplate@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@2@@Z + VA : 0xC08600 +Export 1810 : + Name : ?New@External@v8@@SA?AV?$Local@VExternal@v8@@@2@PEAVIsolate@2@PEAX@Z + VA : 0xC14BC0 +Export 1811 : + Name : ?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DD30 +Export 1812 : + Name : ?New@Float16Array@v8@@SA?AV?$Local@VFloat16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DE40 +Export 1813 : + Name : ?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D980 +Export 1814 : + Name : ?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DA60 +Export 1815 : + Name : ?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DB50 +Export 1816 : + Name : ?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552DC40 +Export 1817 : + Name : ?New@Function@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@@Z + VA : 0xC116D0 +Export 1818 : + Name : ?New@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@PEBVCFunction@2@GGG@Z + VA : 0x3986880 +Export 1819 : + Name : ?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552CE50 +Export 1820 : + Name : ?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552CF40 +Export 1821 : + Name : ?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D210 +Export 1822 : + Name : ?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D2F0 +Export 1823 : + Name : ?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552CA90 +Export 1824 : + Name : ?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552CB80 +Export 1825 : + Name : ?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@H@Z + VA : 0xC17C70 +Export 1826 : + Name : ?New@Isolate@v8@@SAPEAV12@AEBUCreateParams@12@@Z + VA : 0x552EEB0 +Export 1827 : + Name : ?New@Map@v8@@SA?AV?$Local@VMap@v8@@@2@PEAVIsolate@2@@Z + VA : 0x5529B10 +Export 1828 : + Name : ?New@MicrotaskQueue@v8@@SA?AV?$unique_ptr@VMicrotaskQueue@v8@@U?$default_delete@VMicrotaskQueue@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@W4MicrotasksPolicy@2@@Z + VA : 0xC19290 +Export 1829 : + Name : ?New@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x21807A0 +Export 1830 : + Name : ?New@Number@v8@@SA?AV?$Local@VNumber@v8@@@2@PEAVIsolate@2@N@Z + VA : 0x398C960 +Export 1831 : + Name : ?New@NumberObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@N@Z + VA : 0x5528BD0 +Export 1832 : + Name : ?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z + VA : 0xC14FB0 +Export 1833 : + Name : ?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@PEAV?$Local@VName@v8@@@2@PEAV52@_K@Z + VA : 0xC15080 +Export 1834 : + Name : ?New@ObjectTemplate@v8@@SA?AV?$Local@VObjectTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + VA : 0xC06B10 +Export 1835 : + Name : ?New@PrimitiveArray@v8@@SA?AV?$Local@VPrimitiveArray@v8@@@2@PEAVIsolate@2@H@Z + VA : 0xC091D0 +Export 1836 : + Name : ?New@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0xC17B20 +Export 1837 : + Name : ?New@Proxy@v8@@SA?AV?$MaybeLocal@VProxy@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@1@Z + VA : 0x552B620 +Export 1838 : + Name : ?New@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@@Z + VA : 0xC15550 +Export 1839 : + Name : ?New@Resolver@Promise@v8@@SA?AV?$MaybeLocal@VResolver@Promise@v8@@@3@V?$Local@VContext@v8@@@3@@Z + VA : 0xC168E0 +Export 1840 : + Name : ?New@Set@v8@@SA?AV?$Local@VSet@v8@@@2@PEAVIsolate@2@@Z + VA : 0x552A760 +Export 1841 : + Name : ?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@__Cr@std@@@Z + VA : 0x552E130 +Export 1842 : + Name : ?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + VA : 0x552E010 +Export 1843 : + Name : ?New@Signature@v8@@SA?AV?$Local@VSignature@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z + VA : 0x3987790 +Export 1844 : + Name : ?New@StringObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0x5528ED0 +Export 1845 : + Name : ?New@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z + VA : 0x552E3A0 +Export 1846 : + Name : ?New@SymbolObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VSymbol@v8@@@2@@Z + VA : 0x5528ED0 +Export 1847 : + Name : ?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552CC70 +Export 1848 : + Name : ?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552CD60 +Export 1849 : + Name : ?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D030 +Export 1850 : + Name : ?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D120 +Export 1851 : + Name : ?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552C8C0 +Export 1852 : + Name : ?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552C9A0 +Export 1853 : + Name : ?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D7A0 +Export 1854 : + Name : ?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z + VA : 0x552D890 +Export 1855 : + Name : ?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + VA : 0x552C3C0 +Export 1856 : + Name : ?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z + VA : 0xC17750 +Export 1857 : + Name : ?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@_KW4BackingStoreInitializationMode@2@@Z + VA : 0x552E260 +Export 1858 : + Name : ?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAX_KP6AX010@Z0@Z + VA : 0x552E330 +Export 1859 : + Name : ?NewContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVIsolate@3@V?$Local@VObjectTemplate@v8@@@3@@Z + VA : 0x21ECBB0 +Export 1860 : + Name : ?NewDefaultAllocator@Allocator@ArrayBuffer@v8@@SAPEAV123@XZ + VA : 0x552BE60 +Export 1861 : + Name : ?NewExternalOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z + VA : 0x398C760 +Export 1862 : + Name : ?NewExternalTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalStringResource@12@@Z + VA : 0xC14DA0 +Export 1863 : + Name : ?NewFromOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBEW4NewStringType@2@H@Z + VA : 0x398C640 +Export 1864 : + Name : ?NewFromTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBGW4NewStringType@2@H@Z + VA : 0xC14C90 +Export 1865 : + Name : ?NewFromUnsigned@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_K@Z + VA : 0x552E650 +Export 1866 : + Name : ?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@I@Z + VA : 0xC17D50 +Export 1867 : + Name : ?NewFromUtf8@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z + VA : 0x3985EC0 +Export 1868 : + Name : ?NewFromUtf8Literal@String@v8@@CA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z + VA : 0x5528920 +Export 1869 : + Name : ?NewFromWords@BigInt@v8@@SA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@HHPEB_K@Z + VA : 0x552E6C0 +Export 1870 : + Name : ?NewInstance@DictionaryTemplate@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@2@@Z + VA : 0xC08670 +Export 1871 : + Name : ?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC05360 +Export 1872 : + Name : ?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z + VA : 0x551C690 +Export 1873 : + Name : ?NewInstance@ObjectTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC148A0 +Export 1874 : + Name : ?NewInstanceWithSideEffectType@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@W4SideEffectType@2@@Z + VA : 0xC117D0 +Export 1875 : + Name : ?NewIsolate@node@@YAPEAVIsolate@v8@@PEAVArrayBufferAllocator@1@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z + VA : 0x21EB8E0 +Export 1876 : + Name : ?NewIsolate@node@@YAPEAVIsolate@v8@@V?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEBVEmbedderSnapshotData@1@AEBUIsolateSettings@1@@Z + VA : 0x21EB9A0 +Export 1877 : + Name : ?NewRemoteContext@Context@v8@@SA?AV?$MaybeLocal@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@@Z + VA : 0xC134F0 +Export 1878 : + Name : ?NewRemoteInstance@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@XZ + VA : 0x55286B0 +Export 1879 : + Name : ?NewResizableBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@_K0@Z + VA : 0x552C480 +Export 1880 : + Name : ?NewWithBacktrackLimit@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@I@Z + VA : 0x5529640 +Export 1881 : + Name : ?NewWithCFunctionOverloads@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z + VA : 0x39870F0 +Export 1882 : + Name : ?NewWithCache@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4SideEffectType@2@@Z + VA : 0x551D690 +Export 1883 : + Name : ?NodesInUse@CrossThreadPersistentRegion@internal@cppgc@@QEBA_KXZ + VA : 0x347550 +Export 1884 : + Name : ?NodesInUse@PersistentRegionBase@internal@cppgc@@QEBA_KXZ + VA : 0x347550 +Export 1885 : + Name : ?NotifyIsolateDisposal@Recorder@metrics@v8@@UEAAXXZ + VA : 0x1EA0F0 +Export 1886 : + Name : ?NumberOfGCInfos@GCInfoTable@internal@cppgc@@QEBAGXZ + VA : 0xBFFBB0 +Export 1887 : + Name : ?NumberOfHandles@HandleScope@v8@@SAHPEAVIsolate@2@@Z + VA : 0x551D060 +Export 1888 : + Name : ?NumberOfHeapSpaces@Isolate@v8@@QEAA_KXZ + VA : 0x4DE08C0 +Export 1889 : + Name : ?NumberOfTrackedHeapObjectTypes@Isolate@v8@@QEAA_KXZ + VA : 0x552F000 +Export 1890 : + Name : ?NumberValue@Value@v8@@QEBA?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0E3A0 +Export 1891 : + Name : ?OOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DC0 +Export 1892 : + Name : ?ObjectProtoToString@Object@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5524DB0 +Export 1893 : + Name : ?OffsetFromAddress@CagedHeapBase@internal@cppgc@@SA_KPEBX@Z + VA : 0xBFF710 +Export 1894 : + Name : ?OnBytesReceived@WasmStreaming@v8@@QEAAXPEBE_K@Z + VA : 0x5917560 +Export 1895 : + Name : ?OnFatalError@node@@YAXPEBD0@Z + VA : 0x2152B60 +Export 1896 : + Name : ?Options@ScriptOrigin@v8@@QEBA?AVScriptOriginOptions@2@XZ + VA : 0xBFF040 +Export 1897 : + Name : ?Other@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DC8 +Export 1898 : + Name : ?PCIsInV8@Unwinder@v8@@SA_N_KPEBUMemoryRange@2@PEAX@Z + VA : 0x55B2C80 +Export 1899 : + Name : ?Parse@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + VA : 0x55291D0 +Export 1900 : + Name : ?Parse@JSON@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z + VA : 0xC0CA20 +Export 1901 : + Name : ?ParseEncoding@node@@YA?AW4encoding@1@PEAVIsolate@v8@@V?$Local@VValue@v8@@@4@W421@@Z + VA : 0x2848B50 +Export 1902 : + Name : ?PerformCheckpoint@MicrotasksScope@v8@@SAXPEAVIsolate@2@@Z + VA : 0x398CE80 +Export 1903 : + Name : ?PerformMarkingStep@StandaloneTestingHeap@testing@cppgc@@QEAA_NW4EmbedderStackState@3@@Z + VA : 0x5952670 +Export 1904 : + Name : ?PerformMicrotaskCheckpoint@Isolate@v8@@QEAAXXZ + VA : 0x552F320 +Export 1905 : + Name : ?PostJob@Platform@cppgc@@UEAA?AV?$unique_ptr@VJobHandle@v8@@U?$default_delete@VJobHandle@v8@@@__Cr@std@@@__Cr@std@@W4TaskPriority@v8@@V?$unique_ptr@VJobTask@v8@@U?$default_delete@VJobTask@v8@@@__Cr@std@@@45@@Z + VA : 0xBFF670 +Export 1906 : + Name : ?PrepareInstall@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ + VA : 0x59AD570 +Export 1907 : + Name : ?PrepareInstallPredictable@CompilationDependencies@compiler@internal@v8@@AEAA_NXZ + VA : 0x59AD660 +Export 1908 : + Name : ?PrepareStackTraceCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@V?$Local@VArray@v8@@@3@@Z + VA : 0x21EAAB0 +Export 1909 : + Name : ?PreviewEntries@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@PEA_N@Z + VA : 0x55309E0 +Export 1910 : + Name : ?PreviousGCWasConservative@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z + VA : 0x594E400 +Export 1911 : + Name : ?PrintCurrentStackTrace@Message@v8@@SAXPEAVIsolate@2@AEAV?$basic_ostream@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@Z + VA : 0x5520070 +Export 1912 : + Name : ?Prioritize@OptimizingCompileDispatcherQueue@internal@v8@@QEAAXV?$Tagged@VSharedFunctionInfo@internal@v8@@@23@@Z + VA : 0x5585820 +Export 1913 : + Name : ?ProcessGlobalArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@23@@__Cr@std@@00W4OptionEnvvarSettings@1@@Z + VA : 0x217BA10 +Export 1914 : + Name : ?PromiseRejectCallback@node@@YAXVPromiseRejectMessage@v8@@@Z + VA : 0x290EF50 +Export 1915 : + Name : ?PromiseRejection@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DD0 +Export 1916 : + Name : ?PrototypeTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ + VA : 0xC05DE0 +Export 1917 : + Name : ?QueryObjects@HeapProfiler@v8@@QEAAXV?$Local@VContext@v8@@@2@PEAVQueryObjectPredicate@2@PEAV?$vector@V?$Global@VObject@v8@@@v8@@V?$allocator@V?$Global@VObject@v8@@@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x5531DD0 +Export 1918 : + Name : ?QueueIndex@OptimizingCompileDispatcherQueue@internal@v8@@AEAAHH@Z + VA : 0xC32440 +Export 1919 : + Name : ?QuickIsFalse@Value@v8@@AEBA_NXZ + VA : 0xBFE440 +Export 1920 : + Name : ?QuickIsNull@Value@v8@@AEBA_NXZ + VA : 0xBFE400 +Export 1921 : + Name : ?QuickIsNullOrUndefined@Value@v8@@AEBA_NXZ + VA : 0xBFE410 +Export 1922 : + Name : ?QuickIsString@Value@v8@@AEBA_NXZ + VA : 0xBFE450 +Export 1923 : + Name : ?QuickIsTrue@Value@v8@@AEBA_NXZ + VA : 0xBFE430 +Export 1924 : + Name : ?QuickIsUndefined@Value@v8@@AEBA_NXZ + VA : 0xBFE3F0 +Export 1925 : + Name : ?RangeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x5530070 +Export 1926 : + Name : ?ReThrow@TryCatch@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x551F5B0 +Export 1927 : + Name : ?ReadDouble@ValueDeserializer@v8@@QEAA_NPEAN@Z + VA : 0x5520CC0 +Export 1928 : + Name : ?ReadHeader@ValueDeserializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0D160 +Export 1929 : + Name : ?ReadHostObject@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VObject@v8@@@3@PEAVIsolate@3@@Z + VA : 0x5520A60 +Export 1930 : + Name : ?ReadOnlyPrototype@FunctionTemplate@v8@@QEAAXXZ + VA : 0xC069B0 +Export 1931 : + Name : ?ReadRawBytes@ValueDeserializer@v8@@QEAA_N_KPEAPEBX@Z + VA : 0xC0D630 +Export 1932 : + Name : ?ReadUint32@ValueDeserializer@v8@@QEAA_NPEAI@Z + VA : 0x5520CA0 +Export 1933 : + Name : ?ReadUint64@ValueDeserializer@v8@@QEAA_NPEA_K@Z + VA : 0x5520CB0 +Export 1934 : + Name : ?ReadValue@ValueDeserializer@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0D3A0 +Export 1935 : + Name : ?Reallocate@Allocator@ArrayBuffer@v8@@UEAAPEAXPEAX_K1@Z + VA : 0x552BDC0 +Export 1936 : + Name : ?Reallocate@BackingStore@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@__Cr@std@@@__Cr@std@@PEAVIsolate@2@V345@_K@Z + VA : 0x55226E0 +Export 1937 : + Name : ?ReallocateBufferMemory@Delegate@ValueSerializer@v8@@UEAAPEAXPEAX_KPEA_K@Z + VA : 0x55209D0 +Export 1938 : + Name : ?RecordDependency@CompilationDependencies@compiler@internal@v8@@QEAAXPEBVCompilationDependency@234@@Z + VA : 0x3E486A0 +Export 1939 : + Name : ?ReferenceError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x55301E0 +Export 1940 : + Name : ?RefillFreeList@PersistentRegionBase@internal@cppgc@@AEAAXXZ + VA : 0x3DC7780 +Export 1941 : + Name : ?RefillFreeListAndAllocateNode@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + VA : 0xF7C0F0 +Export 1942 : + Name : ?RegisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAAEAVJitAllocation@234@_K0W4JitAllocationType@234@@Z + VA : 0xC61400 +Export 1943 : + Name : ?RegisterExtension@v8@@YAXV?$unique_ptr@VExtension@v8@@U?$default_delete@VExtension@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0xC056D0 +Export 1944 : + Name : ?RegisterExternalReferences@ModuleWrap@loader@node@@SAXPEAVExternalReferenceRegistry@3@@Z + VA : 0x2186240 +Export 1945 : + Name : ?RegisterInstructionStreamAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0_N@Z + VA : 0x39C5120 +Export 1946 : + Name : ?RegisterJitAllocation@ThreadIsolation@internal@v8@@SA?AVWritableJitAllocation@23@_K0W4JitAllocationType@123@_N@Z + VA : 0xC61790 +Export 1947 : + Name : ?RegisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z + VA : 0x5583C50 +Export 1948 : + Name : ?RegisterJitAllocations@ThreadIsolation@internal@v8@@SAX_KAEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@W4JitAllocationType@123@@Z + VA : 0xC61F10 +Export 1949 : + Name : ?RegisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z + VA : 0x39C4D10 +Export 1950 : + Name : ?RegisterNewGCInfo@GCInfoTable@internal@cppgc@@QEAAGAEAU?$atomic@G@__Cr@std@@AEBUGCInfo@23@@Z + VA : 0xF75FD0 +Export 1951 : + Name : ?RegisterWeakCallback@Visitor@cppgc@@UEAAXP6AXAEBVLivenessBroker@2@PEBX@Z1@Z + VA : 0x48C0B20 +Export 1952 : + Name : ?Reject@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z + VA : 0xC16DA0 +Export 1953 : + Name : ?Release@ValueSerializer@v8@@QEAA?AU?$pair@PEAE_K@__Cr@std@@XZ + VA : 0xC0D070 +Export 1954 : + Name : ?RemoveBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + VA : 0xC187A0 +Export 1955 : + Name : ?RemoveBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z + VA : 0x5532070 +Export 1956 : + Name : ?RemoveCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z + VA : 0xC187B0 +Export 1957 : + Name : ?RemoveEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z + VA : 0x27C7C20 +Export 1958 : + Name : ?RemoveEnvironmentCleanupHookInternal@node@@YAXPEAUACHHandle@1@@Z + VA : 0x27C7E30 +Export 1959 : + Name : ?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z + VA : 0xC17F50 +Export 1960 : + Name : ?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z + VA : 0x552EC10 +Export 1961 : + Name : ?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z + VA : 0xC17F10 +Export 1962 : + Name : ?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z + VA : 0x552EBE0 +Export 1963 : + Name : ?RemoveMessageListeners@Isolate@v8@@QEAAXP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z + VA : 0x552F930 +Export 1964 : + Name : ?RemoveMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + VA : 0x552F4A0 +Export 1965 : + Name : ?RemoveNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z1@Z + VA : 0x552F8F0 +Export 1966 : + Name : ?RemovePrototype@FunctionTemplate@v8@@QEAAXXZ + VA : 0xC06A60 +Export 1967 : + Name : ?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@@Z + VA : 0x552EC90 +Export 1968 : + Name : ?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@W4EmbedderStackState@cppgc@@@Z + VA : 0x552ECF0 +Export 1969 : + Name : ?RequestInterrupt@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z + VA : 0xC17FB0 +Export 1970 : + Name : ?RequestInterrupt@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z + VA : 0x27C7ED0 +Export 1971 : + Name : ?Reset@LongTaskStats@metrics@v8@@SAXPEAVIsolate@3@@Z + VA : 0xBFF630 +Export 1972 : + Name : ?Reset@TryCatch@v8@@QEAAXXZ + VA : 0xC0BCB0 +Export 1973 : + Name : ?ResetForTesting@AgeTable@internal@cppgc@@QEAAXXZ + VA : 0x59529B0 +Export 1974 : + Name : ?ResetInternal@TryCatch@v8@@AEAAXXZ + VA : 0x551F590 +Export 1975 : + Name : ?Resize@ExplicitManagementImpl@internal@cppgc@@CA_NPEAX_K@Z + VA : 0x3DBFFE0 +Export 1976 : + Name : ?Resize@GCInfoTable@internal@cppgc@@AEAAXXZ + VA : 0xF75E10 +Export 1977 : + Name : ?Resolve@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z + VA : 0xC16B50 +Export 1978 : + Name : ?ResolveModuleCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VModule@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VString@v8@@@5@V?$Local@VFixedArray@v8@@@5@V?$Local@VModule@v8@@@5@@Z + VA : 0x2182C10 +Export 1979 : + Name : ?ResourceName@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0xBFF050 +Export 1980 : + Name : ?RestoreOriginalHeapLimit@Isolate@v8@@QEAAXXZ + VA : 0x48C0B20 +Export 1981 : + Name : ?Result@Promise@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x552B400 +Export 1982 : + Name : ?ReturnInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@XZ + VA : 0x7D88E0 +Export 1983 : + Name : ?ReturnInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@XZ + VA : 0x208AE0 +Export 1984 : + Name : ?Revoke@Proxy@v8@@QEAAXXZ + VA : 0x552B610 +Export 1985 : + Name : ?Run@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ + VA : 0xC0B080 +Export 1986 : + Name : ?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x551E3F0 +Export 1987 : + Name : ?Run@Script@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@@Z + VA : 0xC08A50 +Export 1988 : + Name : ?Run@ScriptStreamingTask@ScriptCompiler@v8@@QEAAXXZ + VA : 0xC0AF40 +Export 1989 : + Name : ?RunAtExit@node@@YAXPEAVEnvironment@1@@Z + VA : 0x27C76F0 +Export 1990 : + Name : ?SameValue@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + VA : 0x55239B0 +Export 1991 : + Name : ?ScriptId@Function@v8@@QEBAHXZ + VA : 0x398B2B0 +Export 1992 : + Name : ?ScriptId@Module@v8@@QEBAHXZ + VA : 0xC098A0 +Export 1993 : + Name : ?ScriptId@ScriptOrigin@v8@@QEBAHXZ + VA : 0xBFF080 +Export 1994 : + Name : ?SelfSize@ModuleWrap@loader@node@@UEBA_KXZ + VA : 0x391110 +Export 1995 : + Name : ?Serialize@CompiledWasmModule@v8@@QEAA?AUOwnedBuffer@2@XZ + VA : 0x552B840 +Export 1996 : + Name : ?Serialize@CpuProfile@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z + VA : 0x55310A0 +Export 1997 : + Name : ?Serialize@HeapSnapshot@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z + VA : 0x5531CA0 +Export 1998 : + Name : ?Set@Map@v8@@QEAA?AV?$MaybeLocal@VMap@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z + VA : 0x5529E20 +Export 1999 : + Name : ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z + VA : 0x5523D10 +Export 2000 : + Name : ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z + VA : 0xC0E9B0 +Export 2001 : + Name : ?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1V?$MaybeLocal@VObject@v8@@@2@@Z + VA : 0x5523BB0 +Export 2002 : + Name : ?Set@PrimitiveArray@v8@@QEAAXPEAVIsolate@2@HV?$Local@VPrimitive@v8@@@2@@Z + VA : 0xC09260 +Export 2003 : + Name : ?Set@Template@v8@@QEAAXPEAVIsolate@2@PEBDV?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + VA : 0xBFE8D0 +Export 2004 : + Name : ?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + VA : 0x3985D40 +Export 2005 : + Name : ?SetAbortOnUncaughtExceptionCallback@Isolate@v8@@QEAAXP6A_NPEAV12@@Z@Z + VA : 0x552EEF0 +Export 2006 : + Name : ?SetAbortScriptExecution@Context@v8@@QEAAXP6AXPEAVIsolate@2@V?$Local@VContext@v8@@@2@@Z@Z + VA : 0xC14460 +Export 2007 : + Name : ?SetAcceptAnyReceiver@FunctionTemplate@v8@@QEAAX_N@Z + VA : 0x3987AB0 +Export 2008 : + Name : ?SetAccessCheckCallback@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@Z2@Z + VA : 0x551DC20 +Export 2009 : + Name : ?SetAccessCheckCallbackAndHandler@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@ZAEBUNamedPropertyHandlerConfiguration@2@AEBUIndexedPropertyHandlerConfiguration@2@2@Z + VA : 0xC071C0 +Export 2010 : + Name : ?SetAccessorProperty@Object@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunction@v8@@@2@1W4PropertyAttribute@2@@Z + VA : 0x3989BD0 +Export 2011 : + Name : ?SetAccessorProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@1W4PropertyAttribute@2@@Z + VA : 0x3986720 +Export 2012 : + Name : ?SetAddCrashKeyCallback@Isolate@v8@@QEAAXP6AXW4CrashKeyId@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z + VA : 0xC18820 +Export 2013 : + Name : ?SetAddHistogramSampleFunction@Isolate@v8@@QEAAXP6AXPEAXH@Z@Z + VA : 0x552EE70 +Export 2014 : + Name : ?SetAge@AgeTable@internal@cppgc@@QEAAX_KW4Age@123@@Z + VA : 0xBFF790 +Export 2015 : + Name : ?SetAgeForRange@AgeTable@internal@cppgc@@QEAAX_K0W4Age@123@W4AdjacentCardsPolicy@123@@Z + VA : 0x59528C0 +Export 2016 : + Name : ?SetAlignedPointerInEmbedderData@Context@v8@@QEAAXHPEAX@Z + VA : 0xC05B60 +Export 2017 : + Name : ?SetAlignedPointerInInternalField@Object@v8@@QEAAXHPEAX@Z + VA : 0x5527840 +Export 2018 : + Name : ?SetAlignedPointerInInternalFields@Object@v8@@QEAAXHQEAHQEAPEAX@Z + VA : 0xC12340 +Export 2019 : + Name : ?SetAllowAtomicsWait@Isolate@v8@@QEAAX_N@Z + VA : 0xC19210 +Export 2020 : + Name : ?SetAllowWasmCodeGenerationCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z@Z + VA : 0xC18BF0 +Export 2021 : + Name : ?SetAtomicsWaitCallback@Isolate@v8@@QEAAXP6AXW4AtomicsWaitEvent@12@V?$Local@VSharedArrayBuffer@v8@@@2@_K_JNPEAVAtomicsWaitWakeHandle@12@PEAX@Z5@Z + VA : 0x552F300 +Export 2022 : + Name : ?SetBatterySaverMode@Isolate@v8@@QEAAX_N@Z + VA : 0x552F530 +Export 2023 : + Name : ?SetCallAsFunctionHandler@ObjectTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@@Z + VA : 0xC082B0 +Export 2024 : + Name : ?SetCallHandler@FunctionTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z + VA : 0xC06180 +Export 2025 : + Name : ?SetCaptureMessage@TryCatch@v8@@QEAAX_N@Z + VA : 0xC0BD10 +Export 2026 : + Name : ?SetCaptureStackTraceForUncaughtExceptions@Isolate@v8@@QEAAX_NHW4StackTraceOptions@StackTrace@2@@Z + VA : 0x552FB30 +Export 2027 : + Name : ?SetClassName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + VA : 0x39877A0 +Export 2028 : + Name : ?SetCodeLike@ObjectTemplate@v8@@QEAAXXZ + VA : 0x551DF80 +Export 2029 : + Name : ?SetCompiledModuleBytes@WasmStreaming@v8@@QEAA_NPEBE_K@Z + VA : 0x5917890 +Export 2030 : + Name : ?SetContinuationPreservedEmbedderData@Isolate@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + VA : 0xC184C0 +Export 2031 : + Name : ?SetCounterFunction@Isolate@v8@@QEAAXP6APEAHPEBD@Z@Z + VA : 0x552EE50 +Export 2032 : + Name : ?SetCppgcReference@node@@YAXPEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEAX@Z + VA : 0x21BF010 +Export 2033 : + Name : ?SetCreateHistogramFunction@Isolate@v8@@QEAAXP6APEAXPEBDHH_K@Z@Z + VA : 0x552EE60 +Export 2034 : + Name : ?SetData@Isolate@v8@@QEAAXIPEAX@Z + VA : 0xBFF4E0 +Export 2035 : + Name : ?SetDcheckErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z + VA : 0x551CD40 +Export 2036 : + Name : ?SetDefaultContext@SnapshotCreator@v8@@QEAAXV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@USerializeContextDataCallback@2@USerializeAPIWrapperCallback@2@@Z + VA : 0x551CC20 +Export 2037 : + Name : ?SetDetachKey@ArrayBuffer@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + VA : 0x552C1B0 +Export 2038 : + Name : ?SetEmbedderData@Context@v8@@QEAAXHV?$Local@VValue@v8@@@2@@Z + VA : 0x551D2B0 +Export 2039 : + Name : ?SetEmbedderRootsHandler@Isolate@v8@@QEAAXPEAVEmbedderRootsHandler@2@@Z + VA : 0xC17F70 +Export 2040 : + Name : ?SetEntropySource@V8@v8@@SAXP6A_NPEAE_K@Z@Z + VA : 0xC12730 +Export 2041 : + Name : ?SetErrorMessageForCodeGenerationFromStrings@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + VA : 0xC14360 +Export 2042 : + Name : ?SetErrorMessageForWasmCodeGeneration@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + VA : 0xC143E0 +Export 2043 : + Name : ?SetEventLogger@Isolate@v8@@QEAAXP6AXPEBDH@Z@Z + VA : 0x552F2D0 +Export 2044 : + Name : ?SetExceptionContext@FunctionTemplate@v8@@QEAAXW4ExceptionContext@2@@Z + VA : 0x3987A00 +Export 2045 : + Name : ?SetExceptionPropagationCallback@Isolate@v8@@QEAAXP6AXVExceptionPropagationMessage@2@@Z@Z + VA : 0xC187D0 +Export 2046 : + Name : ?SetFailedAccessCheckCallbackFunction@Isolate@v8@@QEAAXP6AXV?$Local@VObject@v8@@@2@W4AccessType@2@V?$Local@VValue@v8@@@2@@Z@Z + VA : 0xC19200 +Export 2047 : + Name : ?SetFatalErrorHandler@Isolate@v8@@QEAAXP6AXPEBD0@Z@Z + VA : 0x552EE30 +Export 2048 : + Name : ?SetFatalErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z + VA : 0x551CD50 +Export 2049 : + Name : ?SetFatalMemoryErrorCallback@V8@v8@@SAXP6AXPEBDAEBUOOMDetails@2@@Z@Z + VA : 0xC12720 +Export 2050 : + Name : ?SetFilterETWSessionByURLCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@AEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@@Z@Z + VA : 0xC19280 +Export 2051 : + Name : ?SetFlagsFromCommandLine@V8@v8@@SAXPEAHPEAPEAD_N@Z + VA : 0x551CD80 +Export 2052 : + Name : ?SetFlagsFromString@V8@v8@@SAXPEBD@Z + VA : 0x551CD60 +Export 2053 : + Name : ?SetFlagsFromString@V8@v8@@SAXPEBD_K@Z + VA : 0xC056C0 +Export 2054 : + Name : ?SetGetDetachednessCallback@HeapProfiler@v8@@QEAAXP6A?AW4Detachedness@Node@EmbedderGraph@2@PEAVIsolate@2@AEBV?$Local@VValue@v8@@@2@GPEAX@Z2@Z + VA : 0xC19EB0 +Export 2055 : + Name : ?SetGetExternallyAllocatedMemoryInBytesCallback@Isolate@v8@@QEAAXP6A_KXZ@Z + VA : 0x552EC20 +Export 2056 : + Name : ?SetHandler@ObjectTemplate@v8@@QEAAXAEBUIndexedPropertyHandlerConfiguration@2@@Z + VA : 0xC080A0 +Export 2057 : + Name : ?SetHandler@ObjectTemplate@v8@@QEAAXAEBUNamedPropertyHandlerConfiguration@2@@Z + VA : 0xC06C70 +Export 2058 : + Name : ?SetHostCreateShadowRealmContextCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VContext@v8@@@2@V?$Local@VContext@v8@@@2@@Z@Z + VA : 0xC18380 +Export 2059 : + Name : ?SetHostImportModuleDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@@Z@Z + VA : 0xC18360 +Export 2060 : + Name : ?SetHostImportModuleWithPhaseDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@W4ModuleImportPhase@2@V?$Local@VFixedArray@v8@@@2@@Z@Z + VA : 0x552EF00 +Export 2061 : + Name : ?SetHostInitializeImportMetaObjectCallback@Isolate@v8@@QEAAXP6AXV?$Local@VContext@v8@@@2@V?$Local@VModule@v8@@@2@V?$Local@VObject@v8@@@2@@Z@Z + VA : 0xC18370 +Export 2062 : + Name : ?SetId@DiscardedSamplesDelegate@v8@@AEAAXI@Z + VA : 0xBFFE60 +Export 2063 : + Name : ?SetIdle@Isolate@v8@@QEAAX_N@Z + VA : 0x398CB80 +Export 2064 : + Name : ?SetImmutableProto@ObjectTemplate@v8@@QEAAXXZ + VA : 0xC085A0 +Export 2065 : + Name : ?SetImportModuleDynamicallyCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x21850A0 +Export 2066 : + Name : ?SetInitializeImportMetaObjectCallback@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x2185520 +Export 2067 : + Name : ?SetIntegrityLevel@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@W4IntegrityLevel@2@@Z + VA : 0xC0FC60 +Export 2068 : + Name : ?SetInterfaceName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + VA : 0x39878D0 +Export 2069 : + Name : ?SetInternalField@Object@v8@@QEAAXHV?$Local@VData@v8@@@2@@Z + VA : 0xC121B0 +Export 2070 : + Name : ?SetInternalFieldCount@ObjectTemplate@v8@@QEAAXH@Z + VA : 0xC084C0 +Export 2071 : + Name : ?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VModule@v8@@@2@@Z + VA : 0xC121B0 +Export 2072 : + Name : ?SetInternalFieldForNodeCore@Object@v8@@QEAAXHV?$Local@VUnboundScript@v8@@@2@@Z + VA : 0xC121B0 +Export 2073 : + Name : ?SetIntrinsicDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@W4Intrinsic@2@W4PropertyAttribute@2@@Z + VA : 0xC06B80 +Export 2074 : + Name : ?SetIsLoading@Isolate@v8@@QEAAX_N@Z + VA : 0xC18BB0 +Export 2075 : + Name : ?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@@Z + VA : 0x21EB6D0 +Export 2076 : + Name : ?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@AEBUIsolateSettings@1@@Z + VA : 0x21EB690 +Export 2077 : + Name : ?SetJavaScriptCompileHintsMagicEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + VA : 0x552F8D0 +Export 2078 : + Name : ?SetJitCodeEventHandler@Isolate@v8@@QEAAXW4JitCodeEventOptions@2@P6AXPEBUJitCodeEvent@2@@Z@Z + VA : 0x552EE80 +Export 2079 : + Name : ?SetKnownSerializedValue@V8SerializationDuplicateTracker@v8_inspector@@AEAAXV?$Local@VValue@v8@@@v8@@PEAVDictionaryValue@protocol@2@@Z + VA : 0x597E6A0 +Export 2080 : + Name : ?SetLazyDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@6@Z + VA : 0x3989D30 +Export 2081 : + Name : ?SetLazyDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@5@Z + VA : 0x3987B80 +Export 2082 : + Name : ?SetLength@FunctionTemplate@v8@@QEAAXH@Z + VA : 0xC06900 +Export 2083 : + Name : ?SetMaxAsyncTaskStacksForTest@v8_inspector@@YAXPEAVV8Inspector@1@H@Z + VA : 0x596D960 +Export 2084 : + Name : ?SetMetricsRecorder@Isolate@v8@@QEAAXAEBV?$shared_ptr@VRecorder@metrics@v8@@@__Cr@std@@@Z + VA : 0xC18800 +Export 2085 : + Name : ?SetMicrotaskQueue@Context@v8@@QEAAXPEAVMicrotaskQueue@2@@Z + VA : 0x5528100 +Export 2086 : + Name : ?SetMicrotasksPolicy@Isolate@v8@@QEAAXW4MicrotasksPolicy@2@@Z + VA : 0xC187E0 +Export 2087 : + Name : ?SetModifyCodeGenerationFromStringsCallback@Isolate@v8@@QEAAXP6A?AUModifyCodeGenerationFromStringsResult@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@_N@Z@Z + VA : 0xC18BE0 +Export 2088 : + Name : ?SetMoreFunctionsCanBeSerializedCallback@WasmStreaming@v8@@QEAAXV?$function@$$A6AXVCompiledWasmModule@v8@@@Z@__Cr@std@@@Z + VA : 0xF50E20 +Export 2089 : + Name : ?SetName@Function@v8@@QEAAXV?$Local@VString@v8@@@2@@Z + VA : 0xC11E20 +Export 2090 : + Name : ?SetNativeDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z4W4PropertyAttribute@2@W4SideEffectType@2@8@Z + VA : 0xC10310 +Export 2091 : + Name : ?SetNativeDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4SideEffectType@2@7@Z + VA : 0x551D750 +Export 2092 : + Name : ?SetOOMErrorHandler@Isolate@v8@@QEAAXP6AXPEBDAEBUOOMDetails@2@@Z@Z + VA : 0x552EE40 +Export 2093 : + Name : ?SetPrepareStackTraceCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VArray@v8@@@2@@Z@Z + VA : 0x552EF10 +Export 2094 : + Name : ?SetPriority@Isolate@v8@@QEAAXW4Priority@12@@Z + VA : 0xC18BA0 +Export 2095 : + Name : ?SetPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0xC0F090 +Export 2096 : + Name : ?SetPrivate@Template@v8@@QEAAXV?$Local@VPrivate@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z + VA : 0x551D4D0 +Export 2097 : + Name : ?SetProcessExitHandler@node@@YAXPEAVEnvironment@1@$$QEAV?$function@$$A6AXPEAVEnvironment@node@@H@Z@__Cr@std@@@Z + VA : 0x21ED4C0 +Export 2098 : + Name : ?SetPromiseHook@Isolate@v8@@QEAAXP6AXW4PromiseHookType@2@V?$Local@VPromise@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z + VA : 0x552F310 +Export 2099 : + Name : ?SetPromiseHooks@Context@v8@@QEAAXV?$Local@VFunction@v8@@@2@000@Z + VA : 0xC145C0 +Export 2100 : + Name : ?SetPromiseRejectCallback@Isolate@v8@@QEAAXP6AXVPromiseRejectMessage@2@@Z@Z + VA : 0xC187C0 +Export 2101 : + Name : ?SetPrototype@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x3989990 +Export 2102 : + Name : ?SetPrototypeProviderTemplate@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z + VA : 0x551D4E0 +Export 2103 : + Name : ?SetPrototypeV2@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5524BF0 +Export 2104 : + Name : ?SetRAILMode@Isolate@v8@@QEAAXW4RAILMode@2@@Z + VA : 0x552F570 +Export 2105 : + Name : ?SetReturnAddressLocationResolver@V8@v8@@SAXP6A_K_K@Z@Z + VA : 0x5527B40 +Export 2106 : + Name : ?SetSamplingInterval@CpuProfiler@v8@@QEAAXH@Z + VA : 0x55312A0 +Export 2107 : + Name : ?SetSecurityToken@Context@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + VA : 0xC14010 +Export 2108 : + Name : ?SetSharedArrayBufferConstructorEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + VA : 0xC18C60 +Export 2109 : + Name : ?SetSnapshotDataBlob@V8@v8@@SAXPEAVStartupData@2@@Z + VA : 0xC056A0 +Export 2110 : + Name : ?SetStackLimit@Isolate@v8@@QEAAX_K@Z + VA : 0xC18BC0 +Export 2111 : + Name : ?SetSupportsLegacyWireFormat@ValueDeserializer@v8@@QEAAX_N@Z + VA : 0xC0D390 +Export 2112 : + Name : ?SetSyntheticExport@ModuleWrap@loader@node@@CAXAEBV?$FunctionCallbackInfo@VValue@v8@@@v8@@@Z + VA : 0x21856D0 +Export 2113 : + Name : ?SetSyntheticModuleExport@Module@v8@@QEAA?AV?$Maybe@_N@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x551EE70 +Export 2114 : + Name : ?SetTracingController@node@@YAXPEAVTracingController@v8@@@Z + VA : 0x2131350 +Export 2115 : + Name : ?SetTreatArrayBufferViewsAsHostObjects@ValueSerializer@v8@@QEAAX_N@Z + VA : 0x5520A20 +Export 2116 : + Name : ?SetUnhandledExceptionCallback@V8@v8@@SAXP6AHPEAU_EXCEPTION_POINTERS@@@Z@Z + VA : 0xC12710 +Export 2117 : + Name : ?SetUrl@WasmStreaming@v8@@QEAAXPEBD_K@Z + VA : 0x5917980 +Export 2118 : + Name : ?SetUseCounterCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4UseCounterFeature@12@@Z@Z + VA : 0xC187F0 +Export 2119 : + Name : ?SetUsePreciseSampling@CpuProfiler@v8@@QEAAX_N@Z + VA : 0x55312B0 +Export 2120 : + Name : ?SetVerbose@TryCatch@v8@@QEAAX_N@Z + VA : 0x39889F0 +Export 2121 : + Name : ?SetWasmAsyncResolvePromiseCallback@Isolate@v8@@QEAAXP6AXPEAV12@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@V?$Local@VValue@v8@@@2@W4WasmAsyncSuccess@2@@Z@Z + VA : 0xC18C30 +Export 2122 : + Name : ?SetWasmImportedStringsEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + VA : 0xC18C40 +Export 2123 : + Name : ?SetWasmInstanceCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + VA : 0xC18C10 +Export 2124 : + Name : ?SetWasmJSPIEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z + VA : 0xC18C50 +Export 2125 : + Name : ?SetWasmLoadSourceMapCallback@Isolate@v8@@QEAAXP6A?AV?$Local@VString@v8@@@2@PEAV12@PEBD@Z@Z + VA : 0x552F8C0 +Export 2126 : + Name : ?SetWasmModuleCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + VA : 0xC18C00 +Export 2127 : + Name : ?SetWasmStreamingCallback@Isolate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z + VA : 0xC18C20 +Export 2128 : + Name : ?ShouldAbortOnUncaughtException@node@@YA_NPEAVIsolate@v8@@@Z + VA : 0x21EAA50 +Export 2129 : + Name : ?ShouldMergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEBA_NXZ + VA : 0xC0B130 +Export 2130 : + Name : ?ShouldThrowOnError@internal@v8@@YA_NPEAVIsolate@12@@Z + VA : 0x5522010 +Export 2131 : + Name : ?Shrink@JitPageReference@ThreadIsolation@internal@v8@@QEAAXPEAVJitPage@234@@Z + VA : 0xC61210 +Export 2132 : + Name : ?ShutdownProcess@cppgc@@YAXXZ + VA : 0x5950DA0 +Export 2133 : + Name : ?Size@JitPageReference@ThreadIsolation@internal@v8@@QEBA_KXZ + VA : 0x5583550 +Export 2134 : + Name : ?Size@Map@v8@@QEBA_KXZ + VA : 0x5529B80 +Export 2135 : + Name : ?Size@Set@v8@@QEBA_KXZ + VA : 0x5529B80 +Export 2136 : + Name : ?SlowGetAlignedPointerFromEmbedderData@Context@v8@@AEAAPEAXH@Z + VA : 0x551D3B0 +Export 2137 : + Name : ?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXH@Z + VA : 0x551C550 +Export 2138 : + Name : ?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXPEAVIsolate@2@H@Z + VA : 0x551C430 +Export 2139 : + Name : ?SlowGetEmbedderData@Context@v8@@AEAA?AV?$Local@VValue@v8@@@2@H@Z + VA : 0x551D1C0 +Export 2140 : + Name : ?SlowGetInternalField@Object@v8@@AEAA?AV?$Local@VData@v8@@@2@H@Z + VA : 0x551C2B0 +Export 2141 : + Name : ?SourceMapUrl@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0xBFF090 +Export 2142 : + Name : ?SourceOffsetToLocation@Module@v8@@QEBA?AVLocation@2@H@Z + VA : 0xC09610 +Export 2143 : + Name : ?SourceTextAvailable@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXPEAVIsolate@3@V?$Local@VString@v8@@@3@AEBVScriptOrigin@3@@Z + VA : 0xC0B090 +Export 2144 : + Name : ?SpinEventLoop@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z + VA : 0x21EF260 +Export 2145 : + Name : ?SplitJitPage@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + VA : 0x5583BF0 +Export 2146 : + Name : ?SplitJitPageLocked@ThreadIsolation@internal@v8@@CA?AVJitPageReference@123@_K0@Z + VA : 0xC62100 +Export 2147 : + Name : ?SplitJitPages@ThreadIsolation@internal@v8@@CA?AU?$pair@VJitPageReference@ThreadIsolation@internal@v8@@V1234@@__Cr@std@@_K000@Z + VA : 0xC62380 +Export 2148 : + Name : ?StackTrace@TryCatch@v8@@QEBA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x551F7C0 +Export 2149 : + Name : ?StackTrace@TryCatch@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x551F5D0 +Export 2150 : + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x55313A0 +Export 2151 : + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z + VA : 0x5531500 +Export 2152 : + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@_N@Z + VA : 0x5531490 +Export 2153 : + Name : ?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x55312C0 +Export 2154 : + Name : ?Start@node@@YAHHQEAPEAD@Z + VA : 0x217E460 +Export 2155 : + Name : ?StartConsumingCodeCache@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x551F2C0 +Export 2156 : + Name : ?StartConsumingCodeCacheOnBackground@ScriptCompiler@v8@@SAPEAVConsumeCodeCacheTask@12@PEAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0xC0B150 +Export 2157 : + Name : ?StartGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ + VA : 0x5952650 +Export 2158 : + Name : ?StartOfAllocationAt@JitPageReference@ThreadIsolation@internal@v8@@QEAA_K_K@Z + VA : 0x5583BA0 +Export 2159 : + Name : ?StartOfJitAllocationAt@ThreadIsolation@internal@v8@@SA?AV?$optional@_K@__Cr@std@@_K@Z + VA : 0x39C5B90 +Export 2160 : + Name : ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@__Cr@std@@@__Cr@std@@@Z + VA : 0x5531580 +Export 2161 : + Name : ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z + VA : 0x55316C0 +Export 2162 : + Name : ?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@_N@Z + VA : 0x5531670 +Export 2163 : + Name : ?StartSamplingHeapProfiler@HeapProfiler@v8@@QEAA_N_KHW4SamplingFlags@12@@Z + VA : 0x5531FB0 +Export 2164 : + Name : ?StartStreaming@ScriptCompiler@v8@@SAPEAVScriptStreamingTask@12@PEAVIsolate@2@PEAVStreamedSource@12@W4ScriptType@2@W4CompileOptions@12@P6A_NHPEAX@Z4@Z + VA : 0xC0AF50 +Export 2165 : + Name : ?StartTrackingHeapObjects@HeapProfiler@v8@@QEAAX_N@Z + VA : 0x5531F90 +Export 2166 : + Name : ?State@Promise@v8@@QEAA?AW4PromiseState@12@XZ + VA : 0x552B4F0 +Export 2167 : + Name : ?SteeleMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z + VA : 0xBFF890 +Export 2168 : + Name : ?SteeleMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z + VA : 0xF80620 +Export 2169 : + Name : ?SteeleMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z + VA : 0x5952720 +Export 2170 : + Name : ?Step@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DE0 +Export 2171 : + Name : ?Stop@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@I@Z + VA : 0x5531750 +Export 2172 : + Name : ?Stop@node@@YAHPEAVEnvironment@1@W4Flags@StopFlags@1@@Z + VA : 0x217E970 +Export 2173 : + Name : ?StopProfiling@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@V?$Local@VString@v8@@@2@@Z + VA : 0x5531740 +Export 2174 : + Name : ?StopSamplingHeapProfiler@HeapProfiler@v8@@QEAAXXZ + VA : 0x5531FC0 +Export 2175 : + Name : ?StopTrackingHeapObjects@HeapProfiler@v8@@QEAAXXZ + VA : 0xC19EA0 +Export 2176 : + Name : ?StrictEquals@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z + VA : 0x55239A0 +Export 2177 : + Name : ?StringEquals@String@v8@@QEBA_NV?$Local@VString@v8@@@2@@Z + VA : 0xC14F70 +Export 2178 : + Name : ?Stringify@JSON@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z + VA : 0x5520460 +Export 2179 : + Name : ?SupportsCppClassNamesAsObjectNames@NameProvider@cppgc@@SA_NXZ + VA : 0x1F34E0 +Export 2180 : + Name : ?SyntaxError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x5530350 +Export 2181 : + Name : ?SyntheticModuleEvaluationStepsCallback@ModuleWrap@loader@node@@CA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@5@V?$Local@VModule@v8@@@5@@Z + VA : 0x21814F0 +Export 2182 : + Name : ?SystemClockTimeMillis@Platform@v8@@KANXZ + VA : 0x56878D0 +Export 2183 : + Name : ?TableSlotForTesting@GCInfoTable@internal@cppgc@@QEAAAEAUGCInfo@23@G@Z + VA : 0xBFFBA0 +Export 2184 : + Name : ?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@AEBUHeapSnapshotOptions@12@@Z + VA : 0x5531EB0 +Export 2185 : + Name : ?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@PEAVActivityControl@2@PEAVObjectNameResolver@12@_N2@Z + VA : 0x5531F00 +Export 2186 : + Name : ?TearDownOncePerProcess@node@@YAXXZ + VA : 0x217D770 +Export 2187 : + Name : ?Terminate@CppHeap@v8@@QEAAXXZ + VA : 0xC97E10 +Export 2188 : + Name : ?TerminateExecution@Isolate@v8@@QEAAXXZ + VA : 0x552EC30 +Export 2189 : + Name : ?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@1@Z + VA : 0xC17260 +Export 2190 : + Name : ?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z + VA : 0x552B170 +Export 2191 : + Name : ?ThrowError@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z + VA : 0x552E9C0 +Export 2192 : + Name : ?ThrowException@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V32@@Z + VA : 0xC17E40 +Export 2193 : + Name : ?ToArrayIndex@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x55235E0 +Export 2194 : + Name : ?ToBigInt@Value@v8@@QEBA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521480 +Export 2195 : + Name : ?ToBoolean@Value@v8@@QEBA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@@Z + VA : 0x5521A40 +Export 2196 : + Name : ?ToDetailString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521150 +Export 2197 : + Name : ?ToISOString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5529440 +Export 2198 : + Name : ?ToInt32@Value@v8@@QEBA?AV?$MaybeLocal@VInt32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521C30 +Export 2199 : + Name : ?ToInteger@Value@v8@@QEBA?AV?$MaybeLocal@VInteger@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521A80 +Export 2200 : + Name : ?ToLocalEmpty@api_internal@v8@@YAXXZ + VA : 0x551CFA0 +Export 2201 : + Name : ?ToNumber@Value@v8@@QEBA?AV?$MaybeLocal@VNumber@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0DEE0 +Export 2202 : + Name : ?ToNumeric@Value@v8@@QEBA?AV?$MaybeLocal@VNumeric@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521840 +Export 2203 : + Name : ?ToObject@Value@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521290 +Export 2204 : + Name : ?ToPrimitive@Value@v8@@QEBA?AV?$MaybeLocal@VPrimitive@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521650 +Export 2205 : + Name : ?ToString@SourceLocation@v8@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + VA : 0xBFE970 +Export 2206 : + Name : ?ToString@V8StackTraceId@v8_inspector@@QEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ + VA : 0xFD5270 +Export 2207 : + Name : ?ToString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x3988C80 +Export 2208 : + Name : ?ToUTCString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5529540 +Export 2209 : + Name : ?ToUint32@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z + VA : 0x5521DE0 +Export 2210 : + Name : ?ToWordsArray@BigInt@v8@@QEBAXPEAH0PEA_K@Z + VA : 0x552E890 +Export 2211 : + Name : ?ToggleMainThreadMarking@StandaloneTestingHeap@testing@cppgc@@QEAAX_N@Z + VA : 0x59526A0 +Export 2212 : + Name : ?TotalAllocatedObjectSize@ProcessHeapStatistics@cppgc@@SA_KXZ + VA : 0xBFFC10 +Export 2213 : + Name : ?TotalAllocatedSpace@ProcessHeapStatistics@cppgc@@SA_KXZ + VA : 0xBFFC20 +Export 2214 : + Name : ?TransferArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z + VA : 0x5520C90 +Export 2215 : + Name : ?TransferArrayBuffer@ValueSerializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z + VA : 0x5520A30 +Export 2216 : + Name : ?TransferSharedArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VSharedArrayBuffer@v8@@@2@@Z + VA : 0x5520C90 +Export 2217 : + Name : ?TransitionDependencyOffTheRecord@CompilationDependencies@compiler@internal@v8@@QEBAPEBVCompilationDependency@234@VMapRef@234@@Z + VA : 0x3E4E0C0 +Export 2218 : + Name : ?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVEnvironment@1@PEBD1AEBV234@V?$Local@VValue@v8@@@v8@@@Z + VA : 0x2138E00 +Export 2219 : + Name : ?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@PEAVIsolate@v8@@PEBD1AEBV234@V?$Local@VValue@v8@@@6@@Z + VA : 0x2138D90 +Export 2220 : + Name : ?TryAllocateNodeFromFreeList@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z + VA : 0xBFF9F0 +Export 2221 : + Name : ?TryGetCurrent@Isolate@v8@@SAPEAV12@XZ + VA : 0x398A420 +Export 2222 : + Name : ?TryHandleWebAssemblyTrapWindows@v8@@YA_NPEAU_EXCEPTION_POINTERS@@@Z + VA : 0x5527B30 +Export 2223 : + Name : ?TryLookupJitPage@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z + VA : 0x55835C0 +Export 2224 : + Name : ?TryLookupJitPageLocked@ThreadIsolation@internal@v8@@CA?AV?$optional@VJitPageReference@ThreadIsolation@internal@v8@@@__Cr@std@@_K0@Z + VA : 0xC60F80 +Export 2225 : + Name : ?TryResetRoot@EmbedderRootsHandler@v8@@UEAA_NAEBV?$TracedReference@VValue@v8@@@2@@Z + VA : 0xBFF1F0 +Export 2226 : + Name : ?TryUnwindV8Frames@Unwinder@v8@@SA_NAEBUJSEntryStubs@2@_KPEBUMemoryRange@2@PEAURegisterState@2@PEBX@Z + VA : 0x55B2AA0 +Export 2227 : + Name : ?TypeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0xC199E0 +Export 2228 : + Name : ?TypeOf@Value@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z + VA : 0x55239C0 +Export 2229 : + Name : ?UVException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD111@Z + VA : 0x2FEB9F0 +Export 2230 : + Name : ?Uint32Value@Value@v8@@QEBA?AV?$Maybe@I@2@V?$Local@VContext@v8@@@2@@Z + VA : 0xC0E740 +Export 2231 : + Name : ?Uint64Value@BigInt@v8@@QEBA_KPEA_N@Z + VA : 0x552E860 +Export 2232 : + Name : ?Unaccount@ExternalStringResourceBase@String@v8@@UEAAXPEAVIsolate@3@@Z + VA : 0x1EA0F0 +Export 2233 : + Name : ?Unlock@ExternalStringResourceBase@String@v8@@MEBAXXZ + VA : 0x1EA0F0 +Export 2234 : + Name : ?Unpack@WasmStreaming@v8@@SA?AV?$shared_ptr@VWasmStreaming@v8@@@__Cr@std@@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z + VA : 0x5917A90 +Export 2235 : + Name : ?UnregisterAllocation@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K@Z + VA : 0x5583930 +Export 2236 : + Name : ?UnregisterAllocationsExcept@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0AEBV?$vector@_KV?$allocator@_K@__Cr@std@@@__Cr@std@@@Z + VA : 0x5583990 +Export 2237 : + Name : ?UnregisterJitAllocationForTesting@ThreadIsolation@internal@v8@@SAX_K0@Z + VA : 0x5583CD0 +Export 2238 : + Name : ?UnregisterJitPage@ThreadIsolation@internal@v8@@SAX_K0@Z + VA : 0x39C4F10 +Export 2239 : + Name : ?UnregisterRange@JitPageReference@ThreadIsolation@internal@v8@@QEAAX_K0@Z + VA : 0x39C4B70 +Export 2240 : + Name : ?UnregisterWasmAllocation@ThreadIsolation@internal@v8@@SAX_K0@Z + VA : 0xC62000 +Export 2241 : + Name : ?Unwrap@Object@v8@@CAPEAXPEAVIsolate@2@_KUCppHeapPointerTagRange@2@@Z + VA : 0x5527AE0 +Export 2242 : + Name : ?Update@TypecheckWitness@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z + VA : 0xC168C0 +Export 2243 : + Name : ?UpdateDataCache@ExternalOneByteStringResource@String@v8@@QEAAXXZ + VA : 0xC12190 +Export 2244 : + Name : ?UpdateDataCache@ExternalStringResource@String@v8@@QEAAXXZ + VA : 0xC12190 +Export 2245 : + Name : ?UpdateLoadStartTime@Isolate@v8@@QEAAXXZ + VA : 0x552F580 +Export 2246 : + Name : ?UseDefaultSecurityToken@Context@v8@@QEAAXXZ + VA : 0xC14090 +Export 2247 : + Name : ?UseDetailedSourcePositionsForProfiling@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z + VA : 0x5531760 +Export 2248 : + Name : ?Utf8Length@String@v8@@QEBAHPEAVIsolate@2@@Z + VA : 0x398B590 +Export 2249 : + Name : ?V8Node@EmbedderGraph@v8@@UEAAPEAVNode@12@AEBV?$Local@VData@v8@@@2@@Z + VA : 0x5531FF0 +Export 2250 : + Name : ?ValidateIndex@FastApiTypedArrayBase@v8@@QEBAX_K@Z + VA : 0x48C0B20 +Export 2251 : + Name : ?Value@Boolean@v8@@QEBA_NXZ + VA : 0x398C320 +Export 2252 : + Name : ?Value@External@v8@@QEBAPEAXXZ + VA : 0xC14C30 +Export 2253 : + Name : ?Value@Int32@v8@@QEBAHXZ + VA : 0x398C340 +Export 2254 : + Name : ?Value@Integer@v8@@QEBA_JXZ + VA : 0x5527820 +Export 2255 : + Name : ?Value@Number@v8@@QEBANXZ + VA : 0x398C300 +Export 2256 : + Name : ?Value@Uint32@v8@@QEBAIXZ + VA : 0x398C350 +Export 2257 : + Name : ?ValueOf@BigIntObject@v8@@QEBA?AV?$Local@VBigInt@v8@@@2@XZ + VA : 0x5527790 +Export 2258 : + Name : ?ValueOf@BooleanObject@v8@@QEBA_NXZ + VA : 0x5528E90 +Export 2259 : + Name : ?ValueOf@Date@v8@@QEBANXZ + VA : 0x5529430 +Export 2260 : + Name : ?ValueOf@NumberObject@v8@@QEBANXZ + VA : 0x5528D10 +Export 2261 : + Name : ?ValueOf@StringObject@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ + VA : 0x5527790 +Export 2262 : + Name : ?ValueOf@SymbolObject@v8@@QEBA?AV?$Local@VSymbol@v8@@@2@XZ + VA : 0x5527790 +Export 2263 : + Name : ?VerifyExternalStringResource@String@v8@@AEBAXPEAVExternalStringResource@12@@Z + VA : 0x5527350 +Export 2264 : + Name : ?VerifyExternalStringResourceBase@String@v8@@AEBAXPEAVExternalStringResourceBase@12@W4Encoding@12@@Z + VA : 0x5527450 +Export 2265 : + Name : ?VerifyHandleIsNonEmpty@internal@v8@@YAX_N@Z + VA : 0x551CF10 +Export 2266 : + Name : ?VerifyHostDefinedOptions@ScriptOrigin@v8@@AEBAXXZ + VA : 0x3985C80 +Export 2267 : + Name : ?VerifyOnStack@?$StackAllocated@$00@api_internal@v8@@IEBAXXZ + VA : 0x48C0B20 +Export 2268 : + Name : ?Visit@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@@Z + VA : 0x48C0B20 +Export 2269 : + Name : ?VisitEphemeron@Visitor@cppgc@@MEAAXPEBX0UTraceDescriptor@2@@Z + VA : 0x48C0B20 +Export 2270 : + Name : ?VisitExternalResources@Isolate@v8@@QEAAXPEAVExternalResourceVisitor@2@@Z + VA : 0x552FB40 +Export 2271 : + Name : ?VisitExternalString@ExternalResourceVisitor@v8@@UEAAXV?$Local@VString@v8@@@2@@Z + VA : 0x1EA0F0 +Export 2272 : + Name : ?VisitMultipleCompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z + VA : 0x551BAF0 +Export 2273 : + Name : ?VisitMultipleUncompressedMember@Visitor@cppgc@@MEAAXPEBX_KP6A?AUTraceDescriptor@2@0@Z@Z + VA : 0x551BA50 +Export 2274 : + Name : ?VisitPersistentHandle@PersistentHandleVisitor@v8@@UEAAXPEAV?$Persistent@VValue@v8@@V?$NonCopyablePersistentTraits@VValue@v8@@@2@@2@G@Z + VA : 0x1EA0F0 +Export 2275 : + Name : ?VisitRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@AEBVSourceLocation@v8@@@Z + VA : 0x1EA0F0 +Export 2276 : + Name : ?VisitWeak@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@P6AXAEBVLivenessBroker@2@0@Z0@Z + VA : 0x48C0B20 +Export 2277 : + Name : ?VisitWeakContainer@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@1P6AXAEBVLivenessBroker@2@0@Z0@Z + VA : 0x48C0B20 +Export 2278 : + Name : ?VisitWeakRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@P6AXAEBVLivenessBroker@3@0@Z0AEBVSourceLocation@v8@@@Z + VA : 0x48C0B20 +Export 2279 : + Name : ?Wake@AtomicsWaitWakeHandle@Isolate@v8@@QEAAXXZ + VA : 0x552F2F0 +Export 2280 : + Name : ?WasDetached@ArrayBuffer@v8@@QEBA_NXZ + VA : 0xC17600 +Export 2281 : + Name : ?WasmCompileError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x55304C0 +Export 2282 : + Name : ?WasmLinkError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x5530630 +Export 2283 : + Name : ?WasmRuntimeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V32@@Z + VA : 0x55307A0 +Export 2284 : + Name : ?WinapiErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z + VA : 0x2FEC120 +Export 2285 : + Name : ?WordCount@BigInt@v8@@QEBAHXZ + VA : 0x552E880 +Export 2286 : + Name : ?Wrap@Object@v8@@CAXPEAVIsolate@2@_KW4CppHeapPointerTag@2@PEAX@Z + VA : 0x3985A50 +Export 2287 : + Name : ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$BasicTracedReference@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + VA : 0xBFE8B0 +Export 2288 : + Name : ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$Local@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + VA : 0xBFE8B0 +Export 2289 : + Name : ?Wrap@Object@v8@@SAXPEAVIsolate@2@AEBV?$PersistentBase@VObject@v8@@@2@PEAXW4CppHeapPointerTag@2@@Z + VA : 0xBFE8B0 +Export 2290 : + Name : ?Write@String@v8@@QEBAHPEAVIsolate@2@PEAGHHH@Z + VA : 0x398C250 +Export 2291 : + Name : ?WriteDouble@ValueSerializer@v8@@QEAAXN@Z + VA : 0x5520A50 +Export 2292 : + Name : ?WriteHeader@ValueSerializer@v8@@QEAAXXZ + VA : 0xC0CE20 +Export 2293 : + Name : ?WriteHeapStatsChunk@OutputStream@v8@@UEAA?AW4WriteResult@12@PEAUHeapStatsUpdate@2@H@Z + VA : 0x48D1280 +Export 2294 : + Name : ?WriteHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z + VA : 0x5520730 +Export 2295 : + Name : ?WriteOneByte@String@v8@@QEBAHPEAVIsolate@2@PEAEHHH@Z + VA : 0x398C1A0 +Export 2296 : + Name : ?WriteProtectMemory@ThreadIsolation@internal@v8@@SA_N_K0W4Permission@PageAllocator@3@@Z + VA : 0x2D0F40 +Export 2297 : + Name : ?WriteRawBytes@ValueSerializer@v8@@QEAAXPEBX_K@Z + VA : 0x3988AB0 +Export 2298 : + Name : ?WriteUint32@ValueSerializer@v8@@QEAAXI@Z + VA : 0xC0D090 +Export 2299 : + Name : ?WriteUint64@ValueSerializer@v8@@QEAAX_K@Z + VA : 0x5520A40 +Export 2300 : + Name : ?WriteUtf8@String@v8@@QEBAHPEAVIsolate@2@PEADHPEAHH@Z + VA : 0x398B930 +Export 2301 : + Name : ?WriteValue@ValueSerializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z + VA : 0xC0CE30 +Export 2302 : + Name : ?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB + VA : 0xB093DD8 +Export 2303 : + Name : ?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0x208AE0 +Export 2304 : + Name : ?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0x208AE0 +Export 2305 : + Name : ?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0x208AE0 +Export 2306 : + Name : ?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0x208AE0 +Export 2307 : + Name : ?__annotate_contiguous_container@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z + VA : 0x1EA0F0 +Export 2308 : + Name : ?__annotate_contiguous_container@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXPEBX0@Z + VA : 0x1EA0F0 +Export 2309 : + Name : ?__annotate_delete@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + VA : 0x1EA0F0 +Export 2310 : + Name : ?__annotate_delete@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + VA : 0x1EA0F0 +Export 2311 : + Name : ?__annotate_increase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + VA : 0x1EA0F0 +Export 2312 : + Name : ?__annotate_increase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + VA : 0x1EA0F0 +Export 2313 : + Name : ?__annotate_new@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + VA : 0x1EA0F0 +Export 2314 : + Name : ?__annotate_new@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + VA : 0x1EA0F0 +Export 2315 : + Name : ?__annotate_shrink@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + VA : 0x1EA0F0 +Export 2316 : + Name : ?__annotate_shrink@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAX_K@Z + VA : 0x1EA0F0 +Export 2317 : + Name : ?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + VA : 0xC01700 +Export 2318 : + Name : ?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC01880 +Export 2319 : + Name : ?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + VA : 0xC03E70 +Export 2320 : + Name : ?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC04040 +Export 2321 : + Name : ?__base_destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC003E0 +Export 2322 : + Name : ?__base_destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z + VA : 0x506D2B0 +Export 2323 : + Name : ?__clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + VA : 0xC00400 +Export 2324 : + Name : ?__clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + VA : 0xC01CD0 +Export 2325 : + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + VA : 0xC00280 +Export 2326 : + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00320 +Export 2327 : + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + VA : 0xC01AE0 +Export 2328 : + Name : ?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC01BA0 +Export 2329 : + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z + VA : 0x1EA0F0 +Export 2330 : + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z + VA : 0x1EA0F0 +Export 2331 : + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z + VA : 0x1EA0F0 +Export 2332 : + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@@Z + VA : 0x1EA0F0 +Export 2333 : + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z + VA : 0x1EA0F0 +Export 2334 : + Name : ?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z + VA : 0x1EA0F0 +Export 2335 : + Name : ?__destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC003E0 +Export 2336 : + Name : ?__destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC01DE0 +Export 2337 : + Name : ?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptFrame@v8@@XZ + VA : 0xC00020 +Export 2338 : + Name : ?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptFrame@v8@@XZ + VA : 0xC00020 +Export 2339 : + Name : ?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAAEAPEAUCpuProfileDeoptInfo@v8@@XZ + VA : 0xC00020 +Export 2340 : + Name : ?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAAEBQEAUCpuProfileDeoptInfo@v8@@XZ + VA : 0xC00020 +Export 2341 : + Name : ?__invariants@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + VA : 0xC01A40 +Export 2342 : + Name : ?__invariants@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + VA : 0xC01A40 +Export 2343 : + Name : ?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@PEAUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00730 +Export 2344 : + Name : ?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@PEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00730 +Export 2345 : + Name : ?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@PEAUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC00730 +Export 2346 : + Name : ?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@PEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC00730 +Export 2347 : + Name : ?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + VA : 0x506D580 +Export 2348 : + Name : ?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + VA : 0xC01A80 +Export 2349 : + Name : ?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + VA : 0xC02220 +Export 2350 : + Name : ?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + VA : 0xC02220 +Export 2351 : + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z + VA : 0x1EA0F0 +Export 2352 : + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + VA : 0x1EA0F0 +Export 2353 : + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + VA : 0x1EA0F0 +Export 2354 : + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@@Z + VA : 0x1EA0F0 +Export 2355 : + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z + VA : 0x1EA0F0 +Export 2356 : + Name : ?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z + VA : 0x1EA0F0 +Export 2357 : + Name : ?__move_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@00@Z + VA : 0xC00BE0 +Export 2358 : + Name : ?__move_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@00@Z + VA : 0xC02A80 +Export 2359 : + Name : ?__recommend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z + VA : 0xC00480 +Export 2360 : + Name : ?__recommend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBA_K_K@Z + VA : 0xC01E30 +Export 2361 : + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptFrame@v8@@AEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@PEAU45@@Z + VA : 0xC00C30 +Export 2362 : + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@@Z + VA : 0xC00910 +Export 2363 : + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAPEAUCpuProfileDeoptInfo@v8@@AEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@PEAU45@@Z + VA : 0xC02B40 +Export 2364 : + Name : ?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@@Z + VA : 0xC02520 +Export 2365 : + Name : ?__throw_length_error@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + VA : 0x48BA400 +Export 2366 : + Name : ?__throw_length_error@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + VA : 0x48BA400 +Export 2367 : + Name : ?__throw_out_of_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + VA : 0x3C30C0 +Export 2368 : + Name : ?__throw_out_of_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEBAXXZ + VA : 0x3C30C0 +Export 2369 : + Name : ?__vallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + VA : 0xC00240 +Export 2370 : + Name : ?__vallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAX_K@Z + VA : 0xC01AA0 +Export 2371 : + Name : ?__vdeallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + VA : 0xC00440 +Export 2372 : + Name : ?__vdeallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@AEAAXXZ + VA : 0xC01DF0 +Export 2373 : + Name : ?allocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAPEA_K_K@Z + VA : 0x3A237C0 +Export 2374 : + Name : ?allocator@GCInfoTable@internal@cppgc@@QEBAAEAVPageAllocator@v8@@XZ + VA : 0x7E8D30 +Export 2375 : + Name : ?allocator@ThreadIsolation@internal@v8@@CAPEAVThreadIsolatedAllocator@3@XZ + VA : 0xBFEF80 +Export 2376 : + Name : ?array_buffer_allocator@CommonEnvironmentSetup@node@@QEBA?AV?$shared_ptr@VArrayBufferAllocator@node@@@__Cr@std@@XZ + VA : 0x21EF2E0 +Export 2377 : + Name : ?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z + VA : 0xC008C0 +Export 2378 : + Name : ?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00750 +Export 2379 : + Name : ?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z + VA : 0xC02500 +Export 2380 : + Name : ?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC022F0 +Export 2381 : + Name : ?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z + VA : 0xC00A60 +Export 2382 : + Name : ?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z + VA : 0xC00A60 +Export 2383 : + Name : ?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z + VA : 0xC027C0 +Export 2384 : + Name : ?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z + VA : 0xC027C0 +Export 2385 : + Name : ?auto_enable@Extension@v8@@QEAA_NXZ + VA : 0x396500 +Export 2386 : + Name : ?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ + VA : 0xC00AA0 +Export 2387 : + Name : ?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ + VA : 0xC00AA0 +Export 2388 : + Name : ?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ + VA : 0xC027F0 +Export 2389 : + Name : ?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ + VA : 0xC027F0 +Export 2390 : + Name : ?begin@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ + VA : 0xBFF050 +Export 2391 : + Name : ?begin@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xBFF050 +Export 2392 : + Name : ?begin@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xBFF050 +Export 2393 : + Name : ?begin@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xBFF050 +Export 2394 : + Name : ?begin@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xBFF050 +Export 2395 : + Name : ?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0xBFF050 +Export 2396 : + Name : ?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0xBFF050 +Export 2397 : + Name : ?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0xBFF050 +Export 2398 : + Name : ?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0xBFF050 +Export 2399 : + Name : ?begin@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ + VA : 0x7D88E0 +Export 2400 : + Name : ?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2401 : + Name : ?beginUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ + VA : 0x48C0B20 +Export 2402 : + Name : ?build_@Version@internal@v8@@0HA + VA : 0xB091370 +Export 2403 : + Name : ?bytecode_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + VA : 0x7D88E0 +Export 2404 : + Name : ?cached_data@ExternalOneByteStringResource@String@v8@@QEBAPEBDXZ + VA : 0xBFE4C0 +Export 2405 : + Name : ?cached_data@ExternalStringResource@String@v8@@QEBAPEBGXZ + VA : 0xBFE4A0 +Export 2406 : + Name : ?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NVStringView@2@@Z + VA : 0xFC7640 +Export 2407 : + Name : ?canExecuteScripts@V8InspectorClient@v8_inspector@@UEAA_NH@Z + VA : 0x490A0F0 +Export 2408 : + Name : ?cancelTimer@V8InspectorClient@v8_inspector@@UEAAXPEAX@Z + VA : 0x48C0B20 +Export 2409 : + Name : ?candidate_@Version@internal@v8@@0_NA + VA : 0xB160154 +Export 2410 : + Name : ?capacity@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + VA : 0xC00420 +Export 2411 : + Name : ?capacity@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + VA : 0xC01CE0 +Export 2412 : + Name : ?card@AgeTable@internal@cppgc@@AEBA_K_K@Z + VA : 0xBFF7A0 +Export 2413 : + Name : ?cbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0xBFF050 +Export 2414 : + Name : ?cbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0xBFF050 +Export 2415 : + Name : ?cend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0xC00740 +Export 2416 : + Name : ?cend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0xC00740 +Export 2417 : + Name : ?characters16@StringView@v8_inspector@@QEBAPEBGXZ + VA : 0x2D4690 +Export 2418 : + Name : ?characters8@StringView@v8_inspector@@QEBAPEBEXZ + VA : 0x2D4690 +Export 2419 : + Name : ?clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + VA : 0xC00400 +Export 2420 : + Name : ?clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + VA : 0xC01CD0 +Export 2421 : + Name : ?code_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + VA : 0x7E8D30 +Export 2422 : + Name : ?code_range_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + VA : 0x7E8D30 +Export 2423 : + Name : ?compilation_details@StreamedSource@ScriptCompiler@v8@@QEAAAEAUCompilationDetails@23@XZ + VA : 0xA82EC0 +Export 2424 : + Name : ?configurable@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0xC0F080 +Export 2425 : + Name : ?connect@V8Inspector@v8_inspector@@UEAA?AV?$unique_ptr@VV8InspectorSession@v8_inspector@@U?$default_delete@VV8InspectorSession@v8_inspector@@@__Cr@std@@@__Cr@std@@HPEAVChannel@12@VStringView@2@W4ClientTrustLevel@12@W4SessionPauseState@12@@Z + VA : 0x2090B0 +Export 2426 : + Name : ?consoleAPIMessage@V8InspectorClient@v8_inspector@@UEAAXHW4MessageErrorLevel@Isolate@v8@@AEBVStringView@2@1IIPEAVV8StackTrace@2@@Z + VA : 0x48C0B20 +Export 2427 : + Name : ?consoleClear@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2428 : + Name : ?consoleTime@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + VA : 0x48C0B20 +Export 2429 : + Name : ?consoleTimeEnd@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + VA : 0x48C0B20 +Export 2430 : + Name : ?consoleTimeStamp@V8InspectorClient@v8_inspector@@UEAAXPEAVIsolate@v8@@V?$Local@VString@v8@@@4@@Z + VA : 0x48C0B20 +Export 2431 : + Name : ?context@CommonEnvironmentSetup@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ + VA : 0x21EF340 +Export 2432 : + Name : ?context@ModuleWrap@loader@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ + VA : 0x2180530 +Export 2433 : + Name : ?cpu_profiler_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ + VA : 0x42A5C0 +Export 2434 : + Name : ?crbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + VA : 0xC008E0 +Export 2435 : + Name : ?crbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + VA : 0xC008E0 +Export 2436 : + Name : ?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@VStringView@2@@Z + VA : 0xFA1830 +Export 2437 : + Name : ?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@__Cr@std@@@__Cr@std@@PEAVIsolate@v8@@PEAVV8InspectorClient@2@@Z + VA : 0xFC1980 +Export 2438 : + Name : ?crend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + VA : 0xC008F0 +Export 2439 : + Name : ?crend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + VA : 0xC008F0 +Export 2440 : + Name : ?currentTimeMS@V8InspectorClient@v8_inspector@@UEAANXZ + VA : 0x595D640 +Export 2441 : + Name : ?data16@ValueView@String@v8@@QEBAPEBGXZ + VA : 0x7D88E0 +Export 2442 : + Name : ?data8@ValueView@String@v8@@QEBAPEBEXZ + VA : 0x7D88E0 +Export 2443 : + Name : ?data@?$MemorySpan@$$CBD@v8@@QEBAPEBDXZ + VA : 0x7E8D30 +Export 2444 : + Name : ?data@?$MemorySpan@$$CBE@v8@@QEBAPEBEXZ + VA : 0x7E8D30 +Export 2445 : + Name : ?data@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBAPEBVCFunction@2@XZ + VA : 0x7E8D30 +Export 2446 : + Name : ?data@?$MemorySpan@E@v8@@QEBAPEAEXZ + VA : 0x7E8D30 +Export 2447 : + Name : ?data@?$MemorySpan@V?$Handle@VObject@internal@v8@@@internal@v8@@@v8@@QEBAPEAV?$Handle@VObject@internal@v8@@@internal@2@XZ + VA : 0x7E8D30 +Export 2448 : + Name : ?data@?$MemorySpan@_K@v8@@QEBAPEA_KXZ + VA : 0x7E8D30 +Export 2449 : + Name : ?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptFrame@v8@@XZ + VA : 0x7E8D30 +Export 2450 : + Name : ?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptFrame@v8@@XZ + VA : 0x7E8D30 +Export 2451 : + Name : ?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAPEAUCpuProfileDeoptInfo@v8@@XZ + VA : 0x7E8D30 +Export 2452 : + Name : ?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAPEBUCpuProfileDeoptInfo@v8@@XZ + VA : 0x7E8D30 +Export 2453 : + Name : ?data@Binary@protocol@v8_inspector@@QEBAPEBEXZ + VA : 0xF811F0 +Export 2454 : + Name : ?deallocate_impl@StrongRootAllocatorBase@internal@v8@@IEAAXPEA_K_K@Z + VA : 0x3A23880 +Export 2455 : + Name : ?deepSerialize@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@UDeepSerializationResult@v8_inspector@@U?$default_delete@UDeepSerializationResult@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@HV?$Local@VObject@v8@@@7@@Z + VA : 0x490BAC0 +Export 2456 : + Name : ?dependencies@Extension@v8@@QEBAPEAPEBDXZ + VA : 0x3964B0 +Export 2457 : + Name : ?dependency_count@Extension@v8@@QEBAHXZ + VA : 0x58F830 +Export 2458 : + Name : ?descriptionForValueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VContext@v8@@@v8@@V?$Local@VValue@v8@@@7@@Z + VA : 0x490BAC0 +Export 2459 : + Name : ?dispatchError@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VMessage@v8@@@4@V?$Local@VValue@v8@@@4@@Z + VA : 0x48C0B20 +Export 2460 : + Name : ?does_zap_garbage@HeapStatistics@v8@@QEAA_KXZ + VA : 0xBFF250 +Export 2461 : + Name : ?embedder_@Version@internal@v8@@0PEBDEB + VA : 0xB091378 +Export 2462 : + Name : ?empty@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_NXZ + VA : 0x79A260 +Export 2463 : + Name : ?empty@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + VA : 0xC00900 +Export 2464 : + Name : ?empty@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_NXZ + VA : 0xC00900 +Export 2465 : + Name : ?end@?$MemorySpan@$$CBE@v8@@QEBA?AVIterator@12@XZ + VA : 0xF81280 +Export 2466 : + Name : ?end@?$MemorySpan@$$CBV?$Local@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xD87BC0 +Export 2467 : + Name : ?end@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xDA90A0 +Export 2468 : + Name : ?end@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xD87BC0 +Export 2469 : + Name : ?end@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA?AVIterator@12@XZ + VA : 0xD87BC0 +Export 2470 : + Name : ?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0xC00740 +Export 2471 : + Name : ?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0xC00740 +Export 2472 : + Name : ?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0xC00740 +Export 2473 : + Name : ?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0xC00740 +Export 2474 : + Name : ?end@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ + VA : 0xBFF520 +Export 2475 : + Name : ?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2476 : + Name : ?endUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ + VA : 0x1EA0F0 +Export 2477 : + Name : ?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UEAA?AV?$Local@VContext@v8@@@v8@@H@Z + VA : 0x490BAC0 +Export 2478 : + Name : ?enumerable@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0xC0F050 +Export 2479 : + Name : ?env@CommonEnvironmentSetup@node@@QEBAPEAVEnvironment@2@XZ + VA : 0x21EF330 +Export 2480 : + Name : ?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@0@Z + VA : 0xC01690 +Export 2481 : + Name : ?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@@Z + VA : 0xC01630 +Export 2482 : + Name : ?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@0@Z + VA : 0xC03DE0 +Export 2483 : + Name : ?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@@Z + VA : 0xC03D50 +Export 2484 : + Name : ?event_loop@CommonEnvironmentSetup@node@@QEBAPEAUuv_loop_s@@XZ + VA : 0x21EF2D0 +Export 2485 : + Name : ?executionContextId@V8ContextInfo@v8_inspector@@SAHV?$Local@VContext@v8@@@v8@@@Z + VA : 0xFC76C0 +Export 2486 : + Name : ?external_memory@HeapStatistics@v8@@QEAA_KXZ + VA : 0x2FEBD0 +Export 2487 : + Name : ?external_script_source_size@HeapCodeStatistics@v8@@QEAA_KXZ + VA : 0x2D4690 +Export 2488 : + Name : ?fromBase64@Binary@protocol@v8_inspector@@SA?AV123@AEBVString16@3@PEA_N@Z + VA : 0xFA0E60 +Export 2489 : + Name : ?fromBinary@Domain@API@Schema@protocol@v8_inspector@@SA?AV?$unique_ptr@VDomain@API@Schema@protocol@v8_inspector@@U?$default_delete@VDomain@API@Schema@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + VA : 0x5969550 +Export 2490 : + Name : ?fromBinary@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + VA : 0x59646A0 +Export 2491 : + Name : ?fromBinary@SearchMatch@API@Debugger@protocol@v8_inspector@@SA?AV?$unique_ptr@VSearchMatch@API@Debugger@protocol@v8_inspector@@U?$default_delete@VSearchMatch@API@Debugger@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + VA : 0x595F590 +Export 2492 : + Name : ?fromBinary@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + VA : 0x5965B30 +Export 2493 : + Name : ?fromBinary@StackTraceId@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTraceId@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTraceId@API@Runtime@protocol@v8_inspector@@@__Cr@std@@@__Cr@std@@PEBE_K@Z + VA : 0x5965E20 +Export 2494 : + Name : ?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$MemorySpan@$$CBE@v8@@@Z + VA : 0x595D650 +Export 2495 : + Name : ?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@V?$span@E@v8_crdtp@@@Z + VA : 0xF81230 +Export 2496 : + Name : ?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEBG_K@Z + VA : 0x596D5D0 +Export 2497 : + Name : ?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEB_S_K@Z + VA : 0x596D5D0 +Export 2498 : + Name : ?fromUTF8@String16@v8_inspector@@SA?AV12@PEBD_K@Z + VA : 0xFA06B0 +Export 2499 : + Name : ?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ + VA : 0xC00A90 +Export 2500 : + Name : ?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ + VA : 0xC00A90 +Export 2501 : + Name : ?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ + VA : 0xC00A90 +Export 2502 : + Name : ?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ + VA : 0xC00A90 +Export 2503 : + Name : ?g_age_table_size_@CagedHeapBase@internal@cppgc@@0_KA + VA : 0xB163130 +Export 2504 : + Name : ?g_base_@CageBaseGlobal@internal@cppgc@@0TBase@123@A + VA : 0xB093700 +Export 2505 : + Name : ?g_heap_base_@CagedHeapBase@internal@cppgc@@0_KA + VA : 0xB163128 +Export 2506 : + Name : ?generateUniqueId@V8InspectorClient@v8_inspector@@UEAA_JXZ + VA : 0x1F34E0 +Export 2507 : + Name : ?get@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x55241A0 +Export 2508 : + Name : ?get_active_implementation@simdutf@@YAAEAV?$atomic_ptr@$$CBVimplementation@simdutf@@@internal@1@XZ + VA : 0x280FB00 +Export 2509 : + Name : ?get_allocator@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ + VA : 0x2FA040 +Export 2510 : + Name : ?get_allocator@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ + VA : 0x2FA040 +Export 2511 : + Name : ?get_async_id@AsyncResource@node@@QEBANXZ + VA : 0x30992E0 +Export 2512 : + Name : ?get_available_implementations@simdutf@@YAAEBVavailable_implementation_list@internal@1@XZ + VA : 0x280F980 +Export 2513 : + Name : ?get_linked_module@binding@node@@YAPEAUnode_module@2@PEBD@Z + VA : 0x2176680 +Export 2514 : + Name : ?get_private@PropertyDescriptor@v8@@QEBAPEAUPrivateData@12@XZ + VA : 0x7E8D30 +Export 2515 : + Name : ?get_resource@AsyncResource@node@@QEAA?AV?$Local@VObject@v8@@@v8@@XZ + VA : 0x3099140 +Export 2516 : + Name : ?get_trigger_async_id@AsyncResource@node@@QEBANXZ + VA : 0x30992F0 +Export 2517 : + Name : ?global_table_@GlobalGCInfoTable@internal@cppgc@@0PEAVGCInfoTable@23@EA + VA : 0xB163028 +Export 2518 : + Name : ?has_configurable@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0x5524200 +Export 2519 : + Name : ?has_enumerable@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0x55241F0 +Export 2520 : + Name : ?has_filter_context@CpuProfilingOptions@v8@@AEBA_NXZ + VA : 0xBFFEF0 +Export 2521 : + Name : ?has_get@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0x55241C0 +Export 2522 : + Name : ?has_set@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0x55241D0 +Export 2523 : + Name : ?has_value@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0xC0F020 +Export 2524 : + Name : ?has_writable@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0x55241E0 +Export 2525 : + Name : ?heap@StrongRootAllocatorBase@internal@v8@@QEBAPEAVHeap@23@XZ + VA : 0x7E8D30 +Export 2526 : + Name : ?heap_size_limit@HeapStatistics@v8@@QEAA_KXZ + VA : 0x3964B0 +Export 2527 : + Name : ?impl@StreamedSource@ScriptCompiler@v8@@QEBAPEAUScriptStreamingData@internal@3@XZ + VA : 0x7E8D30 +Export 2528 : + Name : ?initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + VA : 0x42A5C0 +Export 2529 : + Name : ?initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + VA : 0x347550 +Export 2530 : + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@$$QEAUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00F10 +Export 2531 : + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@AEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00CD0 +Export 2532 : + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z + VA : 0xC01380 +Export 2533 : + Name : ?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@_KAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC01120 +Export 2534 : + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@$$QEAUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC030D0 +Export 2535 : + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@AEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC02BE0 +Export 2536 : + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z + VA : 0xC03920 +Export 2537 : + Name : ?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@_KAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC03580 +Export 2538 : + Name : ?installAdditionalCommandLineAPI@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VObject@v8@@@4@@Z + VA : 0x48C0B20 +Export 2539 : + Name : ?is8Bit@StringView@v8_inspector@@QEBA_NXZ + VA : 0xF80E10 +Export 2540 : + Name : ?isInspectableHeapObject@V8InspectorClient@v8_inspector@@UEAA_NV?$Local@VObject@v8@@@v8@@@Z + VA : 0x490A0F0 +Export 2541 : + Name : ?isValid@V8DebuggerId@v8_inspector@@QEBA_NXZ + VA : 0x59751F0 +Export 2542 : + Name : ?is_one_byte@ValueView@String@v8@@QEBA_NXZ + VA : 0x78B0D0 +Export 2543 : + Name : ?isolate@CommonEnvironmentSetup@node@@QEBAPEAVIsolate@v8@@XZ + VA : 0x21EF310 +Export 2544 : + Name : ?isolate_data@CommonEnvironmentSetup@node@@QEBAPEAVIsolateData@2@XZ + VA : 0x21EF320 +Export 2545 : + Name : ?kAllocationGranularity@AgeTable@internal@cppgc@@0_KB + VA : 0x9D4F5A8 +Export 2546 : + Name : ?kCardSizeInBytes@AgeTable@internal@cppgc@@2_KB + VA : 0x9D4F5B0 +Export 2547 : + Name : ?kEmbedderFieldCount@ArrayBuffer@v8@@2HB + VA : 0x9D4F578 +Export 2548 : + Name : ?kEmbedderFieldCount@ArrayBufferView@v8@@2HB + VA : 0x9D4F4E0 +Export 2549 : + Name : ?kEmbedderFieldCount@Promise@v8@@2HB + VA : 0x9D4F584 +Export 2550 : + Name : ?kFlagCount@RegExp@v8@@2HB + VA : 0x9D4F640 +Export 2551 : + Name : ?kHeapBaseShift@?1??AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z@4_KB + VA : 0x9D4F4F8 +Export 2552 : + Name : ?kHiddenName@NameProvider@cppgc@@2QBDB + VA : 0x9D4F5B8 +Export 2553 : + Name : ?kInitialWantedLimit@GCInfoTable@internal@cppgc@@2GB + VA : 0x9D4F5D4 +Export 2554 : + Name : ?kInternalFieldCount@ArrayBuffer@v8@@2HB + VA : 0x9D4F574 +Export 2555 : + Name : ?kInternalFieldCount@ArrayBufferView@v8@@2HB + VA : 0x9D4F57C +Export 2556 : + Name : ?kInternalFieldCount@SharedArrayBuffer@v8@@2HB + VA : 0x9D4F580 +Export 2557 : + Name : ?kLineOffsetNotFound@Function@v8@@2HB + VA : 0x9D5116C +Export 2558 : + Name : ?kLowerHalfWordMask@CageBaseGlobal@internal@cppgc@@0_KB + VA : 0x9D4F598 +Export 2559 : + Name : ?kMB@ResourceConstraints@v8@@0_KB + VA : 0x9D4F588 +Export 2560 : + Name : ?kManagedTag@WasmStreaming@v8@@2W4ExternalPointerTag@internal@2@B + VA : 0x9D4F648 +Export 2561 : + Name : ?kMaxByteLength@TypedArray@v8@@2_KB + VA : 0x9D4F5D8 +Export 2562 : + Name : ?kMaxFramesCount@TickSample@internal@v8@@2IB + VA : 0x9D5249C +Export 2563 : + Name : ?kMaxFramesCountLog2@TickSample@internal@v8@@2IB + VA : 0x9D52498 +Export 2564 : + Name : ?kMaxIndex@GCInfoTable@internal@cppgc@@2GB + VA : 0x9D4F5D0 +Export 2565 : + Name : ?kMaxLength@BigInt64Array@v8@@2_KB + VA : 0x9D4F630 +Export 2566 : + Name : ?kMaxLength@BigUint64Array@v8@@2_KB + VA : 0x9D4F638 +Export 2567 : + Name : ?kMaxLength@Float16Array@v8@@0_KB + VA : 0x9D4F618 +Export 2568 : + Name : ?kMaxLength@Float32Array@v8@@2_KB + VA : 0x9D4F620 +Export 2569 : + Name : ?kMaxLength@Float64Array@v8@@2_KB + VA : 0x9D4F628 +Export 2570 : + Name : ?kMaxLength@Int16Array@v8@@2_KB + VA : 0x9D4F600 +Export 2571 : + Name : ?kMaxLength@Int32Array@v8@@2_KB + VA : 0x9D4F610 +Export 2572 : + Name : ?kMaxLength@Int8Array@v8@@2_KB + VA : 0x9D4F5F0 +Export 2573 : + Name : ?kMaxLength@String@v8@@2HB + VA : 0x9D4F570 +Export 2574 : + Name : ?kMaxLength@Uint16Array@v8@@2_KB + VA : 0x9D4F5F8 +Export 2575 : + Name : ?kMaxLength@Uint32Array@v8@@2_KB + VA : 0x9D4F608 +Export 2576 : + Name : ?kMaxLength@Uint8Array@v8@@2_KB + VA : 0x9D4F5E0 +Export 2577 : + Name : ?kMaxLength@Uint8ClampedArray@v8@@2_KB + VA : 0x9D4F5E8 +Export 2578 : + Name : ?kMinCodePagesBufferSize@Isolate@v8@@2_KB + VA : 0x9D4F590 +Export 2579 : + Name : ?kMinIndex@GCInfoTable@internal@cppgc@@2GB + VA : 0x9D4F5D2 +Export 2580 : + Name : ?kNoColumnInfo@Message@v8@@2HB + VA : 0x9D4F4E8 +Export 2581 : + Name : ?kNoColumnNumberInfo@AllocationProfile@v8@@2HB + VA : 0x9D4F564 +Export 2582 : + Name : ?kNoColumnNumberInfo@CpuProfileNode@v8@@2HB + VA : 0x9D4F558 +Export 2583 : + Name : ?kNoLineNumberInfo@AllocationProfile@v8@@2HB + VA : 0x9D4F560 +Export 2584 : + Name : ?kNoLineNumberInfo@CpuProfileNode@v8@@2HB + VA : 0x9D4F554 +Export 2585 : + Name : ?kNoLineNumberInfo@Message@v8@@2HB + VA : 0x9D4F4E4 +Export 2586 : + Name : ?kNoNameDeducible@NameProvider@cppgc@@2QBDB + VA : 0x9D4F5C5 +Export 2587 : + Name : ?kNoSampleLimit@CpuProfilingOptions@v8@@2IB + VA : 0x9D4F55C +Export 2588 : + Name : ?kNoScriptId@UnboundScript@v8@@2HB + VA : 0x9D4F4F4 +Export 2589 : + Name : ?kNoScriptIdInfo@Message@v8@@2HB + VA : 0x9D4F4EC +Export 2590 : + Name : ?kNoWasmFunctionIndexInfo@Message@v8@@2HB + VA : 0x9D4F4F0 +Export 2591 : + Name : ?kPersistentHandleNoClassId@HeapProfiler@v8@@2GB + VA : 0x9D4F56C +Export 2592 : + Name : ?kRequiredSize@AgeTable@internal@cppgc@@0_KB + VA : 0x9D4F5A0 +Export 2593 : + Name : ?kUnknownObjectId@HeapProfiler@v8@@2IB + VA : 0x9D4F568 +Export 2594 : + Name : ?length@FastApiTypedArrayBase@v8@@QEBA_KXZ + VA : 0x7E8D30 +Export 2595 : + Name : ?length@StringView@v8_inspector@@QEBA_KXZ + VA : 0x7D88E0 +Export 2596 : + Name : ?length@Utf8Value@String@v8@@QEBAHXZ + VA : 0x22EE60 +Export 2597 : + Name : ?length@Value@String@v8@@QEBAHXZ + VA : 0x22EE60 +Export 2598 : + Name : ?length@ValueView@String@v8@@QEBAHXZ + VA : 0x7D88D0 +Export 2599 : + Name : ?major_@Version@internal@v8@@0HA + VA : 0xB091368 +Export 2600 : + Name : ?malloced_memory@HeapStatistics@v8@@QEAA_KXZ + VA : 0x42A580 +Export 2601 : + Name : ?maxAsyncCallStackDepthChanged@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2602 : + Name : ?max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2603 : + Name : ?max_samples@CpuProfilingOptions@v8@@QEBAIXZ + VA : 0xBFF0B0 +Export 2604 : + Name : ?max_size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + VA : 0xC00230 +Export 2605 : + Name : ?max_size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + VA : 0xC01A90 +Export 2606 : + Name : ?max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ + VA : 0x2D4690 +Export 2607 : + Name : ?memoryInfo@V8InspectorClient@v8_inspector@@UEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@4@V?$Local@VContext@v8@@@4@@Z + VA : 0x490BAC0 +Export 2608 : + Name : ?minor_@Version@internal@v8@@0HA + VA : 0xB09136C +Export 2609 : + Name : ?mode@CpuProfilingOptions@v8@@QEBA?AW4CpuProfilingMode@2@XZ + VA : 0xBFF0A0 +Export 2610 : + Name : ?muteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2611 : + Name : ?name@Extension@v8@@QEBAPEBDXZ + VA : 0x7D88E0 +Export 2612 : + Name : ?number_of_detached_contexts@HeapStatistics@v8@@QEAA_KXZ + VA : 0x82FEA0 +Export 2613 : + Name : ?number_of_native_contexts@HeapStatistics@v8@@QEAA_KXZ + VA : 0x7EA7A0 +Export 2614 : + Name : ?object_count@HeapObjectStatistics@v8@@QEAA_KXZ + VA : 0x2D4690 +Export 2615 : + Name : ?object_size@HeapObjectStatistics@v8@@QEAA_KXZ + VA : 0x42A5C0 +Export 2616 : + Name : ?object_sub_type@HeapObjectStatistics@v8@@QEAAPEBDXZ + VA : 0x7D88E0 +Export 2617 : + Name : ?object_type@HeapObjectStatistics@v8@@QEAAPEBDXZ + VA : 0x7E8D30 +Export 2618 : + Name : ?pair@V8DebuggerId@v8_inspector@@QEBA?AU?$pair@_J_J@__Cr@std@@XZ + VA : 0x5975210 +Export 2619 : + Name : ?patch_@Version@internal@v8@@0HA + VA : 0xB091374 +Export 2620 : + Name : ?peak_malloced_memory@HeapStatistics@v8@@QEAA_KXZ + VA : 0x42B300 +Export 2621 : + Name : ?physical_space_size@HeapSpaceStatistics@v8@@QEAA_KXZ + VA : 0x347550 +Export 2622 : + Name : ?pop_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + VA : 0xC00BC0 +Export 2623 : + Name : ?pop_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + VA : 0xC02A60 +Export 2624 : + Name : ?print@TickSample@internal@v8@@QEBAXXZ + VA : 0x57A9A00 +Export 2625 : + Name : ?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptFrame@v8@@@Z + VA : 0x49BA410 +Export 2626 : + Name : ?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC00AB0 +Export 2627 : + Name : ?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX$$QEAUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC029F0 +Export 2628 : + Name : ?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC02800 +Export 2629 : + Name : ?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXXZ + VA : 0x48C0B20 +Export 2630 : + Name : ?raw_filter_context@CpuProfilingOptions@v8@@AEBAPEAXXZ + VA : 0x5531240 +Export 2631 : + Name : ?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + VA : 0xC008E0 +Export 2632 : + Name : ?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + VA : 0xC008E0 +Export 2633 : + Name : ?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + VA : 0xC008E0 +Export 2634 : + Name : ?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + VA : 0xC008E0 +Export 2635 : + Name : ?read_only_space_physical_size@SharedMemoryStatistics@v8@@QEAA_KXZ + VA : 0x2D4690 +Export 2636 : + Name : ?read_only_space_size@SharedMemoryStatistics@v8@@QEAA_KXZ + VA : 0x7E8D30 +Export 2637 : + Name : ?read_only_space_used_size@SharedMemoryStatistics@v8@@QEAA_KXZ + VA : 0x7D88E0 +Export 2638 : + Name : ?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + VA : 0xC008F0 +Export 2639 : + Name : ?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@__Cr@std@@@23@XZ + VA : 0xC008F0 +Export 2640 : + Name : ?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + VA : 0xC008F0 +Export 2641 : + Name : ?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@__Cr@std@@@23@XZ + VA : 0xC008F0 +Export 2642 : + Name : ?reserve@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + VA : 0x597A00 +Export 2643 : + Name : ?reserve@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + VA : 0xC02590 +Export 2644 : + Name : ?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + VA : 0xC01840 +Export 2645 : + Name : ?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z + VA : 0xC019D0 +Export 2646 : + Name : ?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_K@Z + VA : 0xC04010 +Export 2647 : + Name : ?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z + VA : 0xC04240 +Export 2648 : + Name : ?resourceNameToUrl@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@AEBVStringView@2@@Z + VA : 0x490BAC0 +Export 2649 : + Name : ?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2650 : + Name : ?runMessageLoopOnInstrumentationPause@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x5535180 +Export 2651 : + Name : ?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2652 : + Name : ?sampling_interval_us@CpuProfilingOptions@v8@@QEBAHXZ + VA : 0x22EE60 +Export 2653 : + Name : ?set@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0x55241B0 +Export 2654 : + Name : ?set_auto_enable@Extension@v8@@QEAAX_N@Z + VA : 0x1EE100 +Export 2655 : + Name : ?set_code_range_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + VA : 0x6C5460 +Export 2656 : + Name : ?set_configurable@PropertyDescriptor@v8@@QEAAX_N@Z + VA : 0xC0F060 +Export 2657 : + Name : ?set_enumerable@PropertyDescriptor@v8@@QEAAX_N@Z + VA : 0xC0F040 +Export 2658 : + Name : ?set_initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + VA : 0xBFF2D0 +Export 2659 : + Name : ?set_initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + VA : 0xBFF2E0 +Export 2660 : + Name : ?set_max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + VA : 0xBFF2B0 +Export 2661 : + Name : ?set_max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z + VA : 0xBFF2C0 +Export 2662 : + Name : ?set_stack_limit@ResourceConstraints@v8@@QEAAXPEAI@Z + VA : 0xBFF2A0 +Export 2663 : + Name : ?shrink_to_fit@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + VA : 0xC00980 +Export 2664 : + Name : ?shrink_to_fit@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXXZ + VA : 0xC02680 +Export 2665 : + Name : ?size@?$MemorySpan@$$CBD@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2666 : + Name : ?size@?$MemorySpan@$$CBE@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2667 : + Name : ?size@?$MemorySpan@$$CBV?$Local@VContext@v8@@@v8@@@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2668 : + Name : ?size@?$MemorySpan@$$CBV?$Local@VString@v8@@@v8@@@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2669 : + Name : ?size@?$MemorySpan@$$CBV?$basic_string_view@DU?$char_traits@D@__Cr@std@@@__Cr@std@@@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2670 : + Name : ?size@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2671 : + Name : ?size@?$MemorySpan@E@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2672 : + Name : ?size@?$MemorySpan@V?$Handle@VMap@internal@v8@@@internal@v8@@@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2673 : + Name : ?size@?$MemorySpan@V?$MaybeLocal@VValue@v8@@@v8@@@v8@@QEBA_KXZ + VA : 0x7D88E0 +Export 2674 : + Name : ?size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + VA : 0xC00430 +Export 2675 : + Name : ?size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEBA_KXZ + VA : 0xC01D20 +Export 2676 : + Name : ?size@Binary@protocol@v8_inspector@@QEBA_KXZ + VA : 0xF81200 +Export 2677 : + Name : ?snapshot_creator@CommonEnvironmentSetup@node@@QEAAPEAVSnapshotCreator@v8@@XZ + VA : 0x21EF230 +Export 2678 : + Name : ?soname_@Version@internal@v8@@0PEBDEB + VA : 0xB091388 +Export 2679 : + Name : ?source@Extension@v8@@QEBAPEBVExternalOneByteStringResource@String@2@XZ + VA : 0x42A5C0 +Export 2680 : + Name : ?source_length@Extension@v8@@QEBA_KXZ + VA : 0x2D4690 +Export 2681 : + Name : ?source_url@CompiledWasmModule@v8@@QEBAAEBV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + VA : 0xC00020 +Export 2682 : + Name : ?space_available_size@HeapSpaceStatistics@v8@@QEAA_KXZ + VA : 0x42A5C0 +Export 2683 : + Name : ?space_name@HeapSpaceStatistics@v8@@QEAAPEBDXZ + VA : 0x7E8D30 +Export 2684 : + Name : ?space_size@HeapSpaceStatistics@v8@@QEAA_KXZ + VA : 0x7D88E0 +Export 2685 : + Name : ?space_used_size@HeapSpaceStatistics@v8@@QEAA_KXZ + VA : 0x2D4690 +Export 2686 : + Name : ?stack_limit@ResourceConstraints@v8@@QEBAPEAIXZ + VA : 0x3964B0 +Export 2687 : + Name : ?startRepeatingTimer@V8InspectorClient@v8_inspector@@UEAAXNP6AXPEAX@Z0@Z + VA : 0x48C0B20 +Export 2688 : + Name : ?swap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z + VA : 0xC01A10 +Export 2689 : + Name : ?swap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@__Cr@std@@@__Cr@std@@QEAAXAEAV123@@Z + VA : 0xC01A10 +Export 2690 : + Name : ?toBase64@Binary@protocol@v8_inspector@@QEBA?AVString16@3@XZ + VA : 0xFA09D0 +Export 2691 : + Name : ?toString@V8DebuggerId@v8_inspector@@QEBA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@XZ + VA : 0xFB8BF0 +Export 2692 : + Name : ?total_allocated_object_size_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A + VA : 0xB1630B8 +Export 2693 : + Name : ?total_allocated_space_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@__Cr@std@@A + VA : 0xB1630B0 +Export 2694 : + Name : ?total_available_size@HeapStatistics@v8@@QEAA_KXZ + VA : 0x42A5C0 +Export 2695 : + Name : ?total_global_handles_size@HeapStatistics@v8@@QEAA_KXZ + VA : 0x7E9430 +Export 2696 : + Name : ?total_heap_size@HeapStatistics@v8@@QEAA_KXZ + VA : 0x7E8D30 +Export 2697 : + Name : ?total_heap_size_executable@HeapStatistics@v8@@QEAA_KXZ + VA : 0x7D88E0 +Export 2698 : + Name : ?total_physical_size@HeapStatistics@v8@@QEAA_KXZ + VA : 0x2D4690 +Export 2699 : + Name : ?trusted_data_@ThreadIsolation@internal@v8@@0UTrustedData@123@A + VA : 0xB11A2B8 +Export 2700 : + Name : ?unmuteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z + VA : 0x48C0B20 +Export 2701 : + Name : ?used_global_handles_size@HeapStatistics@v8@@QEAA_KXZ + VA : 0x68C380 +Export 2702 : + Name : ?used_heap_size@HeapStatistics@v8@@QEAA_KXZ + VA : 0x347550 +Export 2703 : + Name : ?utf8@String16@v8_inspector@@QEBA?AV?$basic_string@DU?$char_traits@D@__Cr@std@@V?$allocator@D@23@@__Cr@std@@XZ + VA : 0xFA0750 +Export 2704 : + Name : ?value@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ + VA : 0xC0F010 +Export 2705 : + Name : ?valueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@__Cr@std@@@__Cr@std@@V?$Local@VValue@v8@@@v8@@@Z + VA : 0x490BAC0 +Export 2706 : + Name : ?version_string_@Version@internal@v8@@0PEBDEB + VA : 0xB091380 +Export 2707 : + Name : ?writable@PropertyDescriptor@v8@@QEBA_NXZ + VA : 0xC0F030 +Export 2708 : + Name : ?write_barrier_enabled_@WriteBarrier@internal@cppgc@@0VAtomicEntryFlag@23@A + VA : 0xB163108 +Export 2709 : + Name : Cr_z_adler32 + VA : 0x42C6000 +Export 2710 : + Name : Cr_z_adler32_combine + VA : 0x6BF6C20 +Export 2711 : + Name : Cr_z_adler32_z + VA : 0x1BBCDB0 +Export 2712 : + Name : Cr_z_compress + VA : 0x6BF6BD0 +Export 2713 : + Name : Cr_z_compress2 + VA : 0x6BF6AB0 +Export 2714 : + Name : Cr_z_compressBound + VA : 0x6BF6BF0 +Export 2715 : + Name : Cr_z_crc32 + VA : 0x42C5FD0 +Export 2716 : + Name : Cr_z_crc32_combine + VA : 0x6BF6A00 +Export 2717 : + Name : Cr_z_crc32_combine_gen + VA : 0x6BF6A60 +Export 2718 : + Name : Cr_z_crc32_combine_op + VA : 0x6BF6A70 +Export 2719 : + Name : Cr_z_crc32_z + VA : 0x42C56C0 +Export 2720 : + Name : Cr_z_deflate + VA : 0x1BBC040 +Export 2721 : + Name : Cr_z_deflateBound + VA : 0x6BF5B10 +Export 2722 : + Name : Cr_z_deflateCopy + VA : 0x6BF66D0 +Export 2723 : + Name : Cr_z_deflateEnd + VA : 0x1BBBE30 +Export 2724 : + Name : Cr_z_deflateGetDictionary + VA : 0x6BF5730 +Export 2725 : + Name : Cr_z_deflateInit2_ + VA : 0x1BBBA10 +Export 2726 : + Name : Cr_z_deflateInit_ + VA : 0x6BF5390 +Export 2727 : + Name : Cr_z_deflateParams + VA : 0x6BF58D0 +Export 2728 : + Name : Cr_z_deflatePending + VA : 0x6BF57F0 +Export 2729 : + Name : Cr_z_deflatePrime + VA : 0x6BF5840 +Export 2730 : + Name : Cr_z_deflateReset + VA : 0x6BF53D0 +Export 2731 : + Name : Cr_z_deflateResetKeep + VA : 0x1BBBF60 +Export 2732 : + Name : Cr_z_deflateSetDictionary + VA : 0x6BF54B0 +Export 2733 : + Name : Cr_z_deflateSetHeader + VA : 0x6BF57B0 +Export 2734 : + Name : Cr_z_deflateTune + VA : 0x6BF5AC0 +Export 2735 : + Name : Cr_z_get_crc_table + VA : 0x6BF6970 +Export 2736 : + Name : Cr_z_uncompress + VA : 0x2FC9310 +Export 2737 : + Name : Cr_z_uncompress2 + VA : 0x2FC9180 +Export 2738 : + Name : Cr_z_zError + VA : 0x6BF5370 +Export 2739 : + Name : Cr_z_zlibCompileFlags + VA : 0x6BF5360 +Export 2740 : + Name : Cr_z_zlibVersion + VA : 0x6BF5350 +Export 2741 : + Name : CrashForExceptionInNonABICompliantCodeRange + VA : 0x594A740 +Export 2742 : + Name : ExportedContentMain + VA : 0x205090 +Export 2743 : + Name : GetHandleVerifier + VA : 0x2208060 +Export 2744 : + Name : IsSandboxedProcess + VA : 0x1BFE6C0 +Export 2745 : + Name : NodeContextifyContextMetrics1 + VA : 0x284F1E0 +Export 2746 : + Name : PerfTrace + VA : 0x399890 +Export 2747 : + Name : QQMain + VA : 0x2051D0 +Export 2748 : + Name : napi_acquire_threadsafe_function + VA : 0x296C280 +Export 2749 : + Name : napi_add_async_cleanup_hook + VA : 0x2969920 +Export 2750 : + Name : napi_add_env_cleanup_hook + VA : 0x2969880 +Export 2751 : + Name : napi_add_finalizer + VA : 0x30986F0 +Export 2752 : + Name : napi_adjust_external_memory + VA : 0x30988C0 +Export 2753 : + Name : napi_async_destroy + VA : 0x296A6D0 +Export 2754 : + Name : napi_async_init + VA : 0x296A1B0 +Export 2755 : + Name : napi_call_function + VA : 0x3091DB0 +Export 2756 : + Name : napi_call_threadsafe_function + VA : 0x296C110 +Export 2757 : + Name : napi_cancel_async_work + VA : 0x296BB20 +Export 2758 : + Name : napi_check_object_type_tag + VA : 0x30955E0 +Export 2759 : + Name : napi_close_callback_scope + VA : 0x296A130 +Export 2760 : + Name : napi_close_escapable_handle_scope + VA : 0x3096070 +Export 2761 : + Name : napi_close_handle_scope + VA : 0x3095F20 +Export 2762 : + Name : napi_coerce_to_bool + VA : 0x3093BB0 +Export 2763 : + Name : napi_coerce_to_number + VA : 0x3093DD0 +Export 2764 : + Name : napi_coerce_to_object + VA : 0x3094020 +Export 2765 : + Name : napi_coerce_to_string + VA : 0x3094270 +Export 2766 : + Name : napi_create_array + VA : 0x308FC20 +Export 2767 : + Name : napi_create_array_with_length + VA : 0x308FCE0 +Export 2768 : + Name : napi_create_arraybuffer + VA : 0x3096910 +Export 2769 : + Name : napi_create_async_work + VA : 0x296B560 +Export 2770 : + Name : napi_create_bigint_int64 + VA : 0x3090A00 +Export 2771 : + Name : napi_create_bigint_uint64 + VA : 0x3090AC0 +Export 2772 : + Name : napi_create_bigint_words + VA : 0x3090B80 +Export 2773 : + Name : napi_create_buffer + VA : 0x296AD70 +Export 2774 : + Name : napi_create_buffer_copy + VA : 0x296B170 +Export 2775 : + Name : napi_create_dataview + VA : 0x3097540 +Export 2776 : + Name : napi_create_date + VA : 0x3097F60 +Export 2777 : + Name : napi_create_double + VA : 0x3090700 +Export 2778 : + Name : napi_create_error + VA : 0x3091100 +Export 2779 : + Name : napi_create_external + VA : 0x3094E70 +Export 2780 : + Name : napi_create_external_arraybuffer + VA : 0x3096B40 +Export 2781 : + Name : napi_create_external_buffer + VA : 0x296AFB0 +Export 2782 : + Name : napi_create_function + VA : 0x308B280 +Export 2783 : + Name : napi_create_int32 + VA : 0x30907C0 +Export 2784 : + Name : napi_create_int64 + VA : 0x3090940 +Export 2785 : + Name : napi_create_object + VA : 0x308FB60 +Export 2786 : + Name : napi_create_promise + VA : 0x30979D0 +Export 2787 : + Name : napi_create_range_error + VA : 0x3091500 +Export 2788 : + Name : napi_create_reference + VA : 0x3095B10 +Export 2789 : + Name : napi_create_string_latin1 + VA : 0x308FDA0 +Export 2790 : + Name : napi_create_string_utf16 + VA : 0x308FFC0 +Export 2791 : + Name : napi_create_string_utf8 + VA : 0x308FEB0 +Export 2792 : + Name : napi_create_symbol + VA : 0x3090E80 +Export 2793 : + Name : napi_create_threadsafe_function + VA : 0x296BBC0 +Export 2794 : + Name : napi_create_type_error + VA : 0x3091300 +Export 2795 : + Name : napi_create_typedarray + VA : 0x3096FE0 +Export 2796 : + Name : napi_create_uint32 + VA : 0x3090880 +Export 2797 : + Name : napi_define_class + VA : 0x308B690 +Export 2798 : + Name : napi_define_properties + VA : 0x308C2B0 +Export 2799 : + Name : napi_delete_async_work + VA : 0x296B870 +Export 2800 : + Name : napi_delete_element + VA : 0x308ECE0 +Export 2801 : + Name : napi_delete_property + VA : 0x308D6A0 +Export 2802 : + Name : napi_delete_reference + VA : 0x296B870 +Export 2803 : + Name : napi_detach_arraybuffer + VA : 0x3098A60 +Export 2804 : + Name : napi_escape_handle + VA : 0x3096110 +Export 2805 : + Name : napi_fatal_error + VA : 0x2969DE0 +Export 2806 : + Name : napi_fatal_exception + VA : 0x2969BF0 +Export 2807 : + Name : napi_get_all_property_names + VA : 0x308CBD0 +Export 2808 : + Name : napi_get_and_clear_last_exception + VA : 0x30967B0 +Export 2809 : + Name : napi_get_array_length + VA : 0x308F500 +Export 2810 : + Name : napi_get_arraybuffer_info + VA : 0x3096E90 +Export 2811 : + Name : napi_get_boolean + VA : 0x3090DF0 +Export 2812 : + Name : napi_get_buffer_info + VA : 0x296B450 +Export 2813 : + Name : napi_get_cb_info + VA : 0x3091BC0 +Export 2814 : + Name : napi_get_dataview_info + VA : 0x3097840 +Export 2815 : + Name : napi_get_date_value + VA : 0x3098220 +Export 2816 : + Name : napi_get_element + VA : 0x308EA50 +Export 2817 : + Name : napi_get_global + VA : 0x3092070 +Export 2818 : + Name : napi_get_instance_data + VA : 0x3098A00 +Export 2819 : + Name : napi_get_last_error_info + VA : 0x308B1F0 +Export 2820 : + Name : napi_get_named_property + VA : 0x308E210 +Export 2821 : + Name : napi_get_new_target + VA : 0x3091CE0 +Export 2822 : + Name : napi_get_node_version + VA : 0x296B510 +Export 2823 : + Name : napi_get_null + VA : 0x3091B40 +Export 2824 : + Name : napi_get_property + VA : 0x308D410 +Export 2825 : + Name : napi_get_property_names + VA : 0x308CBA0 +Export 2826 : + Name : napi_get_prototype + VA : 0x308F900 +Export 2827 : + Name : napi_get_reference_value + VA : 0x3095DE0 +Export 2828 : + Name : napi_get_threadsafe_function_context + VA : 0x296C0D0 +Export 2829 : + Name : napi_get_typedarray_info + VA : 0x3096C60 +Export 2830 : + Name : napi_get_undefined + VA : 0x3091AC0 +Export 2831 : + Name : napi_get_uv_event_loop + VA : 0x296B900 +Export 2832 : + Name : napi_get_value_bigint_int64 + VA : 0x3093430 +Export 2833 : + Name : napi_get_value_bigint_uint64 + VA : 0x3093510 +Export 2834 : + Name : napi_get_value_bigint_words + VA : 0x30935F0 +Export 2835 : + Name : napi_get_value_bool + VA : 0x3093750 +Export 2836 : + Name : napi_get_value_double + VA : 0x3092FE0 +Export 2837 : + Name : napi_get_value_external + VA : 0x3095A60 +Export 2838 : + Name : napi_get_value_int32 + VA : 0x30930A0 +Export 2839 : + Name : napi_get_value_int64 + VA : 0x30932E0 +Export 2840 : + Name : napi_get_value_string_latin1 + VA : 0x3093810 +Export 2841 : + Name : napi_get_value_string_utf16 + VA : 0x3093A80 +Export 2842 : + Name : napi_get_value_string_utf8 + VA : 0x3093940 +Export 2843 : + Name : napi_get_value_uint32 + VA : 0x30931C0 +Export 2844 : + Name : napi_get_version + VA : 0x3097980 +Export 2845 : + Name : napi_has_element + VA : 0x308E7B0 +Export 2846 : + Name : napi_has_named_property + VA : 0x308DF10 +Export 2847 : + Name : napi_has_own_property + VA : 0x308D940 +Export 2848 : + Name : napi_has_property + VA : 0x308D170 +Export 2849 : + Name : napi_instanceof + VA : 0x3096450 +Export 2850 : + Name : napi_is_array + VA : 0x308F470 +Export 2851 : + Name : napi_is_arraybuffer + VA : 0x3096880 +Export 2852 : + Name : napi_is_buffer + VA : 0x296B3C0 +Export 2853 : + Name : napi_is_dataview + VA : 0x30977B0 +Export 2854 : + Name : napi_is_date + VA : 0x3098190 +Export 2855 : + Name : napi_is_detached_arraybuffer + VA : 0x3098B90 +Export 2856 : + Name : napi_is_error + VA : 0x3092F50 +Export 2857 : + Name : napi_is_exception_pending + VA : 0x3096730 +Export 2858 : + Name : napi_is_promise + VA : 0x3097ED0 +Export 2859 : + Name : napi_is_typedarray + VA : 0x3096F50 +Export 2860 : + Name : napi_make_callback + VA : 0x296A840 +Export 2861 : + Name : napi_module_register + VA : 0x2969820 +Export 2862 : + Name : napi_new_instance + VA : 0x30961E0 +Export 2863 : + Name : napi_object_freeze + VA : 0x308EF60 +Export 2864 : + Name : napi_object_seal + VA : 0x308F1E0 +Export 2865 : + Name : napi_open_callback_scope + VA : 0x2969EE0 +Export 2866 : + Name : napi_open_escapable_handle_scope + VA : 0x3095FD0 +Export 2867 : + Name : napi_open_handle_scope + VA : 0x3095E80 +Export 2868 : + Name : napi_queue_async_work + VA : 0x296BA10 +Export 2869 : + Name : napi_ref_threadsafe_function + VA : 0x296C400 +Export 2870 : + Name : napi_reference_ref + VA : 0x3095C20 +Export 2871 : + Name : napi_reference_unref + VA : 0x3095CE0 +Export 2872 : + Name : napi_reject_deferred + VA : 0x3097EC0 +Export 2873 : + Name : napi_release_threadsafe_function + VA : 0x296C2E0 +Export 2874 : + Name : napi_remove_async_cleanup_hook + VA : 0x29699F0 +Export 2875 : + Name : napi_remove_env_cleanup_hook + VA : 0x29698D0 +Export 2876 : + Name : napi_remove_wrap + VA : 0x3094E60 +Export 2877 : + Name : napi_resolve_deferred + VA : 0x3097C40 +Export 2878 : + Name : napi_run_script + VA : 0x3098420 +Export 2879 : + Name : napi_set_element + VA : 0x308E510 +Export 2880 : + Name : napi_set_instance_data + VA : 0x3098920 +Export 2881 : + Name : napi_set_named_property + VA : 0x308DC10 +Export 2882 : + Name : napi_set_property + VA : 0x308CEC0 +Export 2883 : + Name : napi_strict_equals + VA : 0x308F700 +Export 2884 : + Name : napi_throw + VA : 0x3092130 +Export 2885 : + Name : napi_throw_error + VA : 0x3092310 +Export 2886 : + Name : napi_throw_range_error + VA : 0x3092930 +Export 2887 : + Name : napi_throw_type_error + VA : 0x3092620 +Export 2888 : + Name : napi_type_tag_object + VA : 0x30951A0 +Export 2889 : + Name : napi_typeof + VA : 0x3091900 +Export 2890 : + Name : napi_unref_threadsafe_function + VA : 0x296C3C0 +Export 2891 : + Name : napi_unwrap + VA : 0x3094A00 +Export 2892 : + Name : napi_wrap + VA : 0x30944C0 +Export 2893 : + Name : node_api_create_external_string_latin1 + VA : 0x30900D0 +Export 2894 : + Name : node_api_create_external_string_utf16 + VA : 0x3090250 +Export 2895 : + Name : node_api_create_property_key_latin1 + VA : 0x30903D0 +Export 2896 : + Name : node_api_create_property_key_utf16 + VA : 0x30905F0 +Export 2897 : + Name : node_api_create_property_key_utf8 + VA : 0x30904E0 +Export 2898 : + Name : node_api_create_syntax_error + VA : 0x3091700 +Export 2899 : + Name : node_api_get_module_file_name + VA : 0x296C440 +Export 2900 : + Name : node_api_post_finalizer + VA : 0x3098820 +Export 2901 : + Name : node_api_symbol_for + VA : 0x3090FB0 +Export 2902 : + Name : node_api_throw_syntax_error + VA : 0x3092C40 +Export 2903 : + Name : qq_magic_napi_register + VA : 0x2969820 +Export 2904 : + Name : qq_magic_node_register + VA : 0x2174D90 +Export 2905 : + Name : sqlite3_dbdata_init + VA : 0x722A790 +Export 2906 : + Name : uv_accept + VA : 0x29AFA20 +Export 2907 : + Name : uv_async_init + VA : 0x21F50C0 +Export 2908 : + Name : uv_async_send + VA : 0x21F51A0 +Export 2909 : + Name : uv_available_parallelism + VA : 0x21F1550 +Export 2910 : + Name : uv_backend_fd + VA : 0xC42770 +Export 2911 : + Name : uv_backend_timeout + VA : 0x21F4530 +Export 2912 : + Name : uv_buf_init + VA : 0x21F5590 +Export 2913 : + Name : uv_cancel + VA : 0x29AE120 +Export 2914 : + Name : uv_chdir + VA : 0x21F0C00 +Export 2915 : + Name : uv_check_init + VA : 0x2989610 +Export 2916 : + Name : uv_check_start + VA : 0x2989650 +Export 2917 : + Name : uv_check_stop + VA : 0x29896D0 +Export 2918 : + Name : uv_clock_gettime + VA : 0x21F1180 +Export 2919 : + Name : uv_close + VA : 0x21F3CF0 +Export 2920 : + Name : uv_cond_broadcast + VA : 0x21F3B60 +Export 2921 : + Name : uv_cond_destroy + VA : 0x1EA0F0 +Export 2922 : + Name : uv_cond_init + VA : 0x21F3B30 +Export 2923 : + Name : uv_cond_signal + VA : 0x21F3B50 +Export 2924 : + Name : uv_cond_timedwait + VA : 0x21F3B90 +Export 2925 : + Name : uv_cond_wait + VA : 0x21F3B70 +Export 2926 : + Name : uv_cpu_info + VA : 0x21F15B0 +Export 2927 : + Name : uv_cpumask_size + VA : 0x21D24E0 +Export 2928 : + Name : uv_cwd + VA : 0x21F09E0 +Export 2929 : + Name : uv_default_loop + VA : 0x21F74D0 +Export 2930 : + Name : uv_disable_stdio_inheritance + VA : 0x29815A0 +Export 2931 : + Name : uv_dlclose + VA : 0x2849080 +Export 2932 : + Name : uv_dlerror + VA : 0x2849100 +Export 2933 : + Name : uv_dlopen + VA : 0x2848E10 +Export 2934 : + Name : uv_dlsym + VA : 0x28490C0 +Export 2935 : + Name : uv_err_name + VA : 0x21F59C0 +Export 2936 : + Name : uv_err_name_r + VA : 0x21F55B0 +Export 2937 : + Name : uv_exepath + VA : 0x21F0900 +Export 2938 : + Name : uv_fileno + VA : 0x21F4E90 +Export 2939 : + Name : uv_free_cpu_info + VA : 0x21F7700 +Export 2940 : + Name : uv_free_interface_addresses + VA : 0x21F1D70 +Export 2941 : + Name : uv_freeaddrinfo + VA : 0x21F1D70 +Export 2942 : + Name : uv_fs_access + VA : 0x2992960 +Export 2943 : + Name : uv_fs_chmod + VA : 0x2992D50 +Export 2944 : + Name : uv_fs_chown + VA : 0x2991160 +Export 2945 : + Name : uv_fs_close + VA : 0x298E5A0 +Export 2946 : + Name : uv_fs_closedir + VA : 0x2990610 +Export 2947 : + Name : uv_fs_copyfile + VA : 0x29926D0 +Export 2948 : + Name : uv_fs_event_getpath + VA : 0x21F7170 +Export 2949 : + Name : uv_fs_event_init + VA : 0x29AC860 +Export 2950 : + Name : uv_fs_event_start + VA : 0x29AC8E0 +Export 2951 : + Name : uv_fs_event_stop + VA : 0x29ACEA0 +Export 2952 : + Name : uv_fs_fchmod + VA : 0x2993140 +Export 2953 : + Name : uv_fs_fchown + VA : 0x2991540 +Export 2954 : + Name : uv_fs_fdatasync + VA : 0x29924E0 +Export 2955 : + Name : uv_fs_fstat + VA : 0x29921D0 +Export 2956 : + Name : uv_fs_fsync + VA : 0x29923F0 +Export 2957 : + Name : uv_fs_ftruncate + VA : 0x29925D0 +Export 2958 : + Name : uv_fs_futime + VA : 0x2993640 +Export 2959 : + Name : uv_fs_get_path + VA : 0x29945F0 +Export 2960 : + Name : uv_fs_get_ptr + VA : 0x836BB0 +Export 2961 : + Name : uv_fs_get_result + VA : 0x2D46E0 +Export 2962 : + Name : uv_fs_get_statbuf + VA : 0x26DEF0 +Export 2963 : + Name : uv_fs_get_system_error + VA : 0x1EF2C30 +Export 2964 : + Name : uv_fs_get_type + VA : 0x7870A0 +Export 2965 : + Name : uv_fs_lchown + VA : 0x2991630 +Export 2966 : + Name : uv_fs_link + VA : 0x2990720 +Export 2967 : + Name : uv_fs_lstat + VA : 0x2991DF0 +Export 2968 : + Name : uv_fs_lutime + VA : 0x2993760 +Export 2969 : + Name : uv_fs_mkdir + VA : 0x298EDD0 +Export 2970 : + Name : uv_fs_mkdtemp + VA : 0x298F1C0 +Export 2971 : + Name : uv_fs_mkstemp + VA : 0x298F580 +Export 2972 : + Name : uv_fs_open + VA : 0x298C400 +Export 2973 : + Name : uv_fs_opendir + VA : 0x2990110 +Export 2974 : + Name : uv_fs_poll_getpath + VA : 0x29AD9B0 +Export 2975 : + Name : uv_fs_poll_init + VA : 0x29AD4C0 +Export 2976 : + Name : uv_fs_poll_start + VA : 0x29AD500 +Export 2977 : + Name : uv_fs_poll_stop + VA : 0x29AD8C0 +Export 2978 : + Name : uv_fs_read + VA : 0x298E690 +Export 2979 : + Name : uv_fs_readdir + VA : 0x29904F0 +Export 2980 : + Name : uv_fs_readlink + VA : 0x2990990 +Export 2981 : + Name : uv_fs_realpath + VA : 0x2990D70 +Export 2982 : + Name : uv_fs_rename + VA : 0x29922C0 +Export 2983 : + Name : uv_fs_req_cleanup + VA : 0x298C340 +Export 2984 : + Name : uv_fs_rmdir + VA : 0x298F940 +Export 2985 : + Name : uv_fs_scandir + VA : 0x298FD20 +Export 2986 : + Name : uv_fs_scandir_next + VA : 0x21F7290 +Export 2987 : + Name : uv_fs_sendfile + VA : 0x2992830 +Export 2988 : + Name : uv_fs_stat + VA : 0x2991A10 +Export 2989 : + Name : uv_fs_statfs + VA : 0x2993B60 +Export 2990 : + Name : uv_fs_symlink + VA : 0x2990850 +Export 2991 : + Name : uv_fs_unlink + VA : 0x298E9F0 +Export 2992 : + Name : uv_fs_utime + VA : 0x2993240 +Export 2993 : + Name : uv_fs_write + VA : 0x298E840 +Export 2994 : + Name : uv_get_available_memory + VA : 0x21F0DA0 +Export 2995 : + Name : uv_get_constrained_memory + VA : 0x1F34E0 +Export 2996 : + Name : uv_get_free_memory + VA : 0x21F0DA0 +Export 2997 : + Name : uv_get_osfhandle + VA : 0x21F3E70 +Export 2998 : + Name : uv_get_process_title + VA : 0x21F1050 +Export 2999 : + Name : uv_get_total_memory + VA : 0x21F0E10 +Export 3000 : + Name : uv_getaddrinfo + VA : 0x3028520 +Export 3001 : + Name : uv_getnameinfo + VA : 0x2FE36A0 +Export 3002 : + Name : uv_getrusage + VA : 0x21F1D80 +Export 3003 : + Name : uv_gettimeofday + VA : 0x21F30F0 +Export 3004 : + Name : uv_guess_handle + VA : 0x21F3C50 +Export 3005 : + Name : uv_handle_get_data + VA : 0x7E8D30 +Export 3006 : + Name : uv_handle_get_loop + VA : 0x7D88E0 +Export 3007 : + Name : uv_handle_get_type + VA : 0x7D88D0 +Export 3008 : + Name : uv_handle_set_data + VA : 0x6C5460 +Export 3009 : + Name : uv_handle_size + VA : 0x21F54C0 +Export 3010 : + Name : uv_handle_type_name + VA : 0x29944D0 +Export 3011 : + Name : uv_has_ref + VA : 0x21F7100 +Export 3012 : + Name : uv_hrtime + VA : 0x21F13B0 +Export 3013 : + Name : uv_idle_init + VA : 0x2989780 +Export 3014 : + Name : uv_idle_start + VA : 0x29897C0 +Export 3015 : + Name : uv_idle_stop + VA : 0x2989840 +Export 3016 : + Name : uv_if_indextoiid + VA : 0x3028D80 +Export 3017 : + Name : uv_if_indextoname + VA : 0x3028C30 +Export 3018 : + Name : uv_inet_ntop + VA : 0x29AF030 +Export 3019 : + Name : uv_inet_pton + VA : 0x29AF530 +Export 3020 : + Name : uv_interface_addresses + VA : 0x21F19E0 +Export 3021 : + Name : uv_ip4_addr + VA : 0x21F6910 +Export 3022 : + Name : uv_ip4_name + VA : 0x21F6A40 +Export 3023 : + Name : uv_ip6_addr + VA : 0x21F6950 +Export 3024 : + Name : uv_ip6_name + VA : 0x21F6A60 +Export 3025 : + Name : uv_ip_name + VA : 0x21F6A80 +Export 3026 : + Name : uv_is_active + VA : 0x21F3CE0 +Export 3027 : + Name : uv_is_closing + VA : 0x21F3E60 +Export 3028 : + Name : uv_is_readable + VA : 0x29AFDD0 +Export 3029 : + Name : uv_is_writable + VA : 0x29AFDE0 +Export 3030 : + Name : uv_key_create + VA : 0x21F3BF0 +Export 3031 : + Name : uv_key_delete + VA : 0x21F3C20 +Export 3032 : + Name : uv_key_get + VA : 0x21F3890 +Export 3033 : + Name : uv_key_set + VA : 0x21F38C0 +Export 3034 : + Name : uv_kill + VA : 0x29AC5F0 +Export 3035 : + Name : uv_library_shutdown + VA : 0x21F7770 +Export 3036 : + Name : uv_listen + VA : 0x29AF9E0 +Export 3037 : + Name : uv_loadavg + VA : 0xF7C5E0 +Export 3038 : + Name : uv_loop_alive + VA : 0x21F4500 +Export 3039 : + Name : uv_loop_close + VA : 0x21F7570 +Export 3040 : + Name : uv_loop_configure + VA : 0x21F7480 +Export 3041 : + Name : uv_loop_delete + VA : 0x21F75C0 +Export 3042 : + Name : uv_loop_fork + VA : 0x21F44F0 +Export 3043 : + Name : uv_loop_get_data + VA : 0x7E8D30 +Export 3044 : + Name : uv_loop_init + VA : 0x21F3F10 +Export 3045 : + Name : uv_loop_new + VA : 0x21F7510 +Export 3046 : + Name : uv_loop_set_data + VA : 0x6C5460 +Export 3047 : + Name : uv_loop_size + VA : 0x21F5580 +Export 3048 : + Name : uv_metrics_idle_time + VA : 0x21F7880 +Export 3049 : + Name : uv_metrics_info + VA : 0x21F7860 +Export 3050 : + Name : uv_mutex_destroy + VA : 0x21F3940 +Export 3051 : + Name : uv_mutex_init + VA : 0x1AF8F30 +Export 3052 : + Name : uv_mutex_init_recursive + VA : 0x1AF8F30 +Export 3053 : + Name : uv_mutex_lock + VA : 0x21F3950 +Export 3054 : + Name : uv_mutex_trylock + VA : 0x21F3960 +Export 3055 : + Name : uv_mutex_unlock + VA : 0x21F3980 +Export 3056 : + Name : uv_now + VA : 0x42B300 +Export 3057 : + Name : uv_once + VA : 0x21F31D0 +Export 3058 : + Name : uv_open_osfhandle + VA : 0x21F3E80 +Export 3059 : + Name : uv_os_environ + VA : 0x21F26B0 +Export 3060 : + Name : uv_os_free_environ + VA : 0x21F7690 +Export 3061 : + Name : uv_os_free_group + VA : 0x21F5470 +Export 3062 : + Name : uv_os_free_passwd + VA : 0x21F5400 +Export 3063 : + Name : uv_os_get_group + VA : 0x21F26A0 +Export 3064 : + Name : uv_os_get_passwd + VA : 0x21F2290 +Export 3065 : + Name : uv_os_get_passwd2 + VA : 0x21F26A0 +Export 3066 : + Name : uv_os_getenv + VA : 0x21F2080 +Export 3067 : + Name : uv_os_gethostname + VA : 0x21F2A10 +Export 3068 : + Name : uv_os_getpid + VA : 0x1B246B0 +Export 3069 : + Name : uv_os_getppid + VA : 0x21F0E80 +Export 3070 : + Name : uv_os_getpriority + VA : 0x21F2B40 +Export 3071 : + Name : uv_os_homedir + VA : 0x21F1FC0 +Export 3072 : + Name : uv_os_setenv + VA : 0x21F2870 +Export 3073 : + Name : uv_os_setpriority + VA : 0x21F2C30 +Export 3074 : + Name : uv_os_tmpdir + VA : 0x21F2490 +Export 3075 : + Name : uv_os_uname + VA : 0x21F2D00 +Export 3076 : + Name : uv_os_unsetenv + VA : 0x21F2960 +Export 3077 : + Name : uv_pipe + VA : 0x29A3CC0 +Export 3078 : + Name : uv_pipe_bind + VA : 0x29A44A0 +Export 3079 : + Name : uv_pipe_bind2 + VA : 0x29A44D0 +Export 3080 : + Name : uv_pipe_chmod + VA : 0x29A6EC0 +Export 3081 : + Name : uv_pipe_connect + VA : 0x29A4720 +Export 3082 : + Name : uv_pipe_connect2 + VA : 0x29A4770 +Export 3083 : + Name : uv_pipe_getpeername + VA : 0x29A6E60 +Export 3084 : + Name : uv_pipe_getsockname + VA : 0x29A6B30 +Export 3085 : + Name : uv_pipe_init + VA : 0x29A3C00 +Export 3086 : + Name : uv_pipe_open + VA : 0x29A6930 +Export 3087 : + Name : uv_pipe_pending_count + VA : 0x29A6B10 +Export 3088 : + Name : uv_pipe_pending_instances + VA : 0x29A4480 +Export 3089 : + Name : uv_pipe_pending_type + VA : 0x29A6EA0 +Export 3090 : + Name : uv_poll_init + VA : 0x29A9190 +Export 3091 : + Name : uv_poll_init_socket + VA : 0x29A91C0 +Export 3092 : + Name : uv_poll_start + VA : 0x29A9470 +Export 3093 : + Name : uv_poll_stop + VA : 0x29A95C0 +Export 3094 : + Name : uv_prepare_init + VA : 0x29894A0 +Export 3095 : + Name : uv_prepare_start + VA : 0x29894E0 +Export 3096 : + Name : uv_prepare_stop + VA : 0x2989560 +Export 3097 : + Name : uv_print_active_handles + VA : 0x21F70B0 +Export 3098 : + Name : uv_print_all_handles + VA : 0x21F6ED0 +Export 3099 : + Name : uv_process_get_pid + VA : 0x815080 +Export 3100 : + Name : uv_process_kill + VA : 0x29AC250 +Export 3101 : + Name : uv_queue_work + VA : 0x29ADFF0 +Export 3102 : + Name : uv_random + VA : 0x34DBD70 +Export 3103 : + Name : uv_read_start + VA : 0x21F7640 +Export 3104 : + Name : uv_read_stop + VA : 0x29AFA90 +Export 3105 : + Name : uv_recv_buffer_size + VA : 0x21F7150 +Export 3106 : + Name : uv_ref + VA : 0x21F70C0 +Export 3107 : + Name : uv_replace_allocator + VA : 0x21F53B0 +Export 3108 : + Name : uv_req_get_data + VA : 0x7E8D30 +Export 3109 : + Name : uv_req_get_type + VA : 0x22EE60 +Export 3110 : + Name : uv_req_set_data + VA : 0x6C5460 +Export 3111 : + Name : uv_req_size + VA : 0x21F5530 +Export 3112 : + Name : uv_req_type_name + VA : 0x2994580 +Export 3113 : + Name : uv_resident_set_memory + VA : 0x21F1470 +Export 3114 : + Name : uv_run + VA : 0x21F4570 +Export 3115 : + Name : uv_rwlock_destroy + VA : 0x1EA0F0 +Export 3116 : + Name : uv_rwlock_init + VA : 0x21F3990 +Export 3117 : + Name : uv_rwlock_rdlock + VA : 0x21F39C0 +Export 3118 : + Name : uv_rwlock_rdunlock + VA : 0x21F39F0 +Export 3119 : + Name : uv_rwlock_tryrdlock + VA : 0x21F39D0 +Export 3120 : + Name : uv_rwlock_trywrlock + VA : 0x21F3A10 +Export 3121 : + Name : uv_rwlock_wrlock + VA : 0x21F3A00 +Export 3122 : + Name : uv_rwlock_wrunlock + VA : 0x21F3A30 +Export 3123 : + Name : uv_sem_destroy + VA : 0x21F3A80 +Export 3124 : + Name : uv_sem_init + VA : 0x21F3A40 +Export 3125 : + Name : uv_sem_post + VA : 0x21F3AA0 +Export 3126 : + Name : uv_sem_trywait + VA : 0x21F3B00 +Export 3127 : + Name : uv_sem_wait + VA : 0x21F3AD0 +Export 3128 : + Name : uv_send_buffer_size + VA : 0x21F7160 +Export 3129 : + Name : uv_set_process_title + VA : 0x21F0F40 +Export 3130 : + Name : uv_setup_args + VA : 0x2FA040 +Export 3131 : + Name : uv_shutdown + VA : 0x29AFCD0 +Export 3132 : + Name : uv_signal_init + VA : 0x29A9F90 +Export 3133 : + Name : uv_signal_start + VA : 0x29AA570 +Export 3134 : + Name : uv_signal_start_oneshot + VA : 0x29AA910 +Export 3135 : + Name : uv_signal_stop + VA : 0x29A9FF0 +Export 3136 : + Name : uv_sleep + VA : 0x21F31C0 +Export 3137 : + Name : uv_socketpair + VA : 0x29A37E0 +Export 3138 : + Name : uv_spawn + VA : 0x29AB510 +Export 3139 : + Name : uv_stop + VA : 0x21F7110 +Export 3140 : + Name : uv_stream_get_write_queue_size + VA : 0x7E9430 +Export 3141 : + Name : uv_stream_set_blocking + VA : 0x29AFDF0 +Export 3142 : + Name : uv_strerror + VA : 0x21F64A0 +Export 3143 : + Name : uv_strerror_r + VA : 0x21F5E50 +Export 3144 : + Name : uv_tcp_bind + VA : 0x21F6AC0 +Export 3145 : + Name : uv_tcp_close_reset + VA : 0x29A1670 +Export 3146 : + Name : uv_tcp_connect + VA : 0x21F6BB0 +Export 3147 : + Name : uv_tcp_getpeername + VA : 0x29A21C0 +Export 3148 : + Name : uv_tcp_getsockname + VA : 0x29A2190 +Export 3149 : + Name : uv_tcp_init + VA : 0x29A13D0 +Export 3150 : + Name : uv_tcp_init_ex + VA : 0x29A1080 +Export 3151 : + Name : uv_tcp_keepalive + VA : 0x29A2F20 +Export 3152 : + Name : uv_tcp_nodelay + VA : 0x29A2E80 +Export 3153 : + Name : uv_tcp_open + VA : 0x29A3270 +Export 3154 : + Name : uv_tcp_simultaneous_accepts + VA : 0x29A2FF0 +Export 3155 : + Name : uv_thread_create + VA : 0x21F3270 +Export 3156 : + Name : uv_thread_create_ex + VA : 0x21F32C0 +Export 3157 : + Name : uv_thread_equal + VA : 0x21F3930 +Export 3158 : + Name : uv_thread_getaffinity + VA : 0x21F3610 +Export 3159 : + Name : uv_thread_getcpu + VA : 0x21F3700 +Export 3160 : + Name : uv_thread_join + VA : 0x21F38E0 +Export 3161 : + Name : uv_thread_self + VA : 0x21F3710 +Export 3162 : + Name : uv_thread_setaffinity + VA : 0x21F34F0 +Export 3163 : + Name : uv_timer_again + VA : 0x21F7D60 +Export 3164 : + Name : uv_timer_get_due_in + VA : 0x21F7DB0 +Export 3165 : + Name : uv_timer_get_repeat + VA : 0x2D46E0 +Export 3166 : + Name : uv_timer_init + VA : 0x21F78D0 +Export 3167 : + Name : uv_timer_set_repeat + VA : 0xCA7C30 +Export 3168 : + Name : uv_timer_start + VA : 0x21F7920 +Export 3169 : + Name : uv_timer_stop + VA : 0x21F7AF0 +Export 3170 : + Name : uv_translate_sys_error + VA : 0x29A0AA0 +Export 3171 : + Name : uv_try_write + VA : 0x29AFC40 +Export 3172 : + Name : uv_try_write2 + VA : 0x29AFC80 +Export 3173 : + Name : uv_tty_get_vterm_state + VA : 0x2973A00 +Export 3174 : + Name : uv_tty_get_winsize + VA : 0x2970AC0 +Export 3175 : + Name : uv_tty_init + VA : 0x29702D0 +Export 3176 : + Name : uv_tty_reset_mode + VA : 0x1F34E0 +Export 3177 : + Name : uv_tty_set_mode + VA : 0x2970670 +Export 3178 : + Name : uv_tty_set_vterm_state + VA : 0x29739C0 +Export 3179 : + Name : uv_udp_bind + VA : 0x21F6B70 +Export 3180 : + Name : uv_udp_connect + VA : 0x21F6BF0 +Export 3181 : + Name : uv_udp_get_send_queue_count + VA : 0x68C380 +Export 3182 : + Name : uv_udp_get_send_queue_size + VA : 0x7E9430 +Export 3183 : + Name : uv_udp_getpeername + VA : 0x29A7460 +Export 3184 : + Name : uv_udp_getsockname + VA : 0x29A7490 +Export 3185 : + Name : uv_udp_init + VA : 0x21F6B60 +Export 3186 : + Name : uv_udp_init_ex + VA : 0x21F6B00 +Export 3187 : + Name : uv_udp_open + VA : 0x29A8960 +Export 3188 : + Name : uv_udp_recv_start + VA : 0x21F6DD0 +Export 3189 : + Name : uv_udp_recv_stop + VA : 0x21F6DF0 +Export 3190 : + Name : uv_udp_send + VA : 0x21F6CE0 +Export 3191 : + Name : uv_udp_set_broadcast + VA : 0x29A88E0 +Export 3192 : + Name : uv_udp_set_membership + VA : 0x29A83E0 +Export 3193 : + Name : uv_udp_set_multicast_interface + VA : 0x29A8750 +Export 3194 : + Name : uv_udp_set_multicast_loop + VA : 0x29A8C20 +Export 3195 : + Name : uv_udp_set_multicast_ttl + VA : 0x29A8B60 +Export 3196 : + Name : uv_udp_set_source_membership + VA : 0x29A8540 +Export 3197 : + Name : uv_udp_set_ttl + VA : 0x29A8AA0 +Export 3198 : + Name : uv_udp_try_send + VA : 0x21F6D60 +Export 3199 : + Name : uv_udp_using_recvmmsg + VA : 0x1F34E0 +Export 3200 : + Name : uv_unref + VA : 0x21F70E0 +Export 3201 : + Name : uv_update_time + VA : 0x21F4220 +Export 3202 : + Name : uv_uptime + VA : 0x21F1510 +Export 3203 : + Name : uv_version + VA : 0x2FE3960 +Export 3204 : + Name : uv_version_string + VA : 0x2FE3970 +Export 3205 : + Name : uv_walk + VA : 0x21F6E00 +Export 3206 : + Name : uv_write + VA : 0x29AFB10 +Export 3207 : + Name : uv_write2 + VA : 0x29AFBB0 +[-] Export listing done diff --git a/test/meta/WRAPPER-IMPORT.txt b/test/meta/WRAPPER-IMPORT.txt new file mode 100644 index 0000000..92dd68b Binary files /dev/null and b/test/meta/WRAPPER-IMPORT.txt differ diff --git a/thirds/external/QQ.def b/thirds/external/QQ.def deleted file mode 100644 index bb1c9ec..0000000 --- a/thirds/external/QQ.def +++ /dev/null @@ -1,5473 +0,0 @@ -; -; Definition file of electron.exe -; Automatic generated by gendef -; written by Kai Tietz 2008 -; -LIBRARY "QQ.exe" -EXPORTS -; bool __cdecl v8::<0x7530ULL,int>(class v8::,int *,unsigned int) -??$TryToCopyAndConvertArrayToCppBuffer@$0DAAAA@H@v8@@YA_NV?$Local@VArray@v8@@@0@PAHI@Z -; bool __cdecl v8::<0x9c40ULL,unsigned int>(class v8::,unsigned int *,unsigned int) -??$TryToCopyAndConvertArrayToCppBuffer@$0EAAAA@I@v8@@YA_NV?$Local@VArray@v8@@@0@PAII@Z -; bool __cdecl v8::<0x11170ULL,float>(class v8::,float *,unsigned int) -??$TryToCopyAndConvertArrayToCppBuffer@$0HAAAA@M@v8@@YA_NV?$Local@VArray@v8@@@0@PAMI@Z -; bool __cdecl v8::<0x13880ULL,double>(class v8::,double *,unsigned int) -??$TryToCopyAndConvertArrayToCppBuffer@$0IAAAA@N@v8@@YA_NV?$Local@VArray@v8@@@0@PANI@Z -; public: __thiscall v8::::(char const *,unsigned int) -??0?$MemorySpan@$$CBD@v8@@QAE@PBDI@Z ; has WINAPI (@8) -; public: __thiscall v8::::(void) -??0?$MemorySpan@$$CBD@v8@@QAE@XZ -; public: __thiscall v8::::(unsigned char const *,unsigned int) -??0?$MemorySpan@$$CBE@v8@@QAE@PBEI@Z ; has WINAPI (@8) -; public: __thiscall v8::::(void) -??0?$MemorySpan@$$CBE@v8@@QAE@XZ -; public: __thiscall v8::::(class v8::CFunction const *,unsigned int) -??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QAE@PBVCFunction@1@I@Z ; has WINAPI (@8) -; public: __thiscall v8::::(void) -??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QAE@XZ -; public: __thiscall std::Cr::>::>(,class std::Cr::> *const) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@$$QAV012@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(,class std::Cr::> *const,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@$$QAV012@ABV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::Cr::> const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(class std::Cr::> const &,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@ABV012@ABV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@ABV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(unsigned int) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@I@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(unsigned int,struct v8::CpuProfileDeoptFrame const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@IABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(unsigned int,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@IABV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@ABV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z ; has WINAPI (@12) -; public: __thiscall std::Cr::>::>(void) -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@XZ -; public: __thiscall std::Cr::>::>(,class std::Cr::> *const) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@$$QAV012@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(,class std::Cr::> *const,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@$$QAV012@ABV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::Cr::> const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(class std::Cr::> const &,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@ABV012@ABV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@ABV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(unsigned int) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@I@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::>(unsigned int,struct v8::CpuProfileDeoptInfo const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@IABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(unsigned int,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@IABV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z ; has WINAPI (@8) -; public: __thiscall std::Cr::>::>(class std::,class std::Cr:: const &) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@ABV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z ; has WINAPI (@12) -; public: __thiscall std::Cr::>::>(void) -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@XZ -; public: __thiscall v8::ActivityControl::ActivityControl(class v8::ActivityControl const &) -??0ActivityControl@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::ActivityControl::ActivityControl(void) -??0ActivityControl@v8@@QAE@XZ -; public: __thiscall v8::AllocationProfile::AllocationProfile(class v8::AllocationProfile const &) -??0AllocationProfile@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::AllocationProfile::AllocationProfile(void) -??0AllocationProfile@v8@@QAE@XZ -; public: __thiscall v8::ArrayBuffer::Allocator::Allocator(class v8::ArrayBuffer::Allocator const &) -??0Allocator@ArrayBuffer@v8@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8::ArrayBuffer::Allocator::Allocator(void) -??0Allocator@ArrayBuffer@v8@@QAE@XZ -; public: __thiscall v8::Isolate::AllowJavascriptExecutionScope::AllowJavascriptExecutionScope(class v8::Isolate *) -??0AllowJavascriptExecutionScope@Isolate@v8@@QAE@PAV12@@Z ; has WINAPI (@4) -; public: __thiscall node::ArrayBufferAllocator::ArrayBufferAllocator(,class node::ArrayBufferAllocator *const) -??0ArrayBufferAllocator@node@@QAE@$$QAV01@@Z ; has WINAPI (@4) -; public: __thiscall node::ArrayBufferAllocator::ArrayBufferAllocator(class node::ArrayBufferAllocator const &) -??0ArrayBufferAllocator@node@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall node::ArrayBufferAllocator::ArrayBufferAllocator(void) -??0ArrayBufferAllocator@node@@QAE@XZ -; public: __thiscall node::AsyncResource::AsyncResource(class v8::Isolate *,class v8::,char const *,double) -??0AsyncResource@node@@QAE@PAVIsolate@v8@@V?$Local@VObject@v8@@@3@PBDN@Z ; has WINAPI (@20) -; public: __thiscall v8::Context::BackupIncumbentScope::BackupIncumbentScope(class v8::) -??0BackupIncumbentScope@Context@v8@@QAE@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@4) -; private: __thiscall v8_inspector::protocol::Binary::Binary(class std::Cr::>>) -??0Binary@protocol@v8_inspector@@AAE@V?$shared_ptr@V?$vector@EV?$allocator@E@Cr@std@@@Cr@std@@@Cr@std@@@Z ; has WINAPI (@8) -; public: __thiscall v8_inspector::protocol::Binary::Binary(,class v8_inspector::protocol::Binary *const) -??0Binary@protocol@v8_inspector@@QAE@$$QAV012@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Binary::Binary(class v8_inspector::protocol::Binary const &) -??0Binary@protocol@v8_inspector@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Binary::Binary(void) -??0Binary@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8::CFunction::CFunction(void const *,class v8::CFunctionInfo const *) -??0CFunction@v8@@QAE@PBXPBVCFunctionInfo@1@@Z ; has WINAPI (@8) -; public: __thiscall v8::CFunction::CFunction(void) -??0CFunction@v8@@QAE@XZ -; public: __thiscall v8::CFunctionInfo::CFunctionInfo(class v8::CTypeInfo const &,unsigned int,class v8::CTypeInfo const *) -??0CFunctionInfo@v8@@QAE@ABVCTypeInfo@1@IPBV21@@Z ; has WINAPI (@12) -; public: __thiscall v8::ScriptCompiler::CachedData::CachedData(unsigned char const *,int,enum v8::ScriptCompiler::CachedData::BufferPolicy) -??0CachedData@ScriptCompiler@v8@@QAE@PBEHW4BufferPolicy@012@@Z ; has WINAPI (@12) -; public: __thiscall v8::ScriptCompiler::CachedData::CachedData(void) -??0CachedData@ScriptCompiler@v8@@QAE@XZ -; public: __thiscall node::AsyncResource::CallbackScope::CallbackScope(class node::AsyncResource *) -??0CallbackScope@AsyncResource@node@@QAE@PAV12@@Z ; has WINAPI (@4) -; public: __thiscall node::CallbackScope::CallbackScope(class node::Environment *,class v8::,struct node::async_context) -??0CallbackScope@node@@QAE@PAVEnvironment@1@V?$Local@VObject@v8@@@v8@@Uasync_context@1@@Z ; has WINAPI (@24) -; public: __thiscall node::CallbackScope::CallbackScope(class v8::Isolate *,class v8::,struct node::async_context) -??0CallbackScope@node@@QAE@PAVIsolate@v8@@V?$Local@VObject@v8@@@3@Uasync_context@1@@Z ; has WINAPI (@24) -; public: __thiscall v8_inspector::V8Inspector::Channel::Channel(class v8_inspector::V8Inspector::Channel const &) -??0Channel@V8Inspector@v8_inspector@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8Inspector::Channel::Channel(void) -??0Channel@V8Inspector@v8_inspector@@QAE@XZ -; public: __thiscall v8::CodeEventHandler::CodeEventHandler(class v8::Isolate *) -??0CodeEventHandler@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8InspectorSession::CommandLineAPIScope::CommandLineAPIScope(class v8_inspector::V8InspectorSession::CommandLineAPIScope const &) -??0CommandLineAPIScope@V8InspectorSession@v8_inspector@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8InspectorSession::CommandLineAPIScope::CommandLineAPIScope(void) -??0CommandLineAPIScope@V8InspectorSession@v8_inspector@@QAE@XZ -; private: __thiscall node::CommonEnvironmentSetup::CommonEnvironmentSetup(class node::MultiIsolatePlatform *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::) -??0CommonEnvironmentSetup@node@@AAE@PAVMultiIsolatePlatform@1@PAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@V?$function@$$A6APAVEnvironment@node@@PBVCommonEnvironmentSetup@2@@Z@45@@Z ; has WINAPI (@40) -; private: __thiscall v8::CompiledWasmModule::CompiledWasmModule(class std::Cr::,char const *,unsigned int) -??0CompiledWasmModule@v8@@AAE@V?$shared_ptr@VNativeModule@wasm@internal@v8@@@Cr@std@@PBDI@Z ; has WINAPI (@16) -; public: __thiscall v8::CompiledWasmModule::CompiledWasmModule(,class v8::CompiledWasmModule *const) -??0CompiledWasmModule@v8@@QAE@$$QAV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::CompiledWasmModule::CompiledWasmModule(class v8::CompiledWasmModule const &) -??0CompiledWasmModule@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; private: __thiscall v8::ScriptCompiler::ConsumeCodeCacheTask::ConsumeCodeCacheTask(class std::Cr::>) -??0ConsumeCodeCacheTask@ScriptCompiler@v8@@AAE@V?$unique_ptr@VBackgroundDeserializeTask@internal@v8@@U?$default_delete@VBackgroundDeserializeTask@internal@v8@@@Cr@std@@@Cr@std@@@Z ; has WINAPI (@4) -; private: __thiscall v8::CppHeap::CppHeap(void) -??0CppHeap@v8@@AAE@XZ -; public: __thiscall v8::CppHeap::CppHeap(class v8::CppHeap const &) -??0CppHeap@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::CppHeapCreateParams::CppHeapCreateParams(,struct v8::CppHeapCreateParams *const) -??0CppHeapCreateParams@v8@@QAE@$$QAU01@@Z ; has WINAPI (@4) -; public: __thiscall v8::CpuProfileDeoptInfo::CpuProfileDeoptInfo(,struct v8::CpuProfileDeoptInfo *const) -??0CpuProfileDeoptInfo@v8@@QAE@$$QAU01@@Z ; has WINAPI (@4) -; public: __thiscall v8::CpuProfileDeoptInfo::CpuProfileDeoptInfo(struct v8::CpuProfileDeoptInfo const &) -??0CpuProfileDeoptInfo@v8@@QAE@ABU01@@Z ; has WINAPI (@4) -; public: __thiscall v8::CpuProfileDeoptInfo::CpuProfileDeoptInfo(void) -??0CpuProfileDeoptInfo@v8@@QAE@XZ -; public: __thiscall v8::CpuProfilingOptions::CpuProfilingOptions(,class v8::CpuProfilingOptions *const) -??0CpuProfilingOptions@v8@@QAE@$$QAV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::CpuProfilingOptions::CpuProfilingOptions(enum v8::CpuProfilingMode,unsigned int,int,class v8::) -??0CpuProfilingOptions@v8@@QAE@W4CpuProfilingMode@1@IHV?$MaybeLocal@VContext@v8@@@1@@Z ; has WINAPI (@16) -; public: __thiscall v8::Isolate::CreateParams::CreateParams(,struct v8::Isolate::CreateParams *const) -??0CreateParams@Isolate@v8@@QAE@$$QAU012@@Z ; has WINAPI (@4) -; public: __thiscall v8::Isolate::CreateParams::CreateParams(struct v8::Isolate::CreateParams const &) -??0CreateParams@Isolate@v8@@QAE@ABU012@@Z ; has WINAPI (@4) -; public: __thiscall v8::Isolate::CreateParams::CreateParams(void) -??0CreateParams@Isolate@v8@@QAE@XZ -; public: __thiscall cppgc::internal::CrossThreadPersistentRegion::CrossThreadPersistentRegion(class cppgc::internal::FatalOutOfMemoryHandler const &) -??0CrossThreadPersistentRegion@internal@cppgc@@QAE@ABVFatalOutOfMemoryHandler@12@@Z ; has WINAPI (@4) -; public: __thiscall v8::ValueDeserializer::Delegate::Delegate(class v8::ValueDeserializer::Delegate const &) -??0Delegate@ValueDeserializer@v8@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8::ValueDeserializer::Delegate::Delegate(void) -??0Delegate@ValueDeserializer@v8@@QAE@XZ -; public: __thiscall v8::ValueSerializer::Delegate::Delegate(class v8::ValueSerializer::Delegate const &) -??0Delegate@ValueSerializer@v8@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8::ValueSerializer::Delegate::Delegate(void) -??0Delegate@ValueSerializer@v8@@QAE@XZ -; public: __thiscall cppgc::subtle::DisallowGarbageCollectionScope::DisallowGarbageCollectionScope(class cppgc::HeapHandle &) -??0DisallowGarbageCollectionScope@subtle@cppgc@@QAE@AAVHeapHandle@2@@Z ; has WINAPI (@4) -; public: __thiscall v8::Isolate::DisallowJavascriptExecutionScope::DisallowJavascriptExecutionScope(class v8::Isolate *,enum v8::Isolate::DisallowJavascriptExecutionScope::OnFailure) -??0DisallowJavascriptExecutionScope@Isolate@v8@@QAE@PAV12@W4OnFailure@012@@Z ; has WINAPI (@8) -; public: __thiscall v8::DiscardedSamplesDelegate::DiscardedSamplesDelegate(class v8::DiscardedSamplesDelegate const &) -??0DiscardedSamplesDelegate@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::DiscardedSamplesDelegate::DiscardedSamplesDelegate(void) -??0DiscardedSamplesDelegate@v8@@QAE@XZ -; public: __thiscall v8_inspector::protocol::Schema::API::Domain::Domain(,class v8_inspector::protocol::Schema::API::Domain *const) -??0Domain@API@Schema@protocol@v8_inspector@@QAE@$$QAV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Schema::API::Domain::Domain(class v8_inspector::protocol::Schema::API::Domain const &) -??0Domain@API@Schema@protocol@v8_inspector@@QAE@ABV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Schema::API::Domain::Domain(void) -??0Domain@API@Schema@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8::EmbedderGraph::EmbedderGraph(class v8::EmbedderGraph const &) -??0EmbedderGraph@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::EmbedderGraph::EmbedderGraph(void) -??0EmbedderGraph@v8@@QAE@XZ -; public: __thiscall v8::EmbedderHeapTracer::EmbedderHeapTracer(class v8::EmbedderHeapTracer const &) -??0EmbedderHeapTracer@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::EmbedderHeapTracer::EmbedderHeapTracer(void) -??0EmbedderHeapTracer@v8@@QAE@XZ -; public: __thiscall v8::EmbedderRootsHandler::EmbedderRootsHandler(class v8::EmbedderRootsHandler const &) -??0EmbedderRootsHandler@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::EmbedderRootsHandler::EmbedderRootsHandler(void) -??0EmbedderRootsHandler@v8@@QAE@XZ -; public: __thiscall v8::EmbedderStateScope::EmbedderStateScope(class v8::Isolate *,class v8::,enum v8::EmbedderStateTag) -??0EmbedderStateScope@v8@@QAE@PAVIsolate@1@V?$Local@VContext@v8@@@1@W4EmbedderStateTag@1@@Z ; has WINAPI (@12) -; public: __thiscall v8::EscapableHandleScope::EscapableHandleScope(class v8::Isolate *) -??0EscapableHandleScope@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Exported::Exported(class v8_inspector::protocol::Exported const &) -??0Exported@protocol@v8_inspector@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Exported::Exported(void) -??0Exported@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8::Extension::Extension(char const *,char const *,int,char const **,int) -??0Extension@v8@@QAE@PBD0HPAPBDH@Z ; has WINAPI (@20) -; public: __thiscall v8::ExtensionConfiguration::ExtensionConfiguration(int,char const **const) -??0ExtensionConfiguration@v8@@QAE@HQAPBD@Z ; has WINAPI (@8) -; public: __thiscall v8::ExtensionConfiguration::ExtensionConfiguration(void) -??0ExtensionConfiguration@v8@@QAE@XZ -; protected: __thiscall v8::String::ExternalOneByteStringResource::ExternalOneByteStringResource(void) -??0ExternalOneByteStringResource@String@v8@@IAE@XZ -; public: __thiscall v8::ExternalResourceVisitor::ExternalResourceVisitor(class v8::ExternalResourceVisitor const &) -??0ExternalResourceVisitor@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::ExternalResourceVisitor::ExternalResourceVisitor(void) -??0ExternalResourceVisitor@v8@@QAE@XZ -; public: __thiscall v8::ScriptCompiler::ExternalSourceStream::ExternalSourceStream(class v8::ScriptCompiler::ExternalSourceStream const &) -??0ExternalSourceStream@ScriptCompiler@v8@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8::ScriptCompiler::ExternalSourceStream::ExternalSourceStream(void) -??0ExternalSourceStream@ScriptCompiler@v8@@QAE@XZ -; protected: __thiscall v8::String::ExternalStringResource::ExternalStringResource(void) -??0ExternalStringResource@String@v8@@IAE@XZ -; protected: __thiscall v8::String::ExternalStringResourceBase::ExternalStringResourceBase(void) -??0ExternalStringResourceBase@String@v8@@IAE@XZ -; public: __thiscall cppgc::internal::GCInfoTable::GCInfoTable(class v8::PageAllocator &,class cppgc::internal::FatalOutOfMemoryHandler &) -??0GCInfoTable@internal@cppgc@@QAE@AAVPageAllocator@v8@@AAVFatalOutOfMemoryHandler@12@@Z ; has WINAPI (@8) -; public: __thiscall v8::HandleScope::HandleScope(class v8::Isolate *) -??0HandleScope@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; private: __thiscall cppgc::Heap::Heap(void) -??0Heap@cppgc@@AAE@XZ -; public: __thiscall cppgc::Heap::Heap(class cppgc::Heap const &) -??0Heap@cppgc@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::HeapCodeStatistics::HeapCodeStatistics(void) -??0HeapCodeStatistics@v8@@QAE@XZ -; public: __thiscall v8::HeapObjectStatistics::HeapObjectStatistics(void) -??0HeapObjectStatistics@v8@@QAE@XZ -; public: __thiscall v8::HeapSpaceStatistics::HeapSpaceStatistics(void) -??0HeapSpaceStatistics@v8@@QAE@XZ -; public: __thiscall v8::HeapStatistics::HeapStatistics(void) -??0HeapStatistics@v8@@QAE@XZ -; public: __thiscall v8_inspector::V8InspectorSession::Inspectable::Inspectable(class v8_inspector::V8InspectorSession::Inspectable const &) -??0Inspectable@V8InspectorSession@v8_inspector@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8InspectorSession::Inspectable::Inspectable(void) -??0Inspectable@V8InspectorSession@v8_inspector@@QAE@XZ -; public: __thiscall node::IsolatePlatformDelegate::IsolatePlatformDelegate(,class node::IsolatePlatformDelegate *const) -??0IsolatePlatformDelegate@node@@QAE@$$QAV01@@Z ; has WINAPI (@4) -; public: __thiscall node::IsolatePlatformDelegate::IsolatePlatformDelegate(class node::IsolatePlatformDelegate const &) -??0IsolatePlatformDelegate@node@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall node::IsolatePlatformDelegate::IsolatePlatformDelegate(void) -??0IsolatePlatformDelegate@node@@QAE@XZ -; public: __thiscall v8::Location::Location(int,int) -??0Location@v8@@QAE@HH@Z ; has WINAPI (@8) -; public: __thiscall v8::Locker::Locker(class v8::Isolate *) -??0Locker@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8::metrics::LongTaskStats::LongTaskStats(void) -??0LongTaskStats@metrics@v8@@QAE@XZ -; public: __thiscall v8::MeasureMemoryDelegate::MeasureMemoryDelegate(class v8::MeasureMemoryDelegate const &) -??0MeasureMemoryDelegate@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::MeasureMemoryDelegate::MeasureMemoryDelegate(void) -??0MeasureMemoryDelegate@v8@@QAE@XZ -; private: __thiscall v8::MicrotaskQueue::MicrotaskQueue(void) -??0MicrotaskQueue@v8@@AAE@XZ -; public: __thiscall v8::MicrotasksScope::MicrotasksScope(class v8::Isolate *,class v8::MicrotaskQueue *,enum v8::MicrotasksScope::Type) -??0MicrotasksScope@v8@@QAE@PAVIsolate@1@PAVMicrotaskQueue@1@W4Type@01@@Z ; has WINAPI (@12) -; public: __thiscall v8::MicrotasksScope::MicrotasksScope(class v8::Isolate *,enum v8::MicrotasksScope::Type) -??0MicrotasksScope@v8@@QAE@PAVIsolate@1@W4Type@01@@Z ; has WINAPI (@8) -; public: __thiscall node::MultiIsolatePlatform::MultiIsolatePlatform(class node::MultiIsolatePlatform const &) -??0MultiIsolatePlatform@node@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall node::MultiIsolatePlatform::MultiIsolatePlatform(void) -??0MultiIsolatePlatform@node@@QAE@XZ -; public: __thiscall cppgc::NameProvider::NameProvider(class cppgc::NameProvider const &) -??0NameProvider@cppgc@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall cppgc::NameProvider::NameProvider(void) -??0NameProvider@cppgc@@QAE@XZ -; public: __thiscall cppgc::subtle::NoGarbageCollectionScope::NoGarbageCollectionScope(class cppgc::HeapHandle &) -??0NoGarbageCollectionScope@subtle@cppgc@@QAE@AAVHeapHandle@2@@Z ; has WINAPI (@4) -; public: __thiscall v8::OutputStream::OutputStream(class v8::OutputStream const &) -??0OutputStream@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::OutputStream::OutputStream(void) -??0OutputStream@v8@@QAE@XZ -; public: __thiscall cppgc::testing::OverrideEmbedderStackStateScope::OverrideEmbedderStackStateScope(class cppgc::HeapHandle &,enum cppgc::EmbedderStackState) -??0OverrideEmbedderStackStateScope@testing@cppgc@@QAE@AAVHeapHandle@2@W4EmbedderStackState@2@@Z ; has WINAPI (@8) -; public: __thiscall v8::PersistentHandleVisitor::PersistentHandleVisitor(class v8::PersistentHandleVisitor const &) -??0PersistentHandleVisitor@v8@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::PersistentHandleVisitor::PersistentHandleVisitor(void) -??0PersistentHandleVisitor@v8@@QAE@XZ -; public: __thiscall cppgc::internal::PersistentRegion::PersistentRegion(class cppgc::internal::FatalOutOfMemoryHandler const &) -??0PersistentRegion@internal@cppgc@@QAE@ABVFatalOutOfMemoryHandler@12@@Z ; has WINAPI (@4) -; protected: __thiscall cppgc::internal::PersistentRegionBase::PersistentRegionBase(class cppgc::internal::FatalOutOfMemoryHandler const &) -??0PersistentRegionBase@internal@cppgc@@IAE@ABVFatalOutOfMemoryHandler@12@@Z ; has WINAPI (@4) -; public: __thiscall cppgc::internal::PersistentRegionLock::PersistentRegionLock(void) -??0PersistentRegionLock@internal@cppgc@@QAE@XZ -; public: __thiscall cppgc::Platform::Platform(class cppgc::Platform const &) -??0Platform@cppgc@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall cppgc::Platform::Platform(void) -??0Platform@cppgc@@QAE@XZ -; public: __thiscall cppgc::internal::PrefinalizerRegistration::PrefinalizerRegistration(void *,bool(__cdecl *)(class cppgc::LivenessBroker const &,void *)) -??0PrefinalizerRegistration@internal@cppgc@@QAE@PAXP6A_NABVLivenessBroker@2@0@Z@Z ; has WINAPI (@8) -; public: __thiscall v8::PropertyDescriptor::PropertyDescriptor(class v8::,class v8::) -??0PropertyDescriptor@v8@@QAE@V?$Local@VValue@v8@@@1@0@Z ; has WINAPI (@8) -; public: __thiscall v8::PropertyDescriptor::PropertyDescriptor(class v8::) -??0PropertyDescriptor@v8@@QAE@V?$Local@VValue@v8@@@1@@Z ; has WINAPI (@4) -; public: __thiscall v8::PropertyDescriptor::PropertyDescriptor(class v8::,bool) -??0PropertyDescriptor@v8@@QAE@V?$Local@VValue@v8@@@1@_N@Z ; has WINAPI (@8) -; public: __thiscall v8::PropertyDescriptor::PropertyDescriptor(void) -??0PropertyDescriptor@v8@@QAE@XZ -; public: __thiscall v8::metrics::Recorder::Recorder(class v8::metrics::Recorder const &) -??0Recorder@metrics@v8@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8::metrics::Recorder::Recorder(void) -??0Recorder@metrics@v8@@QAE@XZ -; public: __thiscall v8::RegisterState::RegisterState(struct v8::RegisterState const &) -??0RegisterState@v8@@QAE@ABU01@@Z ; has WINAPI (@4) -; public: __thiscall v8::RegisterState::RegisterState(void) -??0RegisterState@v8@@QAE@XZ -; public: __thiscall v8_inspector::protocol::Runtime::API::RemoteObject::RemoteObject(,class v8_inspector::protocol::Runtime::API::RemoteObject *const) -??0RemoteObject@API@Runtime@protocol@v8_inspector@@QAE@$$QAV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Runtime::API::RemoteObject::RemoteObject(class v8_inspector::protocol::Runtime::API::RemoteObject const &) -??0RemoteObject@API@Runtime@protocol@v8_inspector@@QAE@ABV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Runtime::API::RemoteObject::RemoteObject(void) -??0RemoteObject@API@Runtime@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8::ResourceConstraints::ResourceConstraints(void) -??0ResourceConstraints@v8@@QAE@XZ -; public: __thiscall cppgc::internal::RootVisitor::RootVisitor(class cppgc::internal::RootVisitor const &) -??0RootVisitor@internal@cppgc@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall cppgc::internal::RootVisitor::RootVisitor(class cppgc::Visitor::Key) -??0RootVisitor@internal@cppgc@@QAE@VKey@Visitor@2@@Z ; has WINAPI (@4) -; public: __thiscall v8::Isolate::SafeForTerminationScope::SafeForTerminationScope(class v8::Isolate *) -??0SafeForTerminationScope@Isolate@v8@@QAE@PAV12@@Z ; has WINAPI (@4) -; public: __thiscall cppgc::internal::SameThreadEnabledCheckingPolicyBase::SameThreadEnabledCheckingPolicyBase(void) -??0SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QAE@XZ -; public: __thiscall v8::Isolate::Scope::Scope(class v8::Isolate *) -??0Scope@Isolate@v8@@QAE@PAV12@@Z ; has WINAPI (@4) -; public: __thiscall v8::ScriptOrigin::ScriptOrigin(class v8::Isolate *,class v8::,int,int,bool,int,class v8::,bool,bool,bool,class v8::) -??0ScriptOrigin@v8@@QAE@PAVIsolate@1@V?$Local@VValue@v8@@@1@HH_NH1222V?$Local@VData@v8@@@1@@Z ; has WINAPI (@44) -; private: __thiscall v8::ScriptCompiler::ScriptStreamingTask::ScriptStreamingTask(struct v8::internal::ScriptStreamingData *) -??0ScriptStreamingTask@ScriptCompiler@v8@@AAE@PAUScriptStreamingData@internal@2@@Z ; has WINAPI (@4) -; public: __thiscall v8::SealHandleScope::SealHandleScope(class v8::Isolate *) -??0SealHandleScope@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Debugger::API::SearchMatch::SearchMatch(,class v8_inspector::protocol::Debugger::API::SearchMatch *const) -??0SearchMatch@API@Debugger@protocol@v8_inspector@@QAE@$$QAV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Debugger::API::SearchMatch::SearchMatch(class v8_inspector::protocol::Debugger::API::SearchMatch const &) -??0SearchMatch@API@Debugger@protocol@v8_inspector@@QAE@ABV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Debugger::API::SearchMatch::SearchMatch(void) -??0SearchMatch@API@Debugger@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8::SharedMemoryStatistics::SharedMemoryStatistics(void) -??0SharedMemoryStatistics@v8@@QAE@XZ -; private: __thiscall v8::SharedValueConveyor::SharedValueConveyor(class v8::Isolate *) -??0SharedValueConveyor@v8@@AAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8::SharedValueConveyor::SharedValueConveyor(,class v8::SharedValueConveyor *const) -??0SharedValueConveyor@v8@@QAE@$$QAV01@@Z ; has WINAPI (@4) -; public: __thiscall v8::SnapshotCreator::SnapshotCreator(class v8::Isolate *,int const *,class v8::StartupData *) -??0SnapshotCreator@v8@@QAE@PAVIsolate@1@PBHPAVStartupData@1@@Z ; has WINAPI (@12) -; public: __thiscall v8::SnapshotCreator::SnapshotCreator(int const *,class v8::StartupData *) -??0SnapshotCreator@v8@@QAE@PBHPAVStartupData@1@@Z ; has WINAPI (@8) -; private: __thiscall cppgc::SourceLocation::SourceLocation(char const *,char const *,unsigned int) -??0SourceLocation@cppgc@@AAE@PBD0I@Z ; has WINAPI (@12) -; public: __thiscall cppgc::SourceLocation::SourceLocation(void) -??0SourceLocation@cppgc@@QAE@XZ -; public: __thiscall v8_inspector::protocol::Runtime::API::StackTrace::StackTrace(,class v8_inspector::protocol::Runtime::API::StackTrace *const) -??0StackTrace@API@Runtime@protocol@v8_inspector@@QAE@$$QAV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Runtime::API::StackTrace::StackTrace(class v8_inspector::protocol::Runtime::API::StackTrace const &) -??0StackTrace@API@Runtime@protocol@v8_inspector@@QAE@ABV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Runtime::API::StackTrace::StackTrace(void) -??0StackTrace@API@Runtime@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::protocol::Runtime::API::StackTraceId::StackTraceId(,class v8_inspector::protocol::Runtime::API::StackTraceId *const) -??0StackTraceId@API@Runtime@protocol@v8_inspector@@QAE@$$QAV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Runtime::API::StackTraceId::StackTraceId(class v8_inspector::protocol::Runtime::API::StackTraceId const &) -??0StackTraceId@API@Runtime@protocol@v8_inspector@@QAE@ABV01234@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::protocol::Runtime::API::StackTraceId::StackTraceId(void) -??0StackTraceId@API@Runtime@protocol@v8_inspector@@QAE@XZ -; public: __thiscall cppgc::testing::StandaloneTestingHeap::StandaloneTestingHeap(class cppgc::HeapHandle &) -??0StandaloneTestingHeap@testing@cppgc@@QAE@AAVHeapHandle@2@@Z ; has WINAPI (@4) -; public: __thiscall v8::ScriptCompiler::StreamedSource::StreamedSource(class std::Cr::>,enum v8::ScriptCompiler::StreamedSource::Encoding) -??0StreamedSource@ScriptCompiler@v8@@QAE@V?$unique_ptr@VExternalSourceStream@ScriptCompiler@v8@@U?$default_delete@VExternalSourceStream@ScriptCompiler@v8@@@Cr@std@@@Cr@std@@W4Encoding@012@@Z ; has WINAPI (@8) -; public: __thiscall v8_inspector::String16::String16(char const *) -??0String16@v8_inspector@@QAE@PBD@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::String16::String16(unsigned short const *) -??0String16@v8_inspector@@QAE@PBG@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::StringBuffer::StringBuffer(class v8_inspector::StringBuffer const &) -??0StringBuffer@v8_inspector@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::StringBuffer::StringBuffer(void) -??0StringBuffer@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::StringView::StringView(unsigned char const *,unsigned int) -??0StringView@v8_inspector@@QAE@PBEI@Z ; has WINAPI (@8) -; public: __thiscall v8_inspector::StringView::StringView(unsigned short const *,unsigned int) -??0StringView@v8_inspector@@QAE@PBGI@Z ; has WINAPI (@8) -; public: __thiscall v8_inspector::StringView::StringView(void) -??0StringView@v8_inspector@@QAE@XZ -; public: __thiscall v8::Isolate::SuppressMicrotaskExecutionScope::SuppressMicrotaskExecutionScope(class v8::Isolate *,class v8::MicrotaskQueue *) -??0SuppressMicrotaskExecutionScope@Isolate@v8@@QAE@PAV12@PAVMicrotaskQueue@2@@Z ; has WINAPI (@8) -; public: __thiscall v8::internal::TickSample::TickSample(void) -??0TickSample@internal@v8@@QAE@XZ -; public: __thiscall v8::EmbedderHeapTracer::TracedGlobalHandleVisitor::TracedGlobalHandleVisitor(class v8::EmbedderHeapTracer::TracedGlobalHandleVisitor const &) -??0TracedGlobalHandleVisitor@EmbedderHeapTracer@v8@@QAE@ABV012@@Z ; has WINAPI (@4) -; public: __thiscall v8::EmbedderHeapTracer::TracedGlobalHandleVisitor::TracedGlobalHandleVisitor(void) -??0TracedGlobalHandleVisitor@EmbedderHeapTracer@v8@@QAE@XZ -; public: __thiscall v8::TryCatch::TryCatch(class v8::Isolate *) -??0TryCatch@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8::Unlocker::Unlocker(class v8::Isolate *) -??0Unlocker@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8::String::Utf8Value::Utf8Value(class v8::Isolate *,class v8::) -??0Utf8Value@String@v8@@QAE@PAVIsolate@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@8) -; public: __thiscall v8_inspector::V8ContextInfo::V8ContextInfo(class v8::,int,class v8_inspector::StringView) -??0V8ContextInfo@v8_inspector@@QAE@V?$Local@VContext@v8@@@v8@@HVStringView@1@@Z ; has WINAPI (@20) -; private: __thiscall v8_inspector::V8DebuggerId::V8DebuggerId(struct std::Cr::<__int64,__int64>) -??0V8DebuggerId@v8_inspector@@AAE@U?$pair@_J_J@Cr@std@@@Z ; has WINAPI (@16) -; public: __thiscall v8_inspector::V8DebuggerId::V8DebuggerId(void) -??0V8DebuggerId@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::V8Inspector::V8Inspector(class v8_inspector::V8Inspector const &) -??0V8Inspector@v8_inspector@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8Inspector::V8Inspector(void) -??0V8Inspector@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::V8InspectorClient::V8InspectorClient(class v8_inspector::V8InspectorClient const &) -??0V8InspectorClient@v8_inspector@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8InspectorClient::V8InspectorClient(void) -??0V8InspectorClient@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::V8InspectorSession::V8InspectorSession(class v8_inspector::V8InspectorSession const &) -??0V8InspectorSession@v8_inspector@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8InspectorSession::V8InspectorSession(void) -??0V8InspectorSession@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::V8StackTrace::V8StackTrace(class v8_inspector::V8StackTrace const &) -??0V8StackTrace@v8_inspector@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::V8StackTrace::V8StackTrace(void) -??0V8StackTrace@v8_inspector@@QAE@XZ -; public: __thiscall v8_inspector::V8StackTraceId::V8StackTraceId(unsigned int,struct std::Cr::<__int64,__int64>) -??0V8StackTraceId@v8_inspector@@QAE@IU?$pair@_J_J@Cr@std@@@Z ; has WINAPI (@20) -; public: __thiscall v8_inspector::V8StackTraceId::V8StackTraceId(unsigned int,struct std::Cr::<__int64,__int64>,bool) -??0V8StackTraceId@v8_inspector@@QAE@IU?$pair@_J_J@Cr@std@@_N@Z ; has WINAPI (@24) -; public: __thiscall v8_inspector::V8StackTraceId::V8StackTraceId(class v8_inspector::StringView) -??0V8StackTraceId@v8_inspector@@QAE@VStringView@1@@Z ; has WINAPI (@12) -; public: __thiscall v8_inspector::V8StackTraceId::V8StackTraceId(void) -??0V8StackTraceId@v8_inspector@@QAE@XZ -; public: __thiscall v8::String::Value::Value(class v8::Isolate *,class v8::) -??0Value@String@v8@@QAE@PAVIsolate@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@8) -; public: __thiscall v8::ValueDeserializer::ValueDeserializer(class v8::Isolate *,unsigned char const *,unsigned int) -??0ValueDeserializer@v8@@QAE@PAVIsolate@1@PBEI@Z ; has WINAPI (@12) -; public: __thiscall v8::ValueDeserializer::ValueDeserializer(class v8::Isolate *,unsigned char const *,unsigned int,class v8::ValueDeserializer::Delegate *) -??0ValueDeserializer@v8@@QAE@PAVIsolate@1@PBEIPAVDelegate@01@@Z ; has WINAPI (@16) -; public: __thiscall v8::ValueSerializer::ValueSerializer(class v8::Isolate *) -??0ValueSerializer@v8@@QAE@PAVIsolate@1@@Z ; has WINAPI (@4) -; public: __thiscall v8::ValueSerializer::ValueSerializer(class v8::Isolate *,class v8::ValueSerializer::Delegate *) -??0ValueSerializer@v8@@QAE@PAVIsolate@1@PAVDelegate@01@@Z ; has WINAPI (@8) -; public: __thiscall cppgc::Visitor::Visitor(class cppgc::Visitor const &) -??0Visitor@cppgc@@QAE@ABV01@@Z ; has WINAPI (@4) -; public: __thiscall cppgc::Visitor::Visitor(class cppgc::Visitor::Key) -??0Visitor@cppgc@@QAE@VKey@01@@Z ; has WINAPI (@4) -; public: __thiscall v8::WasmStreaming::WasmStreaming(class std::Cr::>) -??0WasmStreaming@v8@@QAE@V?$unique_ptr@VWasmStreamingImpl@WasmStreaming@v8@@U?$default_delete@VWasmStreamingImpl@WasmStreaming@v8@@@Cr@std@@@Cr@std@@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::WebDriverValue::WebDriverValue(,class v8_inspector::WebDriverValue *const) -??0WebDriverValue@v8_inspector@@QAE@$$QAV01@@Z ; has WINAPI (@4) -; public: __thiscall v8_inspector::WebDriverValue::WebDriverValue(class std::Cr::>,class v8::) -??0WebDriverValue@v8_inspector@@QAE@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@V?$MaybeLocal@VValue@v8@@@v8@@@Z ; has WINAPI (@8) -; private: __thiscall v8::internal::WebSnapshotDeserializer::WebSnapshotDeserializer(class v8::internal::Isolate *,class v8::internal::,class v8::base::) -??0WebSnapshotDeserializer@internal@v8@@AAE@PAVIsolate@12@V?$Handle@VObject@internal@v8@@@12@V?$Vector@$$CBE@base@2@@Z ; has WINAPI (@16) -; public: __thiscall v8::internal::WebSnapshotDeserializer::WebSnapshotDeserializer(class v8::internal::Isolate *,class v8::internal::) -??0WebSnapshotDeserializer@internal@v8@@QAE@PAVIsolate@12@V?$Handle@VScript@internal@v8@@@12@@Z ; has WINAPI (@8) -; public: __thiscall v8::internal::WebSnapshotDeserializer::WebSnapshotDeserializer(class v8::Isolate *,unsigned char const *,unsigned int) -??0WebSnapshotDeserializer@internal@v8@@QAE@PAVIsolate@2@PBEI@Z ; has WINAPI (@12) -; public: __thiscall v8::internal::WebSnapshotSerializer::WebSnapshotSerializer(class v8::internal::Isolate *) -??0WebSnapshotSerializer@internal@v8@@QAE@PAVIsolate@12@@Z ; has WINAPI (@4) -; public: __thiscall v8::internal::WebSnapshotSerializer::WebSnapshotSerializer(class v8::Isolate *) -??0WebSnapshotSerializer@internal@v8@@QAE@PAVIsolate@2@@Z ; has WINAPI (@4) -; public: __thiscall std::Cr::>::~>(void) -??1?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE@XZ -; public: __thiscall std::Cr::>::~>(void) -??1?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE@XZ -; public: virtual __thiscall v8::ActivityControl::~ActivityControl(void) -??1ActivityControl@v8@@UAE@XZ -; public: virtual __thiscall v8::AllocationProfile::~AllocationProfile(void) -??1AllocationProfile@v8@@UAE@XZ -; public: virtual __thiscall v8::ArrayBuffer::Allocator::~Allocator(void) -??1Allocator@ArrayBuffer@v8@@UAE@XZ -; public: __thiscall v8::Isolate::AllowJavascriptExecutionScope::~AllowJavascriptExecutionScope(void) -??1AllowJavascriptExecutionScope@Isolate@v8@@QAE@XZ -; public: virtual __thiscall node::ArrayBufferAllocator::~ArrayBufferAllocator(void) -??1ArrayBufferAllocator@node@@UAE@XZ -; public: virtual __thiscall node::AsyncResource::~AsyncResource(void) -??1AsyncResource@node@@UAE@XZ -; public: __thiscall v8::BackingStore::~BackingStore(void) -??1BackingStore@v8@@QAE@XZ -; public: __thiscall v8::Context::BackupIncumbentScope::~BackupIncumbentScope(void) -??1BackupIncumbentScope@Context@v8@@QAE@XZ -; public: __thiscall v8_inspector::protocol::Binary::~Binary(void) -??1Binary@protocol@v8_inspector@@QAE@XZ -; public: __thiscall v8::ScriptCompiler::CachedData::~CachedData(void) -??1CachedData@ScriptCompiler@v8@@QAE@XZ -; public: __thiscall node::AsyncResource::CallbackScope::~CallbackScope(void) -??1CallbackScope@AsyncResource@node@@QAE@XZ -; public: __thiscall node::CallbackScope::~CallbackScope(void) -??1CallbackScope@node@@QAE@XZ -; public: virtual __thiscall v8_inspector::V8Inspector::Channel::~Channel(void) -??1Channel@V8Inspector@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8::CodeEventHandler::~CodeEventHandler(void) -??1CodeEventHandler@v8@@UAE@XZ -; public: virtual __thiscall v8_inspector::V8InspectorSession::CommandLineAPIScope::~CommandLineAPIScope(void) -??1CommandLineAPIScope@V8InspectorSession@v8_inspector@@UAE@XZ -; public: __thiscall node::CommonEnvironmentSetup::~CommonEnvironmentSetup(void) -??1CommonEnvironmentSetup@node@@QAE@XZ -; public: __thiscall v8::CompiledWasmModule::~CompiledWasmModule(void) -??1CompiledWasmModule@v8@@QAE@XZ -; public: __thiscall v8::ScriptCompiler::ConsumeCodeCacheTask::~ConsumeCodeCacheTask(void) -??1ConsumeCodeCacheTask@ScriptCompiler@v8@@QAE@XZ -; public: virtual __thiscall v8::CppHeap::~CppHeap(void) -??1CppHeap@v8@@UAE@XZ -; public: __thiscall v8::CppHeapCreateParams::~CppHeapCreateParams(void) -??1CppHeapCreateParams@v8@@QAE@XZ -; public: __thiscall v8::CpuProfileDeoptInfo::~CpuProfileDeoptInfo(void) -??1CpuProfileDeoptInfo@v8@@QAE@XZ -; public: __thiscall v8::CpuProfilingOptions::~CpuProfilingOptions(void) -??1CpuProfilingOptions@v8@@QAE@XZ -; public: __thiscall v8::Isolate::CreateParams::~CreateParams(void) -??1CreateParams@Isolate@v8@@QAE@XZ -; public: __thiscall cppgc::internal::CrossThreadPersistentRegion::~CrossThreadPersistentRegion(void) -??1CrossThreadPersistentRegion@internal@cppgc@@QAE@XZ -; public: virtual __thiscall v8::ValueDeserializer::Delegate::~Delegate(void) -??1Delegate@ValueDeserializer@v8@@UAE@XZ -; public: virtual __thiscall v8::ValueSerializer::Delegate::~Delegate(void) -??1Delegate@ValueSerializer@v8@@UAE@XZ -; public: __thiscall cppgc::subtle::DisallowGarbageCollectionScope::~DisallowGarbageCollectionScope(void) -??1DisallowGarbageCollectionScope@subtle@cppgc@@QAE@XZ -; public: __thiscall v8::Isolate::DisallowJavascriptExecutionScope::~DisallowJavascriptExecutionScope(void) -??1DisallowJavascriptExecutionScope@Isolate@v8@@QAE@XZ -; public: virtual __thiscall v8::DiscardedSamplesDelegate::~DiscardedSamplesDelegate(void) -??1DiscardedSamplesDelegate@v8@@UAE@XZ -; public: virtual __thiscall v8_inspector::protocol::Schema::API::Domain::~Domain(void) -??1Domain@API@Schema@protocol@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8::EmbedderGraph::~EmbedderGraph(void) -??1EmbedderGraph@v8@@UAE@XZ -; public: virtual __thiscall v8::EmbedderHeapTracer::~EmbedderHeapTracer(void) -??1EmbedderHeapTracer@v8@@UAE@XZ -; public: virtual __thiscall v8::EmbedderRootsHandler::~EmbedderRootsHandler(void) -??1EmbedderRootsHandler@v8@@UAE@XZ -; public: __thiscall v8::EmbedderStateScope::~EmbedderStateScope(void) -??1EmbedderStateScope@v8@@QAE@XZ -; public: __thiscall v8::EscapableHandleScope::~EscapableHandleScope(void) -??1EscapableHandleScope@v8@@QAE@XZ -; public: virtual __thiscall v8_inspector::protocol::Exported::~Exported(void) -??1Exported@protocol@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8::Extension::~Extension(void) -??1Extension@v8@@UAE@XZ -; public: virtual __thiscall v8::String::ExternalOneByteStringResource::~ExternalOneByteStringResource(void) -??1ExternalOneByteStringResource@String@v8@@UAE@XZ -; public: virtual __thiscall v8::ExternalResourceVisitor::~ExternalResourceVisitor(void) -??1ExternalResourceVisitor@v8@@UAE@XZ -; public: virtual __thiscall v8::ScriptCompiler::ExternalSourceStream::~ExternalSourceStream(void) -??1ExternalSourceStream@ScriptCompiler@v8@@UAE@XZ -; public: virtual __thiscall v8::String::ExternalStringResource::~ExternalStringResource(void) -??1ExternalStringResource@String@v8@@UAE@XZ -; public: virtual __thiscall v8::String::ExternalStringResourceBase::~ExternalStringResourceBase(void) -??1ExternalStringResourceBase@String@v8@@UAE@XZ -; public: __thiscall cppgc::internal::GCInfoTable::~GCInfoTable(void) -??1GCInfoTable@internal@cppgc@@QAE@XZ -; public: __thiscall v8::HandleScope::~HandleScope(void) -??1HandleScope@v8@@QAE@XZ -; public: virtual __thiscall cppgc::Heap::~Heap(void) -??1Heap@cppgc@@UAE@XZ -; public: virtual __thiscall v8_inspector::V8InspectorSession::Inspectable::~Inspectable(void) -??1Inspectable@V8InspectorSession@v8_inspector@@UAE@XZ -; public: __thiscall v8::Locker::~Locker(void) -??1Locker@v8@@QAE@XZ -; public: virtual __thiscall v8::MeasureMemoryDelegate::~MeasureMemoryDelegate(void) -??1MeasureMemoryDelegate@v8@@UAE@XZ -; public: virtual __thiscall v8::MicrotaskQueue::~MicrotaskQueue(void) -??1MicrotaskQueue@v8@@UAE@XZ -; public: __thiscall v8::MicrotasksScope::~MicrotasksScope(void) -??1MicrotasksScope@v8@@QAE@XZ -; public: virtual __thiscall node::MultiIsolatePlatform::~MultiIsolatePlatform(void) -??1MultiIsolatePlatform@node@@UAE@XZ -; public: virtual __thiscall cppgc::NameProvider::~NameProvider(void) -??1NameProvider@cppgc@@UAE@XZ -; public: __thiscall cppgc::subtle::NoGarbageCollectionScope::~NoGarbageCollectionScope(void) -??1NoGarbageCollectionScope@subtle@cppgc@@QAE@XZ -; public: virtual __thiscall v8::OutputStream::~OutputStream(void) -??1OutputStream@v8@@UAE@XZ -; public: __thiscall cppgc::testing::OverrideEmbedderStackStateScope::~OverrideEmbedderStackStateScope(void) -??1OverrideEmbedderStackStateScope@testing@cppgc@@QAE@XZ -; public: virtual __thiscall v8::PersistentHandleVisitor::~PersistentHandleVisitor(void) -??1PersistentHandleVisitor@v8@@UAE@XZ -; public: __thiscall cppgc::internal::PersistentRegion::~PersistentRegion(void) -??1PersistentRegion@internal@cppgc@@QAE@XZ -; public: __thiscall cppgc::internal::PersistentRegionBase::~PersistentRegionBase(void) -??1PersistentRegionBase@internal@cppgc@@QAE@XZ -; public: __thiscall cppgc::internal::PersistentRegionLock::~PersistentRegionLock(void) -??1PersistentRegionLock@internal@cppgc@@QAE@XZ -; public: virtual __thiscall cppgc::Platform::~Platform(void) -??1Platform@cppgc@@UAE@XZ -; public: __thiscall v8::PropertyDescriptor::~PropertyDescriptor(void) -??1PropertyDescriptor@v8@@QAE@XZ -; public: virtual __thiscall v8::metrics::Recorder::~Recorder(void) -??1Recorder@metrics@v8@@UAE@XZ -; public: __thiscall v8::RegisterState::~RegisterState(void) -??1RegisterState@v8@@QAE@XZ -; public: virtual __thiscall v8_inspector::protocol::Runtime::API::RemoteObject::~RemoteObject(void) -??1RemoteObject@API@Runtime@protocol@v8_inspector@@UAE@XZ -; public: virtual __thiscall cppgc::internal::RootVisitor::~RootVisitor(void) -??1RootVisitor@internal@cppgc@@UAE@XZ -; public: __thiscall v8::Isolate::SafeForTerminationScope::~SafeForTerminationScope(void) -??1SafeForTerminationScope@Isolate@v8@@QAE@XZ -; public: __thiscall v8::Isolate::Scope::~Scope(void) -??1Scope@Isolate@v8@@QAE@XZ -; public: __thiscall v8::SealHandleScope::~SealHandleScope(void) -??1SealHandleScope@v8@@QAE@XZ -; public: virtual __thiscall v8_inspector::protocol::Debugger::API::SearchMatch::~SearchMatch(void) -??1SearchMatch@API@Debugger@protocol@v8_inspector@@UAE@XZ -; public: __thiscall v8::SharedValueConveyor::~SharedValueConveyor(void) -??1SharedValueConveyor@v8@@QAE@XZ -; public: __thiscall v8::SnapshotCreator::~SnapshotCreator(void) -??1SnapshotCreator@v8@@QAE@XZ -; public: virtual __thiscall v8_inspector::protocol::Runtime::API::StackTrace::~StackTrace(void) -??1StackTrace@API@Runtime@protocol@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8_inspector::protocol::Runtime::API::StackTraceId::~StackTraceId(void) -??1StackTraceId@API@Runtime@protocol@v8_inspector@@UAE@XZ -; public: __thiscall v8::ScriptCompiler::StreamedSource::~StreamedSource(void) -??1StreamedSource@ScriptCompiler@v8@@QAE@XZ -; public: virtual __thiscall v8_inspector::StringBuffer::~StringBuffer(void) -??1StringBuffer@v8_inspector@@UAE@XZ -; public: __thiscall v8::Isolate::SuppressMicrotaskExecutionScope::~SuppressMicrotaskExecutionScope(void) -??1SuppressMicrotaskExecutionScope@Isolate@v8@@QAE@XZ -; public: virtual __thiscall v8::EmbedderHeapTracer::TracedGlobalHandleVisitor::~TracedGlobalHandleVisitor(void) -??1TracedGlobalHandleVisitor@EmbedderHeapTracer@v8@@UAE@XZ -; public: __thiscall v8::TryCatch::~TryCatch(void) -??1TryCatch@v8@@QAE@XZ -; public: __thiscall v8::Unlocker::~Unlocker(void) -??1Unlocker@v8@@QAE@XZ -; public: __thiscall v8::String::Utf8Value::~Utf8Value(void) -??1Utf8Value@String@v8@@QAE@XZ -; public: virtual __thiscall v8_inspector::V8Inspector::~V8Inspector(void) -??1V8Inspector@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8_inspector::V8InspectorClient::~V8InspectorClient(void) -??1V8InspectorClient@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8_inspector::V8InspectorSession::~V8InspectorSession(void) -??1V8InspectorSession@v8_inspector@@UAE@XZ -; public: virtual __thiscall v8_inspector::V8StackTrace::~V8StackTrace(void) -??1V8StackTrace@v8_inspector@@UAE@XZ -; public: __thiscall v8::String::Value::~Value(void) -??1Value@String@v8@@QAE@XZ -; public: __thiscall v8::ValueDeserializer::~ValueDeserializer(void) -??1ValueDeserializer@v8@@QAE@XZ -; public: __thiscall v8::ValueSerializer::~ValueSerializer(void) -??1ValueSerializer@v8@@QAE@XZ -; public: virtual __thiscall cppgc::Visitor::~Visitor(void) -??1Visitor@cppgc@@UAE@XZ -; public: __thiscall v8::WasmStreaming::~WasmStreaming(void) -??1WasmStreaming@v8@@QAE@XZ -; public: __thiscall v8_inspector::WebDriverValue::~WebDriverValue(void) -??1WebDriverValue@v8_inspector@@QAE@XZ -; public: __thiscall v8::internal::WebSnapshotDeserializer::~WebSnapshotDeserializer(void) -??1WebSnapshotDeserializer@internal@v8@@QAE@XZ -; public: __thiscall v8::internal::WebSnapshotSerializer::~WebSnapshotSerializer(void) -??1WebSnapshotSerializer@internal@v8@@QAE@XZ -; private: static void *__cdecl v8::EscapableHandleScope::operator new(unsigned int) -??2EscapableHandleScope@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl cppgc::internal::GlobalGCInfoTable::operator new(unsigned int) -??2GlobalGCInfoTable@internal@cppgc@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl v8::HandleScope::operator new(unsigned int) -??2HandleScope@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl v8::SealHandleScope::operator new(unsigned int) -??2SealHandleScope@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl v8::TryCatch::operator new(unsigned int) -??2TryCatch@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: static void __cdecl v8::BackingStore::operator delete(void *) -??3BackingStore@v8@@SAXPAX@Z -; private: static void __cdecl v8::EscapableHandleScope::operator delete(void *,unsigned int) -??3EscapableHandleScope@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl cppgc::internal::GlobalGCInfoTable::operator delete(void *,unsigned int) -??3GlobalGCInfoTable@internal@cppgc@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::HandleScope::operator delete(void *,unsigned int) -??3HandleScope@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::SealHandleScope::operator delete(void *,unsigned int) -??3SealHandleScope@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::TryCatch::operator delete(void *,unsigned int) -??3TryCatch@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$CTypeInfoBuilder@H$S@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$CTypeInfoBuilder@H$S@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$CTypeInfoBuilder@I$S@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$CTypeInfoBuilder@I$S@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$CTypeInfoBuilder@M$S@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$CTypeInfoBuilder@M$S@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$CTypeInfoBuilder@N$S@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$CTypeInfoBuilder@N$S@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$MemorySpan@$$CBD@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$MemorySpan@$$CBD@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$MemorySpan@$$CBE@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$MemorySpan@$$CBE@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(,class v8:: *const) -??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8:: &__thiscall v8::::operator =(class v8:: const &) -??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class std::Cr::> &__thiscall std::Cr::>::operator =(,class std::Cr::> *const) -??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class std::Cr::> &__thiscall std::Cr::>::operator =(class std::Cr::> const &) -??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class std::Cr::> &__thiscall std::Cr::>::operator =(class std::) -??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAV012@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z ; has WINAPI (@8) -; public: class std::Cr::> &__thiscall std::Cr::>::operator =(,class std::Cr::> *const) -??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class std::Cr::> &__thiscall std::Cr::>::operator =(class std::Cr::> const &) -??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class std::Cr::> &__thiscall std::Cr::>::operator =(class std::) -??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAV012@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8::ActivityControl &__thiscall v8::ActivityControl::operator =(class v8::ActivityControl const &) -??4ActivityControl@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::AllocationHandle &__thiscall cppgc::AllocationHandle::operator =(,class cppgc::AllocationHandle *const) -??4AllocationHandle@cppgc@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class cppgc::AllocationHandle &__thiscall cppgc::AllocationHandle::operator =(class cppgc::AllocationHandle const &) -??4AllocationHandle@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::AllocationProfile &__thiscall v8::AllocationProfile::operator =(class v8::AllocationProfile const &) -??4AllocationProfile@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ArrayBuffer::Allocator &__thiscall v8::ArrayBuffer::Allocator::operator =(class v8::ArrayBuffer::Allocator const &) -??4Allocator@ArrayBuffer@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Array &__thiscall v8::Array::operator =(,class v8::Array *const) -??4Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Array &__thiscall v8::Array::operator =(class v8::Array const &) -??4Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ArrayBuffer &__thiscall v8::ArrayBuffer::operator =(,class v8::ArrayBuffer *const) -??4ArrayBuffer@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ArrayBuffer &__thiscall v8::ArrayBuffer::operator =(class v8::ArrayBuffer const &) -??4ArrayBuffer@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class node::ArrayBufferAllocator &__thiscall node::ArrayBufferAllocator::operator =(,class node::ArrayBufferAllocator *const) -??4ArrayBufferAllocator@node@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class node::ArrayBufferAllocator &__thiscall node::ArrayBufferAllocator::operator =(class node::ArrayBufferAllocator const &) -??4ArrayBufferAllocator@node@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ArrayBufferView &__thiscall v8::ArrayBufferView::operator =(,class v8::ArrayBufferView *const) -??4ArrayBufferView@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ArrayBufferView &__thiscall v8::ArrayBufferView::operator =(class v8::ArrayBufferView const &) -??4ArrayBufferView@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Isolate::AtomicsWaitWakeHandle &__thiscall v8::Isolate::AtomicsWaitWakeHandle::operator =(,class v8::Isolate::AtomicsWaitWakeHandle *const) -??4AtomicsWaitWakeHandle@Isolate@v8@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class v8::Isolate::AtomicsWaitWakeHandle &__thiscall v8::Isolate::AtomicsWaitWakeHandle::operator =(class v8::Isolate::AtomicsWaitWakeHandle const &) -??4AtomicsWaitWakeHandle@Isolate@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::BackingStore &__thiscall v8::BackingStore::operator =(class v8::BackingStore const &) -??4BackingStore@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Context::BackupIncumbentScope &__thiscall v8::Context::BackupIncumbentScope::operator =(class v8::Context::BackupIncumbentScope const &) -??4BackupIncumbentScope@Context@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: struct cppgc::internal::BaseObjectSizeTrait &__thiscall cppgc::internal::BaseObjectSizeTrait::operator =(,struct cppgc::internal::BaseObjectSizeTrait *const) -??4BaseObjectSizeTrait@internal@cppgc@@QAEAAU012@$$QAU012@@Z ; has WINAPI (@4) -; public: struct cppgc::internal::BaseObjectSizeTrait &__thiscall cppgc::internal::BaseObjectSizeTrait::operator =(struct cppgc::internal::BaseObjectSizeTrait const &) -??4BaseObjectSizeTrait@internal@cppgc@@QAEAAU012@ABU012@@Z ; has WINAPI (@4) -; public: class v8::BigInt64Array &__thiscall v8::BigInt64Array::operator =(,class v8::BigInt64Array *const) -??4BigInt64Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::BigInt64Array &__thiscall v8::BigInt64Array::operator =(class v8::BigInt64Array const &) -??4BigInt64Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::BigInt &__thiscall v8::BigInt::operator =(,class v8::BigInt *const) -??4BigInt@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::BigInt &__thiscall v8::BigInt::operator =(class v8::BigInt const &) -??4BigInt@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::BigIntObject &__thiscall v8::BigIntObject::operator =(,class v8::BigIntObject *const) -??4BigIntObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::BigIntObject &__thiscall v8::BigIntObject::operator =(class v8::BigIntObject const &) -??4BigIntObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::BigUint64Array &__thiscall v8::BigUint64Array::operator =(,class v8::BigUint64Array *const) -??4BigUint64Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::BigUint64Array &__thiscall v8::BigUint64Array::operator =(class v8::BigUint64Array const &) -??4BigUint64Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Binary &__thiscall v8_inspector::protocol::Binary::operator =(,class v8_inspector::protocol::Binary *const) -??4Binary@protocol@v8_inspector@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Binary &__thiscall v8_inspector::protocol::Binary::operator =(class v8_inspector::protocol::Binary const &) -??4Binary@protocol@v8_inspector@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Boolean &__thiscall v8::Boolean::operator =(,class v8::Boolean *const) -??4Boolean@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Boolean &__thiscall v8::Boolean::operator =(class v8::Boolean const &) -??4Boolean@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::BooleanObject &__thiscall v8::BooleanObject::operator =(,class v8::BooleanObject *const) -??4BooleanObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::BooleanObject &__thiscall v8::BooleanObject::operator =(class v8::BooleanObject const &) -??4BooleanObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::CFunction &__thiscall v8::CFunction::operator =(,class v8::CFunction *const) -??4CFunction@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::CFunction &__thiscall v8::CFunction::operator =(class v8::CFunction const &) -??4CFunction@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8Inspector::Channel &__thiscall v8_inspector::V8Inspector::Channel::operator =(class v8_inspector::V8Inspector::Channel const &) -??4Channel@V8Inspector@v8_inspector@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::CodeEvent &__thiscall v8::CodeEvent::operator =(,class v8::CodeEvent *const) -??4CodeEvent@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::CodeEvent &__thiscall v8::CodeEvent::operator =(class v8::CodeEvent const &) -??4CodeEvent@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8InspectorSession::CommandLineAPIScope &__thiscall v8_inspector::V8InspectorSession::CommandLineAPIScope::operator =(class v8_inspector::V8InspectorSession::CommandLineAPIScope const &) -??4CommandLineAPIScope@V8InspectorSession@v8_inspector@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Context &__thiscall v8::Context::operator =(,class v8::Context *const) -??4Context@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Context &__thiscall v8::Context::operator =(class v8::Context const &) -??4Context@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::CppHeap &__thiscall v8::CppHeap::operator =(class v8::CppHeap const &) -??4CppHeap@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::CpuProfile &__thiscall v8::CpuProfile::operator =(,class v8::CpuProfile *const) -??4CpuProfile@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::CpuProfile &__thiscall v8::CpuProfile::operator =(class v8::CpuProfile const &) -??4CpuProfile@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptInfo &__thiscall v8::CpuProfileDeoptInfo::operator =(,struct v8::CpuProfileDeoptInfo *const) -??4CpuProfileDeoptInfo@v8@@QAEAAU01@$$QAU01@@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptInfo &__thiscall v8::CpuProfileDeoptInfo::operator =(struct v8::CpuProfileDeoptInfo const &) -??4CpuProfileDeoptInfo@v8@@QAEAAU01@ABU01@@Z ; has WINAPI (@4) -; public: class v8::CpuProfileNode &__thiscall v8::CpuProfileNode::operator =(,class v8::CpuProfileNode *const) -??4CpuProfileNode@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::CpuProfileNode &__thiscall v8::CpuProfileNode::operator =(class v8::CpuProfileNode const &) -??4CpuProfileNode@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::CpuProfilingOptions &__thiscall v8::CpuProfilingOptions::operator =(,class v8::CpuProfilingOptions *const) -??4CpuProfilingOptions@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: struct v8::Isolate::CreateParams &__thiscall v8::Isolate::CreateParams::operator =(,struct v8::Isolate::CreateParams *const) -??4CreateParams@Isolate@v8@@QAEAAU012@$$QAU012@@Z ; has WINAPI (@4) -; public: struct v8::Isolate::CreateParams &__thiscall v8::Isolate::CreateParams::operator =(struct v8::Isolate::CreateParams const &) -??4CreateParams@Isolate@v8@@QAEAAU012@ABU012@@Z ; has WINAPI (@4) -; public: class v8::Data &__thiscall v8::Data::operator =(,class v8::Data *const) -??4Data@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Data &__thiscall v8::Data::operator =(class v8::Data const &) -??4Data@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::DataView &__thiscall v8::DataView::operator =(,class v8::DataView *const) -??4DataView@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::DataView &__thiscall v8::DataView::operator =(class v8::DataView const &) -??4DataView@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Date &__thiscall v8::Date::operator =(,class v8::Date *const) -??4Date@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Date &__thiscall v8::Date::operator =(class v8::Date const &) -??4Date@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ValueDeserializer::Delegate &__thiscall v8::ValueDeserializer::Delegate::operator =(class v8::ValueDeserializer::Delegate const &) -??4Delegate@ValueDeserializer@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::ValueSerializer::Delegate &__thiscall v8::ValueSerializer::Delegate::operator =(class v8::ValueSerializer::Delegate const &) -??4Delegate@ValueSerializer@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: struct node::DeleteACHHandle &__thiscall node::DeleteACHHandle::operator =(,struct node::DeleteACHHandle *const) -??4DeleteACHHandle@node@@QAEAAU01@$$QAU01@@Z ; has WINAPI (@4) -; public: struct node::DeleteACHHandle &__thiscall node::DeleteACHHandle::operator =(struct node::DeleteACHHandle const &) -??4DeleteACHHandle@node@@QAEAAU01@ABU01@@Z ; has WINAPI (@4) -; public: class v8::DiscardedSamplesDelegate &__thiscall v8::DiscardedSamplesDelegate::operator =(class v8::DiscardedSamplesDelegate const &) -??4DiscardedSamplesDelegate@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Schema::API::Domain &__thiscall v8_inspector::protocol::Schema::API::Domain::operator =(,class v8_inspector::protocol::Schema::API::Domain *const) -??4Domain@API@Schema@protocol@v8_inspector@@QAEAAV01234@$$QAV01234@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Schema::API::Domain &__thiscall v8_inspector::protocol::Schema::API::Domain::operator =(class v8_inspector::protocol::Schema::API::Domain const &) -??4Domain@API@Schema@protocol@v8_inspector@@QAEAAV01234@ABV01234@@Z ; has WINAPI (@4) -; public: class v8::EmbedderGraph &__thiscall v8::EmbedderGraph::operator =(class v8::EmbedderGraph const &) -??4EmbedderGraph@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::EmbedderHeapTracer &__thiscall v8::EmbedderHeapTracer::operator =(class v8::EmbedderHeapTracer const &) -??4EmbedderHeapTracer@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::EmbedderRootsHandler &__thiscall v8::EmbedderRootsHandler::operator =(class v8::EmbedderRootsHandler const &) -??4EmbedderRootsHandler@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: struct cppgc::internal::EnsureGCInfoIndexTrait &__thiscall cppgc::internal::EnsureGCInfoIndexTrait::operator =(,struct cppgc::internal::EnsureGCInfoIndexTrait *const) -??4EnsureGCInfoIndexTrait@internal@cppgc@@QAEAAU012@$$QAU012@@Z ; has WINAPI (@4) -; public: struct cppgc::internal::EnsureGCInfoIndexTrait &__thiscall cppgc::internal::EnsureGCInfoIndexTrait::operator =(struct cppgc::internal::EnsureGCInfoIndexTrait const &) -??4EnsureGCInfoIndexTrait@internal@cppgc@@QAEAAU012@ABU012@@Z ; has WINAPI (@4) -; public: class v8::Exception &__thiscall v8::Exception::operator =(,class v8::Exception *const) -??4Exception@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Exception &__thiscall v8::Exception::operator =(class v8::Exception const &) -??4Exception@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Exported &__thiscall v8_inspector::protocol::Exported::operator =(class v8_inspector::protocol::Exported const &) -??4Exported@protocol@v8_inspector@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::External &__thiscall v8::External::operator =(,class v8::External *const) -??4External@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::External &__thiscall v8::External::operator =(class v8::External const &) -??4External@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ExternalResourceVisitor &__thiscall v8::ExternalResourceVisitor::operator =(class v8::ExternalResourceVisitor const &) -??4ExternalResourceVisitor@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ScriptCompiler::ExternalSourceStream &__thiscall v8::ScriptCompiler::ExternalSourceStream::operator =(class v8::ScriptCompiler::ExternalSourceStream const &) -??4ExternalSourceStream@ScriptCompiler@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::FixedArray &__thiscall v8::FixedArray::operator =(,class v8::FixedArray *const) -??4FixedArray@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::FixedArray &__thiscall v8::FixedArray::operator =(class v8::FixedArray const &) -??4FixedArray@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Float32Array &__thiscall v8::Float32Array::operator =(,class v8::Float32Array *const) -??4Float32Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Float32Array &__thiscall v8::Float32Array::operator =(class v8::Float32Array const &) -??4Float32Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Float64Array &__thiscall v8::Float64Array::operator =(,class v8::Float64Array *const) -??4Float64Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Float64Array &__thiscall v8::Float64Array::operator =(class v8::Float64Array const &) -??4Float64Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Function &__thiscall v8::Function::operator =(,class v8::Function *const) -??4Function@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Function &__thiscall v8::Function::operator =(class v8::Function const &) -??4Function@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::FunctionTemplate &__thiscall v8::FunctionTemplate::operator =(,class v8::FunctionTemplate *const) -??4FunctionTemplate@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::FunctionTemplate &__thiscall v8::FunctionTemplate::operator =(class v8::FunctionTemplate const &) -??4FunctionTemplate@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::Heap &__thiscall cppgc::Heap::operator =(class cppgc::Heap const &) -??4Heap@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::HeapCodeStatistics &__thiscall v8::HeapCodeStatistics::operator =(,class v8::HeapCodeStatistics *const) -??4HeapCodeStatistics@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapCodeStatistics &__thiscall v8::HeapCodeStatistics::operator =(class v8::HeapCodeStatistics const &) -??4HeapCodeStatistics@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::HeapGraphEdge &__thiscall v8::HeapGraphEdge::operator =(,class v8::HeapGraphEdge *const) -??4HeapGraphEdge@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapGraphEdge &__thiscall v8::HeapGraphEdge::operator =(class v8::HeapGraphEdge const &) -??4HeapGraphEdge@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::HeapGraphNode &__thiscall v8::HeapGraphNode::operator =(,class v8::HeapGraphNode *const) -??4HeapGraphNode@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapGraphNode &__thiscall v8::HeapGraphNode::operator =(class v8::HeapGraphNode const &) -??4HeapGraphNode@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::HeapObjectStatistics &__thiscall v8::HeapObjectStatistics::operator =(,class v8::HeapObjectStatistics *const) -??4HeapObjectStatistics@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapObjectStatistics &__thiscall v8::HeapObjectStatistics::operator =(class v8::HeapObjectStatistics const &) -??4HeapObjectStatistics@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::HeapSnapshot &__thiscall v8::HeapSnapshot::operator =(,class v8::HeapSnapshot *const) -??4HeapSnapshot@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapSnapshot &__thiscall v8::HeapSnapshot::operator =(class v8::HeapSnapshot const &) -??4HeapSnapshot@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::HeapSpaceStatistics &__thiscall v8::HeapSpaceStatistics::operator =(,class v8::HeapSpaceStatistics *const) -??4HeapSpaceStatistics@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapSpaceStatistics &__thiscall v8::HeapSpaceStatistics::operator =(class v8::HeapSpaceStatistics const &) -??4HeapSpaceStatistics@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::subtle::HeapState &__thiscall cppgc::subtle::HeapState::operator =(,class cppgc::subtle::HeapState *const) -??4HeapState@subtle@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::subtle::HeapState &__thiscall cppgc::subtle::HeapState::operator =(class cppgc::subtle::HeapState const &) -??4HeapState@subtle@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::HeapStatistics &__thiscall v8::HeapStatistics::operator =(,class v8::HeapStatistics *const) -??4HeapStatistics@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::HeapStatistics &__thiscall v8::HeapStatistics::operator =(class v8::HeapStatistics const &) -??4HeapStatistics@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8InspectorSession::Inspectable &__thiscall v8_inspector::V8InspectorSession::Inspectable::operator =(class v8_inspector::V8InspectorSession::Inspectable const &) -??4Inspectable@V8InspectorSession@v8_inspector@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Int16Array &__thiscall v8::Int16Array::operator =(,class v8::Int16Array *const) -??4Int16Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Int16Array &__thiscall v8::Int16Array::operator =(class v8::Int16Array const &) -??4Int16Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Int32 &__thiscall v8::Int32::operator =(,class v8::Int32 *const) -??4Int32@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Int32 &__thiscall v8::Int32::operator =(class v8::Int32 const &) -??4Int32@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Int32Array &__thiscall v8::Int32Array::operator =(,class v8::Int32Array *const) -??4Int32Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Int32Array &__thiscall v8::Int32Array::operator =(class v8::Int32Array const &) -??4Int32Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Int8Array &__thiscall v8::Int8Array::operator =(,class v8::Int8Array *const) -??4Int8Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Int8Array &__thiscall v8::Int8Array::operator =(class v8::Int8Array const &) -??4Int8Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Integer &__thiscall v8::Integer::operator =(,class v8::Integer *const) -??4Integer@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Integer &__thiscall v8::Integer::operator =(class v8::Integer const &) -??4Integer@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class node::IsolatePlatformDelegate &__thiscall node::IsolatePlatformDelegate::operator =(,class node::IsolatePlatformDelegate *const) -??4IsolatePlatformDelegate@node@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class node::IsolatePlatformDelegate &__thiscall node::IsolatePlatformDelegate::operator =(class node::IsolatePlatformDelegate const &) -??4IsolatePlatformDelegate@node@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::JSON &__thiscall v8::JSON::operator =(,class v8::JSON *const) -??4JSON@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::JSON &__thiscall v8::JSON::operator =(class v8::JSON const &) -??4JSON@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::LivenessBroker &__thiscall cppgc::LivenessBroker::operator =(,class cppgc::LivenessBroker *const) -??4LivenessBroker@cppgc@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class cppgc::LivenessBroker &__thiscall cppgc::LivenessBroker::operator =(class cppgc::LivenessBroker const &) -??4LivenessBroker@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Location &__thiscall v8::Location::operator =(,class v8::Location *const) -??4Location@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Location &__thiscall v8::Location::operator =(class v8::Location const &) -??4Location@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: struct v8::metrics::LongTaskStats &__thiscall v8::metrics::LongTaskStats::operator =(,struct v8::metrics::LongTaskStats *const) -??4LongTaskStats@metrics@v8@@QAEAAU012@$$QAU012@@Z ; has WINAPI (@4) -; public: struct v8::metrics::LongTaskStats &__thiscall v8::metrics::LongTaskStats::operator =(struct v8::metrics::LongTaskStats const &) -??4LongTaskStats@metrics@v8@@QAEAAU012@ABU012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::MakeGarbageCollectedTraitInternal &__thiscall cppgc::internal::MakeGarbageCollectedTraitInternal::operator =(,class cppgc::internal::MakeGarbageCollectedTraitInternal *const) -??4MakeGarbageCollectedTraitInternal@internal@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::MakeGarbageCollectedTraitInternal &__thiscall cppgc::internal::MakeGarbageCollectedTraitInternal::operator =(class cppgc::internal::MakeGarbageCollectedTraitInternal const &) -??4MakeGarbageCollectedTraitInternal@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Map &__thiscall v8::Map::operator =(,class v8::Map *const) -??4Map@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Map &__thiscall v8::Map::operator =(class v8::Map const &) -??4Map@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::MeasureMemoryDelegate &__thiscall v8::MeasureMemoryDelegate::operator =(class v8::MeasureMemoryDelegate const &) -??4MeasureMemoryDelegate@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Message &__thiscall v8::Message::operator =(,class v8::Message *const) -??4Message@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Message &__thiscall v8::Message::operator =(class v8::Message const &) -??4Message@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Module &__thiscall v8::Module::operator =(,class v8::Module *const) -??4Module@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Module &__thiscall v8::Module::operator =(class v8::Module const &) -??4Module@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ModuleRequest &__thiscall v8::ModuleRequest::operator =(,class v8::ModuleRequest *const) -??4ModuleRequest@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ModuleRequest &__thiscall v8::ModuleRequest::operator =(class v8::ModuleRequest const &) -??4ModuleRequest@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class node::MultiIsolatePlatform &__thiscall node::MultiIsolatePlatform::operator =(class node::MultiIsolatePlatform const &) -??4MultiIsolatePlatform@node@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Name &__thiscall v8::Name::operator =(,class v8::Name *const) -??4Name@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Name &__thiscall v8::Name::operator =(class v8::Name const &) -??4Name@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::NameProvider &__thiscall cppgc::NameProvider::operator =(class cppgc::NameProvider const &) -??4NameProvider@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::internal::NameTraitBase &__thiscall cppgc::internal::NameTraitBase::operator =(,class cppgc::internal::NameTraitBase *const) -??4NameTraitBase@internal@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::NameTraitBase &__thiscall cppgc::internal::NameTraitBase::operator =(class cppgc::internal::NameTraitBase const &) -??4NameTraitBase@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Number &__thiscall v8::Number::operator =(,class v8::Number *const) -??4Number@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Number &__thiscall v8::Number::operator =(class v8::Number const &) -??4Number@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::NumberObject &__thiscall v8::NumberObject::operator =(,class v8::NumberObject *const) -??4NumberObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::NumberObject &__thiscall v8::NumberObject::operator =(class v8::NumberObject const &) -??4NumberObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Object &__thiscall v8::Object::operator =(,class v8::Object *const) -??4Object@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Object &__thiscall v8::Object::operator =(class v8::Object const &) -??4Object@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ObjectTemplate &__thiscall v8::ObjectTemplate::operator =(,class v8::ObjectTemplate *const) -??4ObjectTemplate@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ObjectTemplate &__thiscall v8::ObjectTemplate::operator =(class v8::ObjectTemplate const &) -??4ObjectTemplate@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::OutputStream &__thiscall v8::OutputStream::operator =(class v8::OutputStream const &) -??4OutputStream@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::PersistentHandleVisitor &__thiscall v8::PersistentHandleVisitor::operator =(class v8::PersistentHandleVisitor const &) -??4PersistentHandleVisitor@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::internal::PersistentRegionLock &__thiscall cppgc::internal::PersistentRegionLock::operator =(class cppgc::internal::PersistentRegionLock const &) -??4PersistentRegionLock@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class cppgc::Platform &__thiscall cppgc::Platform::operator =(class cppgc::Platform const &) -??4Platform@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::internal::PrefinalizerRegistration &__thiscall cppgc::internal::PrefinalizerRegistration::operator =(,class cppgc::internal::PrefinalizerRegistration *const) -??4PrefinalizerRegistration@internal@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::PrefinalizerRegistration &__thiscall cppgc::internal::PrefinalizerRegistration::operator =(class cppgc::internal::PrefinalizerRegistration const &) -??4PrefinalizerRegistration@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Primitive &__thiscall v8::Primitive::operator =(,class v8::Primitive *const) -??4Primitive@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Primitive &__thiscall v8::Primitive::operator =(class v8::Primitive const &) -??4Primitive@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::PrimitiveArray &__thiscall v8::PrimitiveArray::operator =(,class v8::PrimitiveArray *const) -??4PrimitiveArray@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::PrimitiveArray &__thiscall v8::PrimitiveArray::operator =(class v8::PrimitiveArray const &) -??4PrimitiveArray@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Private &__thiscall v8::Private::operator =(,class v8::Private *const) -??4Private@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Private &__thiscall v8::Private::operator =(class v8::Private const &) -??4Private@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::ProcessHeapStatistics &__thiscall cppgc::ProcessHeapStatistics::operator =(,class cppgc::ProcessHeapStatistics *const) -??4ProcessHeapStatistics@cppgc@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class cppgc::ProcessHeapStatistics &__thiscall cppgc::ProcessHeapStatistics::operator =(class cppgc::ProcessHeapStatistics const &) -??4ProcessHeapStatistics@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Promise &__thiscall v8::Promise::operator =(,class v8::Promise *const) -??4Promise@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Promise &__thiscall v8::Promise::operator =(class v8::Promise const &) -??4Promise@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Proxy &__thiscall v8::Proxy::operator =(,class v8::Proxy *const) -??4Proxy@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Proxy &__thiscall v8::Proxy::operator =(class v8::Proxy const &) -??4Proxy@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::metrics::Recorder &__thiscall v8::metrics::Recorder::operator =(class v8::metrics::Recorder const &) -??4Recorder@metrics@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::RegExp &__thiscall v8::RegExp::operator =(,class v8::RegExp *const) -??4RegExp@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::RegExp &__thiscall v8::RegExp::operator =(class v8::RegExp const &) -??4RegExp@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: struct v8::RegisterState &__thiscall v8::RegisterState::operator =(struct v8::RegisterState const &) -??4RegisterState@v8@@QAEAAU01@ABU01@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Runtime::API::RemoteObject &__thiscall v8_inspector::protocol::Runtime::API::RemoteObject::operator =(,class v8_inspector::protocol::Runtime::API::RemoteObject *const) -??4RemoteObject@API@Runtime@protocol@v8_inspector@@QAEAAV01234@$$QAV01234@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Runtime::API::RemoteObject &__thiscall v8_inspector::protocol::Runtime::API::RemoteObject::operator =(class v8_inspector::protocol::Runtime::API::RemoteObject const &) -??4RemoteObject@API@Runtime@protocol@v8_inspector@@QAEAAV01234@ABV01234@@Z ; has WINAPI (@4) -; public: class v8::Promise::Resolver &__thiscall v8::Promise::Resolver::operator =(,class v8::Promise::Resolver *const) -??4Resolver@Promise@v8@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class v8::Promise::Resolver &__thiscall v8::Promise::Resolver::operator =(class v8::Promise::Resolver const &) -??4Resolver@Promise@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::ResourceConstraints &__thiscall v8::ResourceConstraints::operator =(,class v8::ResourceConstraints *const) -??4ResourceConstraints@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ResourceConstraints &__thiscall v8::ResourceConstraints::operator =(class v8::ResourceConstraints const &) -??4ResourceConstraints@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::internal::RootVisitor &__thiscall cppgc::internal::RootVisitor::operator =(class cppgc::internal::RootVisitor const &) -??4RootVisitor@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::SameThreadEnabledCheckingPolicyBase &__thiscall cppgc::internal::SameThreadEnabledCheckingPolicyBase::operator =(,class cppgc::internal::SameThreadEnabledCheckingPolicyBase *const) -??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::SameThreadEnabledCheckingPolicyBase &__thiscall cppgc::internal::SameThreadEnabledCheckingPolicyBase::operator =(class cppgc::internal::SameThreadEnabledCheckingPolicyBase const &) -??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::Script &__thiscall v8::Script::operator =(,class v8::Script *const) -??4Script@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Script &__thiscall v8::Script::operator =(class v8::Script const &) -??4Script@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ScriptCompiler &__thiscall v8::ScriptCompiler::operator =(,class v8::ScriptCompiler *const) -??4ScriptCompiler@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ScriptCompiler &__thiscall v8::ScriptCompiler::operator =(class v8::ScriptCompiler const &) -??4ScriptCompiler@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ScriptOrModule &__thiscall v8::ScriptOrModule::operator =(,class v8::ScriptOrModule *const) -??4ScriptOrModule@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::ScriptOrModule &__thiscall v8::ScriptOrModule::operator =(class v8::ScriptOrModule const &) -??4ScriptOrModule@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::ScriptCompiler::ScriptStreamingTask &__thiscall v8::ScriptCompiler::ScriptStreamingTask::operator =(,class v8::ScriptCompiler::ScriptStreamingTask *const) -??4ScriptStreamingTask@ScriptCompiler@v8@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class v8::ScriptCompiler::ScriptStreamingTask &__thiscall v8::ScriptCompiler::ScriptStreamingTask::operator =(class v8::ScriptCompiler::ScriptStreamingTask const &) -??4ScriptStreamingTask@ScriptCompiler@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Debugger::API::SearchMatch &__thiscall v8_inspector::protocol::Debugger::API::SearchMatch::operator =(,class v8_inspector::protocol::Debugger::API::SearchMatch *const) -??4SearchMatch@API@Debugger@protocol@v8_inspector@@QAEAAV01234@$$QAV01234@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Debugger::API::SearchMatch &__thiscall v8_inspector::protocol::Debugger::API::SearchMatch::operator =(class v8_inspector::protocol::Debugger::API::SearchMatch const &) -??4SearchMatch@API@Debugger@protocol@v8_inspector@@QAEAAV01234@ABV01234@@Z ; has WINAPI (@4) -; public: class v8::Set &__thiscall v8::Set::operator =(,class v8::Set *const) -??4Set@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Set &__thiscall v8::Set::operator =(class v8::Set const &) -??4Set@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::SharedArrayBuffer &__thiscall v8::SharedArrayBuffer::operator =(,class v8::SharedArrayBuffer *const) -??4SharedArrayBuffer@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::SharedArrayBuffer &__thiscall v8::SharedArrayBuffer::operator =(class v8::SharedArrayBuffer const &) -??4SharedArrayBuffer@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::SharedMemoryStatistics &__thiscall v8::SharedMemoryStatistics::operator =(,class v8::SharedMemoryStatistics *const) -??4SharedMemoryStatistics@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::SharedMemoryStatistics &__thiscall v8::SharedMemoryStatistics::operator =(class v8::SharedMemoryStatistics const &) -??4SharedMemoryStatistics@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::SharedValueConveyor &__thiscall v8::SharedValueConveyor::operator =(,class v8::SharedValueConveyor *const) -??4SharedValueConveyor@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Signature &__thiscall v8::Signature::operator =(,class v8::Signature *const) -??4Signature@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Signature &__thiscall v8::Signature::operator =(class v8::Signature const &) -??4Signature@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class cppgc::SourceLocation &__thiscall cppgc::SourceLocation::operator =(,class cppgc::SourceLocation *const) -??4SourceLocation@cppgc@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class cppgc::SourceLocation &__thiscall cppgc::SourceLocation::operator =(class cppgc::SourceLocation const &) -??4SourceLocation@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::StackFrame &__thiscall v8::StackFrame::operator =(,class v8::StackFrame *const) -??4StackFrame@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::StackFrame &__thiscall v8::StackFrame::operator =(class v8::StackFrame const &) -??4StackFrame@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Runtime::API::StackTrace &__thiscall v8_inspector::protocol::Runtime::API::StackTrace::operator =(,class v8_inspector::protocol::Runtime::API::StackTrace *const) -??4StackTrace@API@Runtime@protocol@v8_inspector@@QAEAAV01234@$$QAV01234@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Runtime::API::StackTrace &__thiscall v8_inspector::protocol::Runtime::API::StackTrace::operator =(class v8_inspector::protocol::Runtime::API::StackTrace const &) -??4StackTrace@API@Runtime@protocol@v8_inspector@@QAEAAV01234@ABV01234@@Z ; has WINAPI (@4) -; public: class v8::StackTrace &__thiscall v8::StackTrace::operator =(,class v8::StackTrace *const) -??4StackTrace@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::StackTrace &__thiscall v8::StackTrace::operator =(class v8::StackTrace const &) -??4StackTrace@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Runtime::API::StackTraceId &__thiscall v8_inspector::protocol::Runtime::API::StackTraceId::operator =(,class v8_inspector::protocol::Runtime::API::StackTraceId *const) -??4StackTraceId@API@Runtime@protocol@v8_inspector@@QAEAAV01234@$$QAV01234@@Z ; has WINAPI (@4) -; public: class v8_inspector::protocol::Runtime::API::StackTraceId &__thiscall v8_inspector::protocol::Runtime::API::StackTraceId::operator =(class v8_inspector::protocol::Runtime::API::StackTraceId const &) -??4StackTraceId@API@Runtime@protocol@v8_inspector@@QAEAAV01234@ABV01234@@Z ; has WINAPI (@4) -; public: class v8::StartupData &__thiscall v8::StartupData::operator =(,class v8::StartupData *const) -??4StartupData@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::StartupData &__thiscall v8::StartupData::operator =(class v8::StartupData const &) -??4StartupData@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::String &__thiscall v8::String::operator =(,class v8::String *const) -??4String@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::String &__thiscall v8::String::operator =(class v8::String const &) -??4String@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::StringBuffer &__thiscall v8_inspector::StringBuffer::operator =(class v8_inspector::StringBuffer const &) -??4StringBuffer@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::StringObject &__thiscall v8::StringObject::operator =(,class v8::StringObject *const) -??4StringObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::StringObject &__thiscall v8::StringObject::operator =(class v8::StringObject const &) -??4StringObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::StringView &__thiscall v8_inspector::StringView::operator =(,class v8_inspector::StringView *const) -??4StringView@v8_inspector@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::StringView &__thiscall v8_inspector::StringView::operator =(class v8_inspector::StringView const &) -??4StringView@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Symbol &__thiscall v8::Symbol::operator =(,class v8::Symbol *const) -??4Symbol@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Symbol &__thiscall v8::Symbol::operator =(class v8::Symbol const &) -??4Symbol@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::SymbolObject &__thiscall v8::SymbolObject::operator =(,class v8::SymbolObject *const) -??4SymbolObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::SymbolObject &__thiscall v8::SymbolObject::operator =(class v8::SymbolObject const &) -??4SymbolObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Template &__thiscall v8::Template::operator =(,class v8::Template *const) -??4Template@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Template &__thiscall v8::Template::operator =(class v8::Template const &) -??4Template@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: struct v8::internal::TickSample &__thiscall v8::internal::TickSample::operator =(,struct v8::internal::TickSample *const) -??4TickSample@internal@v8@@QAEAAU012@$$QAU012@@Z ; has WINAPI (@4) -; public: struct v8::internal::TickSample &__thiscall v8::internal::TickSample::operator =(struct v8::internal::TickSample const &) -??4TickSample@internal@v8@@QAEAAU012@ABU012@@Z ; has WINAPI (@4) -; public: struct cppgc::internal::TraceTraitFromInnerAddressImpl &__thiscall cppgc::internal::TraceTraitFromInnerAddressImpl::operator =(,struct cppgc::internal::TraceTraitFromInnerAddressImpl *const) -??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QAEAAU012@$$QAU012@@Z ; has WINAPI (@4) -; public: struct cppgc::internal::TraceTraitFromInnerAddressImpl &__thiscall cppgc::internal::TraceTraitFromInnerAddressImpl::operator =(struct cppgc::internal::TraceTraitFromInnerAddressImpl const &) -??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QAEAAU012@ABU012@@Z ; has WINAPI (@4) -; public: class v8::EmbedderHeapTracer::TracedGlobalHandleVisitor &__thiscall v8::EmbedderHeapTracer::TracedGlobalHandleVisitor::operator =(class v8::EmbedderHeapTracer::TracedGlobalHandleVisitor const &) -??4TracedGlobalHandleVisitor@EmbedderHeapTracer@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class v8::TypedArray &__thiscall v8::TypedArray::operator =(,class v8::TypedArray *const) -??4TypedArray@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::TypedArray &__thiscall v8::TypedArray::operator =(class v8::TypedArray const &) -??4TypedArray@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Uint16Array &__thiscall v8::Uint16Array::operator =(,class v8::Uint16Array *const) -??4Uint16Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Uint16Array &__thiscall v8::Uint16Array::operator =(class v8::Uint16Array const &) -??4Uint16Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Uint32 &__thiscall v8::Uint32::operator =(,class v8::Uint32 *const) -??4Uint32@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Uint32 &__thiscall v8::Uint32::operator =(class v8::Uint32 const &) -??4Uint32@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Uint32Array &__thiscall v8::Uint32Array::operator =(,class v8::Uint32Array *const) -??4Uint32Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Uint32Array &__thiscall v8::Uint32Array::operator =(class v8::Uint32Array const &) -??4Uint32Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Uint8Array &__thiscall v8::Uint8Array::operator =(,class v8::Uint8Array *const) -??4Uint8Array@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Uint8Array &__thiscall v8::Uint8Array::operator =(class v8::Uint8Array const &) -??4Uint8Array@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Uint8ClampedArray &__thiscall v8::Uint8ClampedArray::operator =(,class v8::Uint8ClampedArray *const) -??4Uint8ClampedArray@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Uint8ClampedArray &__thiscall v8::Uint8ClampedArray::operator =(class v8::Uint8ClampedArray const &) -??4Uint8ClampedArray@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::UnboundModuleScript &__thiscall v8::UnboundModuleScript::operator =(,class v8::UnboundModuleScript *const) -??4UnboundModuleScript@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::UnboundModuleScript &__thiscall v8::UnboundModuleScript::operator =(class v8::UnboundModuleScript const &) -??4UnboundModuleScript@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::UnboundScript &__thiscall v8::UnboundScript::operator =(,class v8::UnboundScript *const) -??4UnboundScript@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::UnboundScript &__thiscall v8::UnboundScript::operator =(class v8::UnboundScript const &) -??4UnboundScript@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Unlocker &__thiscall v8::Unlocker::operator =(class v8::Unlocker const &) -??4Unlocker@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::Unwinder &__thiscall v8::Unwinder::operator =(,class v8::Unwinder *const) -??4Unwinder@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Unwinder &__thiscall v8::Unwinder::operator =(class v8::Unwinder const &) -??4Unwinder@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::V8 &__thiscall v8::V8::operator =(,class v8::V8 *const) -??4V8@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::V8 &__thiscall v8::V8::operator =(class v8::V8 const &) -??4V8@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8DebuggerId &__thiscall v8_inspector::V8DebuggerId::operator =(class v8_inspector::V8DebuggerId const &) -??4V8DebuggerId@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8Inspector &__thiscall v8_inspector::V8Inspector::operator =(class v8_inspector::V8Inspector const &) -??4V8Inspector@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8InspectorClient &__thiscall v8_inspector::V8InspectorClient::operator =(class v8_inspector::V8InspectorClient const &) -??4V8InspectorClient@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8InspectorSession &__thiscall v8_inspector::V8InspectorSession::operator =(class v8_inspector::V8InspectorSession const &) -??4V8InspectorSession@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::V8StackTrace &__thiscall v8_inspector::V8StackTrace::operator =(class v8_inspector::V8StackTrace const &) -??4V8StackTrace@v8_inspector@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: struct v8_inspector::V8StackTraceId &__thiscall v8_inspector::V8StackTraceId::operator =(,struct v8_inspector::V8StackTraceId *const) -??4V8StackTraceId@v8_inspector@@QAEAAU01@$$QAU01@@Z ; has WINAPI (@4) -; public: struct v8_inspector::V8StackTraceId &__thiscall v8_inspector::V8StackTraceId::operator =(struct v8_inspector::V8StackTraceId const &) -??4V8StackTraceId@v8_inspector@@QAEAAU01@ABU01@@Z ; has WINAPI (@4) -; public: class v8::Value &__thiscall v8::Value::operator =(,class v8::Value *const) -??4Value@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::Value &__thiscall v8::Value::operator =(class v8::Value const &) -??4Value@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::internal::Version &__thiscall v8::internal::Version::operator =(,class v8::internal::Version *const) -??4Version@internal@v8@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class v8::internal::Version &__thiscall v8::internal::Version::operator =(class v8::internal::Version const &) -??4Version@internal@v8@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class cppgc::Visitor &__thiscall cppgc::Visitor::operator =(class cppgc::Visitor const &) -??4Visitor@cppgc@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::WasmMemoryObject &__thiscall v8::WasmMemoryObject::operator =(,class v8::WasmMemoryObject *const) -??4WasmMemoryObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::WasmMemoryObject &__thiscall v8::WasmMemoryObject::operator =(class v8::WasmMemoryObject const &) -??4WasmMemoryObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8::WasmModuleObject &__thiscall v8::WasmModuleObject::operator =(,class v8::WasmModuleObject *const) -??4WasmModuleObject@v8@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class v8::WasmModuleObject &__thiscall v8::WasmModuleObject::operator =(class v8::WasmModuleObject const &) -??4WasmModuleObject@v8@@QAEAAV01@ABV01@@Z ; has WINAPI (@4) -; public: class v8_inspector::WebDriverValue &__thiscall v8_inspector::WebDriverValue::operator =(,class v8_inspector::WebDriverValue *const) -??4WebDriverValue@v8_inspector@@QAEAAV01@$$QAV01@@Z ; has WINAPI (@4) -; public: class cppgc::internal::WriteBarrier &__thiscall cppgc::internal::WriteBarrier::operator =(,class cppgc::internal::WriteBarrier *const) -??4WriteBarrier@internal@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::WriteBarrier &__thiscall cppgc::internal::WriteBarrier::operator =(class cppgc::internal::WriteBarrier const &) -??4WriteBarrier@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::WriteBarrierTypeForNonCagedHeapPolicy &__thiscall cppgc::internal::WriteBarrierTypeForNonCagedHeapPolicy::operator =(,class cppgc::internal::WriteBarrierTypeForNonCagedHeapPolicy *const) -??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QAEAAV012@$$QAV012@@Z ; has WINAPI (@4) -; public: class cppgc::internal::WriteBarrierTypeForNonCagedHeapPolicy &__thiscall cppgc::internal::WriteBarrierTypeForNonCagedHeapPolicy::operator =(class cppgc::internal::WriteBarrierTypeForNonCagedHeapPolicy const &) -??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QAEAAV012@ABV012@@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptFrame &__thiscall std::Cr::>::operator[](unsigned int) -??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptFrame@v8@@I@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptFrame const &__thiscall std::Cr::>::operator[](unsigned int)const -??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptFrame@v8@@I@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptInfo &__thiscall std::Cr::>::operator[](unsigned int) -??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptInfo@v8@@I@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptInfo const &__thiscall std::Cr::>::operator[](unsigned int)const -??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptInfo@v8@@I@Z ; has WINAPI (@4) -; public: char *__thiscall v8::String::Utf8Value::operator *(void) -??DUtf8Value@String@v8@@QAEPADXZ -; public: char const *__thiscall v8::String::Utf8Value::operator *(void)const -??DUtf8Value@String@v8@@QBEPBDXZ -; public: unsigned short *__thiscall v8::String::Value::operator *(void) -??DValue@String@v8@@QAEPAGXZ -; public: unsigned short const *__thiscall v8::String::Value::operator *(void)const -??DValue@String@v8@@QBEPBGXZ -; public: void __thiscall node::DeleteACHHandle::operator()(struct node::ACHHandle *)const -??RDeleteACHHandle@node@@QBEXPAUACHHandle@1@@Z ; has WINAPI (@4) -; const v8::ActivityControl::$vftable -??_7ActivityControl@v8@@6B@ DATA -; const v8::AllocationProfile::$vftable -??_7AllocationProfile@v8@@6B@ DATA -; const v8::ArrayBuffer::Allocator::$vftable -??_7Allocator@ArrayBuffer@v8@@6B@ DATA -; const node::ArrayBufferAllocator::$vftable -??_7ArrayBufferAllocator@node@@6B@ DATA -; const node::AsyncResource::$vftable -??_7AsyncResource@node@@6B@ DATA -; const v8_inspector::V8Inspector::Channel::$vftable -??_7Channel@V8Inspector@v8_inspector@@6B@ DATA -; const v8::CodeEventHandler::$vftable -??_7CodeEventHandler@v8@@6B@ DATA -; const v8_inspector::V8InspectorSession::CommandLineAPIScope::$vftable -??_7CommandLineAPIScope@V8InspectorSession@v8_inspector@@6B@ DATA -; const v8::CppHeap::$vftable -??_7CppHeap@v8@@6B@ DATA -; const v8::ValueDeserializer::Delegate::$vftable -??_7Delegate@ValueDeserializer@v8@@6B@ DATA -; const v8::ValueSerializer::Delegate::$vftable -??_7Delegate@ValueSerializer@v8@@6B@ DATA -; const v8::DiscardedSamplesDelegate::$vftable -??_7DiscardedSamplesDelegate@v8@@6B@ DATA -; const v8_inspector::protocol::Schema::API::Domain::$vftable -??_7Domain@API@Schema@protocol@v8_inspector@@6B@ DATA -; const v8::EmbedderGraph::$vftable -??_7EmbedderGraph@v8@@6B@ DATA -; const v8::EmbedderHeapTracer::$vftable -??_7EmbedderHeapTracer@v8@@6B@ DATA -; const v8::EmbedderRootsHandler::$vftable -??_7EmbedderRootsHandler@v8@@6B@ DATA -; const v8_inspector::protocol::Exported::$vftable -??_7Exported@protocol@v8_inspector@@6B@ DATA -; const v8::Extension::$vftable -??_7Extension@v8@@6B@ DATA -; const v8::String::ExternalOneByteStringResource::$vftable -??_7ExternalOneByteStringResource@String@v8@@6B@ DATA -; const v8::ExternalResourceVisitor::$vftable -??_7ExternalResourceVisitor@v8@@6B@ DATA -; const v8::ScriptCompiler::ExternalSourceStream::$vftable -??_7ExternalSourceStream@ScriptCompiler@v8@@6B@ DATA -; const v8::String::ExternalStringResource::$vftable -??_7ExternalStringResource@String@v8@@6B@ DATA -; const v8::String::ExternalStringResourceBase::$vftable -??_7ExternalStringResourceBase@String@v8@@6B@ DATA -; const cppgc::Heap::$vftable -??_7Heap@cppgc@@6B@ DATA -; const v8_inspector::V8InspectorSession::Inspectable::$vftable -??_7Inspectable@V8InspectorSession@v8_inspector@@6B@ DATA -; const node::IsolatePlatformDelegate::$vftable -??_7IsolatePlatformDelegate@node@@6B@ DATA -; const v8::MeasureMemoryDelegate::$vftable -??_7MeasureMemoryDelegate@v8@@6B@ DATA -; const v8::MicrotaskQueue::$vftable -??_7MicrotaskQueue@v8@@6B@ DATA -; const node::MultiIsolatePlatform::$vftable -??_7MultiIsolatePlatform@node@@6B@ DATA -; const cppgc::NameProvider::$vftable -??_7NameProvider@cppgc@@6B@ DATA -; const v8::OutputStream::$vftable -??_7OutputStream@v8@@6B@ DATA -; const v8::PersistentHandleVisitor::$vftable -??_7PersistentHandleVisitor@v8@@6B@ DATA -; const cppgc::Platform::$vftable -??_7Platform@cppgc@@6B@ DATA -; const v8::metrics::Recorder::$vftable -??_7Recorder@metrics@v8@@6B@ DATA -; const v8_inspector::protocol::Runtime::API::RemoteObject::$vftable -??_7RemoteObject@API@Runtime@protocol@v8_inspector@@6B@ DATA -; const cppgc::internal::RootVisitor::$vftable -??_7RootVisitor@internal@cppgc@@6B@ DATA -; const v8_inspector::protocol::Debugger::API::SearchMatch::$vftable -??_7SearchMatch@API@Debugger@protocol@v8_inspector@@6B@ DATA -; const v8_inspector::protocol::Runtime::API::StackTrace::$vftable -??_7StackTrace@API@Runtime@protocol@v8_inspector@@6B@ DATA -; const v8_inspector::protocol::Runtime::API::StackTraceId::$vftable -??_7StackTraceId@API@Runtime@protocol@v8_inspector@@6B@ DATA -; const v8_inspector::StringBuffer::$vftable -??_7StringBuffer@v8_inspector@@6B@ DATA -; const v8::EmbedderHeapTracer::TracedGlobalHandleVisitor::$vftable -??_7TracedGlobalHandleVisitor@EmbedderHeapTracer@v8@@6B@ DATA -; const v8_inspector::V8Inspector::$vftable -??_7V8Inspector@v8_inspector@@6B@ DATA -; const v8_inspector::V8InspectorClient::$vftable -??_7V8InspectorClient@v8_inspector@@6B@ DATA -; const v8_inspector::V8InspectorSession::$vftable -??_7V8InspectorSession@v8_inspector@@6B@ DATA -; const v8_inspector::V8StackTrace::$vftable -??_7V8StackTrace@v8_inspector@@6B@ DATA -; const cppgc::Visitor::$vftable -??_7Visitor@cppgc@@6B@ DATA -; public: void __thiscall v8::CpuProfilingOptions::__dflt_ctor_closure(void) -??_FCpuProfilingOptions@v8@@QAEXXZ -; public: void __thiscall v8::SnapshotCreator::__dflt_ctor_closure(void) -??_FSnapshotCreator@v8@@QAEXXZ -; private: static void *__cdecl v8::EscapableHandleScope::operator new[](unsigned int) -??_UEscapableHandleScope@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl cppgc::internal::GlobalGCInfoTable::operator new[](unsigned int) -??_UGlobalGCInfoTable@internal@cppgc@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl v8::HandleScope::operator new[](unsigned int) -??_UHandleScope@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl v8::SealHandleScope::operator new[](unsigned int) -??_USealHandleScope@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void *__cdecl v8::TryCatch::operator new[](unsigned int) -??_UTryCatch@v8@@CAPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::EscapableHandleScope::operator delete[](void *,unsigned int) -??_VEscapableHandleScope@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl cppgc::internal::GlobalGCInfoTable::operator delete[](void *,unsigned int) -??_VGlobalGCInfoTable@internal@cppgc@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::HandleScope::operator delete[](void *,unsigned int) -??_VHandleScope@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::SealHandleScope::operator delete[](void *,unsigned int) -??_VSealHandleScope@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: static void __cdecl v8::TryCatch::operator delete[](void *,unsigned int) -??_VTryCatch@v8@@CAXPAXI@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: void __thiscall v8::WasmStreaming::Abort(class v8::) -?Abort@WasmStreaming@v8@@QAEXV?$MaybeLocal@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Set::Add(class v8::,class v8::) -?Add@Set@v8@@QAE?AV?$MaybeLocal@VSet@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::Isolate::AddBeforeCallEnteredCallback(void(__cdecl *)(class v8::Isolate *)) -?AddBeforeCallEnteredCallback@Isolate@v8@@QAEXP6AXPAV12@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::HeapProfiler::AddBuildEmbedderGraphCallback(void(__cdecl *)(class v8::Isolate *,class v8::EmbedderGraph *,void *),void *) -?AddBuildEmbedderGraphCallback@HeapProfiler@v8@@QAEXP6AXPAVIsolate@2@PAVEmbedderGraph@2@PAX@Z2@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::AddCallCompletedCallback(void(__cdecl *)(class v8::Isolate *)) -?AddCallCompletedCallback@Isolate@v8@@QAEXP6AXPAV12@@Z@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::SnapshotCreator::AddContext(class v8::,struct v8::SerializeInternalFieldsCallback) -?AddContext@SnapshotCreator@v8@@QAEIV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@@Z ; has WINAPI (@12) -; private: unsigned int __thiscall v8::SnapshotCreator::AddData(unsigned int) -?AddData@SnapshotCreator@v8@@AAEII@Z ; has WINAPI (@4) -; private: unsigned int __thiscall v8::SnapshotCreator::AddData(class v8::,unsigned int) -?AddData@SnapshotCreator@v8@@AAEIV?$Local@VContext@v8@@@2@I@Z ; has WINAPI (@8) -; private: class v8::internal::HeapObject __thiscall v8::internal::WebSnapshotDeserializer::AddDeferredReference(class v8::internal::,unsigned int,enum v8::internal::WebSnapshotSerializerDeserializer::ValueType,unsigned int) -?AddDeferredReference@WebSnapshotDeserializer@internal@v8@@AAE?AVHeapObject@23@V?$Handle@VHeapObject@internal@v8@@@23@IW4ValueType@WebSnapshotSerializerDeserializer@23@I@Z ; has WINAPI (@20) -; void __cdecl node::AddEnvironmentCleanupHook(class v8::Isolate *,void(__cdecl *)(void *),void *) -?AddEnvironmentCleanupHook@node@@YAXPAVIsolate@v8@@P6AXPAX@Z1@Z -; struct node::ACHHandle *__cdecl node::AddEnvironmentCleanupHookInternal(class v8::Isolate *,void(__cdecl *)(void *,void(__cdecl *)(void *),void *),void *) -?AddEnvironmentCleanupHookInternal@node@@YAPAUACHHandle@1@PAVIsolate@v8@@P6AXPAXP6AX1@Z1@Z1@Z -; public: void __thiscall v8::Isolate::AddGCEpilogueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags),enum v8::GCType) -?AddGCEpilogueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::AddGCEpilogueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags,void *),void *,enum v8::GCType) -?AddGCEpilogueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@PAX@Z31@Z ; has WINAPI (@12) -; public: void __thiscall v8::Isolate::AddGCPrologueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags),enum v8::GCType) -?AddGCPrologueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::AddGCPrologueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags,void *),void *,enum v8::GCType) -?AddGCPrologueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@PAX@Z31@Z ; has WINAPI (@12) -; void __cdecl node::AddLinkedBinding(class node::Environment *,struct napi_module const &) -?AddLinkedBinding@node@@YAXPAVEnvironment@1@ABUnapi_module@@@Z -; void __cdecl node::AddLinkedBinding(class node::Environment *,struct node::node_module const &) -?AddLinkedBinding@node@@YAXPAVEnvironment@1@ABUnode_module@1@@Z -; void __cdecl node::AddLinkedBinding(class node::Environment *,char const *,void(__cdecl *)(class v8::,class v8::,class v8::,void *),void *) -?AddLinkedBinding@node@@YAXPAVEnvironment@1@PBDP6AXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@4@V?$Local@VContext@v8@@@4@PAX@Z5@Z -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics:: const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalMark@metrics@v8@@@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics:: const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalSweep@metrics@v8@@@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::GarbageCollectionFullCycle const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUGarbageCollectionFullCycle@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::GarbageCollectionFullMainThreadIncrementalMark const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUGarbageCollectionFullMainThreadIncrementalMark@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::GarbageCollectionFullMainThreadIncrementalSweep const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUGarbageCollectionFullMainThreadIncrementalSweep@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::GarbageCollectionYoungCycle const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUGarbageCollectionYoungCycle@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::WasmModuleCompiled const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUWasmModuleCompiled@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::WasmModuleDecoded const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUWasmModuleDecoded@23@VContextId@123@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddMainThreadEvent(struct v8::metrics::WasmModuleInstantiated const &,class v8::metrics::Recorder::ContextId) -?AddMainThreadEvent@Recorder@metrics@v8@@UAEXABUWasmModuleInstantiated@23@VContextId@123@@Z ; has WINAPI (@8) -; public: bool __thiscall v8::Isolate::AddMessageListener(void(__cdecl *)(class v8::,class v8::),class v8::) -?AddMessageListener@Isolate@v8@@QAE_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z1@Z ; has WINAPI (@8) -; public: bool __thiscall v8::Isolate::AddMessageListenerWithErrorLevel(void(__cdecl *)(class v8::,class v8::),int,class v8::) -?AddMessageListenerWithErrorLevel@Isolate@v8@@QAE_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@ZH1@Z ; has WINAPI (@12) -; public: void __thiscall v8::Isolate::AddMicrotasksCompletedCallback(void(__cdecl *)(class v8::Isolate *,void *),void *) -?AddMicrotasksCompletedCallback@Isolate@v8@@QAEXP6AXPAV12@PAX@Z1@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::AddNearHeapLimitCallback(unsigned int(__cdecl *)(void *,unsigned int,unsigned int),void *) -?AddNearHeapLimitCallback@Isolate@v8@@QAEXP6AIPAXII@Z0@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8::metrics::Recorder::AddThreadSafeEvent(struct v8::metrics::WasmModulesPerIsolate const &) -?AddThreadSafeEvent@Recorder@metrics@v8@@UAEXABUWasmModulesPerIsolate@23@@Z ; has WINAPI (@4) -; public: __int64 __thiscall v8::Isolate::AdjustAmountOfExternalAllocatedMemory(__int64) -?AdjustAmountOfExternalAllocatedMemory@Isolate@v8@@QAE_J_J@Z ; has WINAPI (@8) -; public: virtual bool __thiscall v8::ValueSerializer::Delegate::AdoptSharedValueConveyor(class v8::Isolate *,,class v8::SharedValueConveyor *const) -?AdoptSharedValueConveyor@Delegate@ValueSerializer@v8@@UAE_NPAVIsolate@3@$$QAVSharedValueConveyor@3@@Z ; has WINAPI (@8) -; public: static class v8::Isolate *__cdecl v8::Isolate::Allocate(void) -?Allocate@Isolate@v8@@SAPAV12@XZ -; private: static void *__cdecl cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate(class cppgc::AllocationHandle &,unsigned int,unsigned short) -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPAXAAVAllocationHandle@3@IG@Z -; private: static void *__cdecl cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate(class cppgc::AllocationHandle &,unsigned int,unsigned short,struct cppgc::CustomSpaceIndex) -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPAXAAVAllocationHandle@3@IGUCustomSpaceIndex@3@@Z -; private: static void *__cdecl cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate(class cppgc::AllocationHandle &,unsigned int,enum cppgc::internal::AlignVal,unsigned short) -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPAXAAVAllocationHandle@3@IW4AlignVal@23@G@Z -; private: static void *__cdecl cppgc::internal::MakeGarbageCollectedTraitInternal::Allocate(class cppgc::AllocationHandle &,unsigned int,enum cppgc::internal::AlignVal,unsigned short,struct cppgc::CustomSpaceIndex) -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPAXAAVAllocationHandle@3@IW4AlignVal@23@GUCustomSpaceIndex@3@@Z -; struct node::ThreadId __cdecl node::AllocateEnvironmentThreadId(void) -?AllocateEnvironmentThreadId@node@@YA?AUThreadId@1@XZ -; public: class cppgc::internal::PersistentNode *__thiscall cppgc::internal::CrossThreadPersistentRegion::AllocateNode(void *,void(__cdecl *)(class cppgc::internal::RootVisitor &,void const *)) -?AllocateNode@CrossThreadPersistentRegion@internal@cppgc@@QAEPAVPersistentNode@23@PAXP6AXAAVRootVisitor@23@PBX@Z@Z ; has WINAPI (@8) -; public: class cppgc::internal::PersistentNode *__thiscall cppgc::internal::PersistentRegion::AllocateNode(void *,void(__cdecl *)(class cppgc::internal::RootVisitor &,void const *)) -?AllocateNode@PersistentRegion@internal@cppgc@@QAEPAVPersistentNode@23@PAXP6AXAAVRootVisitor@23@PBX@Z@Z ; has WINAPI (@8) -; public: void __thiscall v8::Context::AllowCodeGenerationFromStrings(bool) -?AllowCodeGenerationFromStrings@Context@v8@@QAEX_N@Z ; has WINAPI (@4) -; bool __cdecl node::AllowWasmCodeGenerationCallback(class v8::,class v8::) -?AllowWasmCodeGenerationCallback@node@@YA_NV?$Local@VContext@v8@@@v8@@V?$Local@VString@v8@@@3@@Z -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::Ambiguous -?Ambiguous@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; void __cdecl v8::api_internal::AnnotateStrongRetainer(unsigned int *,char const *) -?AnnotateStrongRetainer@api_internal@v8@@YAXPAIPBD@Z -; public: unsigned int __thiscall v8::CFunction::ArgumentCount(void)const -?ArgumentCount@CFunction@v8@@QBEIXZ -; public: unsigned int __thiscall v8::CFunctionInfo::ArgumentCount(void)const -?ArgumentCount@CFunctionInfo@v8@@QBEIXZ -; public: class v8::CTypeInfo const &__thiscall v8::CFunction::ArgumentInfo(unsigned int)const -?ArgumentInfo@CFunction@v8@@QBEABVCTypeInfo@2@I@Z ; has WINAPI (@4) -; public: class v8::CTypeInfo const &__thiscall v8::CFunctionInfo::ArgumentInfo(unsigned int)const -?ArgumentInfo@CFunctionInfo@v8@@QBEABVCTypeInfo@2@I@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Map::AsArray(void)const -?AsArray@Map@v8@@QBE?AV?$Local@VArray@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Set::AsArray(void)const -?AsArray@Set@v8@@QBE?AV?$Local@VArray@v8@@@2@XZ ; has WINAPI (@4) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::Assert -?Assert@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: static void __cdecl cppgc::internal::PersistentRegionLock::AssertLocked(void) -?AssertLocked@PersistentRegionLock@internal@cppgc@@SAXXZ -; double __cdecl node::AsyncHooksGetExecutionAsyncId(class v8::Isolate *) -?AsyncHooksGetExecutionAsyncId@node@@YANPAVIsolate@v8@@@Z -; double __cdecl node::AsyncHooksGetTriggerAsyncId(class v8::Isolate *) -?AsyncHooksGetTriggerAsyncId@node@@YANPAVIsolate@v8@@@Z -; void __cdecl node::AtExit(class node::Environment *,void(__cdecl *)(void *),void *) -?AtExit@node@@YAXPAVEnvironment@1@P6AXPAX@Z1@Z -; public: void __thiscall v8::Isolate::AttachCppHeap(class v8::CppHeap *) -?AttachCppHeap@Isolate@v8@@QAEXPAVCppHeap@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::AutomaticallyRestoreInitialHeapLimit(double) -?AutomaticallyRestoreInitialHeapLimit@Isolate@v8@@QAEXN@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::UnboundScript::BindToCurrentContext(void) -?BindToCurrentContext@UnboundScript@v8@@QAE?AV?$Local@VScript@v8@@@2@XZ ; has WINAPI (@4) -; public: bool __thiscall v8::Value::BooleanValue(class v8::Isolate *)const -?BooleanValue@Value@v8@@QBE_NPAVIsolate@2@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::ArrayBufferView::Buffer(void) -?Buffer@ArrayBufferView@v8@@QAE?AV?$Local@VArrayBuffer@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::WasmMemoryObject::Buffer(void) -?Buffer@WasmMemoryObject@v8@@QAE?AV?$Local@VArrayBuffer@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8::CTypeInfo __cdecl v8::::Build(void) -?Build@?$CTypeInfoBuilder@H$S@v8@@SA?AVCTypeInfo@2@XZ -; public: static class v8::CTypeInfo __cdecl v8::::Build(void) -?Build@?$CTypeInfoBuilder@I$S@v8@@SA?AVCTypeInfo@2@XZ -; public: static class v8::CTypeInfo __cdecl v8::::Build(void) -?Build@?$CTypeInfoBuilder@M$S@v8@@SA?AVCTypeInfo@2@XZ -; public: static class v8::CTypeInfo __cdecl v8::::Build(void) -?Build@?$CTypeInfoBuilder@N$S@v8@@SA?AVCTypeInfo@2@XZ -; public: unsigned int __thiscall v8::ArrayBuffer::ByteLength(void)const -?ByteLength@ArrayBuffer@v8@@QBEIXZ -; public: unsigned int __thiscall v8::ArrayBufferView::ByteLength(void) -?ByteLength@ArrayBufferView@v8@@QAEIXZ -; public: unsigned int __thiscall v8::BackingStore::ByteLength(void)const -?ByteLength@BackingStore@v8@@QBEIXZ -; public: unsigned int __thiscall v8::SharedArrayBuffer::ByteLength(void)const -?ByteLength@SharedArrayBuffer@v8@@QBEIXZ -; public: unsigned int __thiscall v8::ArrayBufferView::ByteOffset(void) -?ByteOffset@ArrayBufferView@v8@@QAEIXZ -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::CSPViolation -?CSPViolation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: static unsigned int __cdecl v8::ScriptCompiler::CachedDataVersionTag(void) -?CachedDataVersionTag@ScriptCompiler@v8@@SAIXZ -; public: class v8:: __thiscall v8::Function::Call(class v8::,class v8::,int,class v8:: *const) -?Call@Function@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQAV52@@Z ; has WINAPI (@20) -; public: class v8:: __thiscall v8::Object::CallAsConstructor(class v8::,int,class v8:: *const) -?CallAsConstructor@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@HQAV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::Object::CallAsFunction(class v8::,class v8::,int,class v8:: *const) -?CallAsFunction@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQAV52@@Z ; has WINAPI (@20) -; public: bool __thiscall v8::StartupData::CanBeRehashed(void)const -?CanBeRehashed@StartupData@v8@@QBE_NXZ -; public: bool __thiscall v8::TryCatch::CanContinue(void)const -?CanContinue@TryCatch@v8@@QBE_NXZ -; public: bool __thiscall v8::String::CanMakeExternal(void)const -?CanMakeExternal@String@v8@@QBE_NXZ -; public: void __thiscall v8::Isolate::CancelTerminateExecution(void) -?CancelTerminateExecution@Isolate@v8@@QAEXXZ -; public: static class v8::Array *__cdecl v8::Array::Cast(class v8::Value *) -?Cast@Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::ArrayBuffer *__cdecl v8::ArrayBuffer::Cast(class v8::Value *) -?Cast@ArrayBuffer@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::ArrayBufferView *__cdecl v8::ArrayBufferView::Cast(class v8::Value *) -?Cast@ArrayBufferView@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::BigInt64Array *__cdecl v8::BigInt64Array::Cast(class v8::Value *) -?Cast@BigInt64Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::BigInt *__cdecl v8::BigInt::Cast(class v8::Data *) -?Cast@BigInt@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::BigIntObject *__cdecl v8::BigIntObject::Cast(class v8::Value *) -?Cast@BigIntObject@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::BigUint64Array *__cdecl v8::BigUint64Array::Cast(class v8::Value *) -?Cast@BigUint64Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Boolean *__cdecl v8::Boolean::Cast(class v8::Data *) -?Cast@Boolean@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::BooleanObject *__cdecl v8::BooleanObject::Cast(class v8::Value *) -?Cast@BooleanObject@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Context *__cdecl v8::Context::Cast(class v8::Data *) -?Cast@Context@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::DataView *__cdecl v8::DataView::Cast(class v8::Value *) -?Cast@DataView@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Date *__cdecl v8::Date::Cast(class v8::Value *) -?Cast@Date@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::External *__cdecl v8::External::Cast(class v8::Value *) -?Cast@External@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::FixedArray *__cdecl v8::FixedArray::Cast(class v8::Data *) -?Cast@FixedArray@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Float32Array *__cdecl v8::Float32Array::Cast(class v8::Value *) -?Cast@Float32Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Float64Array *__cdecl v8::Float64Array::Cast(class v8::Value *) -?Cast@Float64Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Function *__cdecl v8::Function::Cast(class v8::Value *) -?Cast@Function@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::FunctionTemplate *__cdecl v8::FunctionTemplate::Cast(class v8::Data *) -?Cast@FunctionTemplate@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Int16Array *__cdecl v8::Int16Array::Cast(class v8::Value *) -?Cast@Int16Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Int32 *__cdecl v8::Int32::Cast(class v8::Data *) -?Cast@Int32@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Int32Array *__cdecl v8::Int32Array::Cast(class v8::Value *) -?Cast@Int32Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Int8Array *__cdecl v8::Int8Array::Cast(class v8::Value *) -?Cast@Int8Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Integer *__cdecl v8::Integer::Cast(class v8::Data *) -?Cast@Integer@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Map *__cdecl v8::Map::Cast(class v8::Value *) -?Cast@Map@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Module *__cdecl v8::Module::Cast(class v8::Data *) -?Cast@Module@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::ModuleRequest *__cdecl v8::ModuleRequest::Cast(class v8::Data *) -?Cast@ModuleRequest@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Name *__cdecl v8::Name::Cast(class v8::Data *) -?Cast@Name@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Number *__cdecl v8::Number::Cast(class v8::Data *) -?Cast@Number@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::NumberObject *__cdecl v8::NumberObject::Cast(class v8::Value *) -?Cast@NumberObject@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Object *__cdecl v8::Object::Cast(class v8::Value *) -?Cast@Object@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::ObjectTemplate *__cdecl v8::ObjectTemplate::Cast(class v8::Data *) -?Cast@ObjectTemplate@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::PrimitiveArray *__cdecl v8::PrimitiveArray::Cast(class v8::Data *) -?Cast@PrimitiveArray@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Private *__cdecl v8::Private::Cast(class v8::Data *) -?Cast@Private@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Promise *__cdecl v8::Promise::Cast(class v8::Value *) -?Cast@Promise@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Proxy *__cdecl v8::Proxy::Cast(class v8::Value *) -?Cast@Proxy@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::RegExp *__cdecl v8::RegExp::Cast(class v8::Value *) -?Cast@RegExp@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Promise::Resolver *__cdecl v8::Promise::Resolver::Cast(class v8::Value *) -?Cast@Resolver@Promise@v8@@SAPAV123@PAVValue@3@@Z -; public: static class v8::Set *__cdecl v8::Set::Cast(class v8::Value *) -?Cast@Set@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::SharedArrayBuffer *__cdecl v8::SharedArrayBuffer::Cast(class v8::Value *) -?Cast@SharedArrayBuffer@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Signature *__cdecl v8::Signature::Cast(class v8::Data *) -?Cast@Signature@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::String *__cdecl v8::String::Cast(class v8::Data *) -?Cast@String@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::StringObject *__cdecl v8::StringObject::Cast(class v8::Value *) -?Cast@StringObject@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Symbol *__cdecl v8::Symbol::Cast(class v8::Data *) -?Cast@Symbol@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::SymbolObject *__cdecl v8::SymbolObject::Cast(class v8::Value *) -?Cast@SymbolObject@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::TypedArray *__cdecl v8::TypedArray::Cast(class v8::Value *) -?Cast@TypedArray@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Uint16Array *__cdecl v8::Uint16Array::Cast(class v8::Value *) -?Cast@Uint16Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Uint32 *__cdecl v8::Uint32::Cast(class v8::Data *) -?Cast@Uint32@v8@@SAPAV12@PAVData@2@@Z -; public: static class v8::Uint32Array *__cdecl v8::Uint32Array::Cast(class v8::Value *) -?Cast@Uint32Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Uint8Array *__cdecl v8::Uint8Array::Cast(class v8::Value *) -?Cast@Uint8Array@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::Uint8ClampedArray *__cdecl v8::Uint8ClampedArray::Cast(class v8::Value *) -?Cast@Uint8ClampedArray@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::WasmMemoryObject *__cdecl v8::WasmMemoryObject::Cast(class v8::Value *) -?Cast@WasmMemoryObject@v8@@SAPAV12@PAVValue@2@@Z -; public: static class v8::WasmModuleObject *__cdecl v8::WasmModuleObject::Cast(class v8::Value *) -?Cast@WasmModuleObject@v8@@SAPAV12@PAVValue@2@@Z -; public: class v8:: __thiscall v8::Promise::Catch(class v8::,class v8::) -?Catch@Promise@v8@@QAE?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z ; has WINAPI (@12) -; private: void __thiscall v8::String::ExternalOneByteStringResource::CheckCachedDataInvariants(void)const -?CheckCachedDataInvariants@ExternalOneByteStringResource@String@v8@@ABEXXZ -; private: void __thiscall v8::String::ExternalStringResource::CheckCachedDataInvariants(void)const -?CheckCachedDataInvariants@ExternalStringResource@String@v8@@ABEXXZ -; private: static void __cdecl v8::Array::CheckCast(class v8::Value *) -?CheckCast@Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::ArrayBuffer::CheckCast(class v8::Value *) -?CheckCast@ArrayBuffer@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::ArrayBufferView::CheckCast(class v8::Value *) -?CheckCast@ArrayBufferView@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::BigInt64Array::CheckCast(class v8::Value *) -?CheckCast@BigInt64Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::BigInt::CheckCast(class v8::Data *) -?CheckCast@BigInt@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::BigIntObject::CheckCast(class v8::Value *) -?CheckCast@BigIntObject@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::BigUint64Array::CheckCast(class v8::Value *) -?CheckCast@BigUint64Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Boolean::CheckCast(class v8::Data *) -?CheckCast@Boolean@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::BooleanObject::CheckCast(class v8::Value *) -?CheckCast@BooleanObject@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Context::CheckCast(class v8::Data *) -?CheckCast@Context@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::DataView::CheckCast(class v8::Value *) -?CheckCast@DataView@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Date::CheckCast(class v8::Value *) -?CheckCast@Date@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::External::CheckCast(class v8::Value *) -?CheckCast@External@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::FixedArray::CheckCast(class v8::Data *) -?CheckCast@FixedArray@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Float32Array::CheckCast(class v8::Value *) -?CheckCast@Float32Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Float64Array::CheckCast(class v8::Value *) -?CheckCast@Float64Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Function::CheckCast(class v8::Value *) -?CheckCast@Function@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::FunctionTemplate::CheckCast(class v8::Data *) -?CheckCast@FunctionTemplate@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Int16Array::CheckCast(class v8::Value *) -?CheckCast@Int16Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Int32::CheckCast(class v8::Data *) -?CheckCast@Int32@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Int32Array::CheckCast(class v8::Value *) -?CheckCast@Int32Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Int8Array::CheckCast(class v8::Value *) -?CheckCast@Int8Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Integer::CheckCast(class v8::Data *) -?CheckCast@Integer@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Map::CheckCast(class v8::Value *) -?CheckCast@Map@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Module::CheckCast(class v8::Data *) -?CheckCast@Module@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::ModuleRequest::CheckCast(class v8::Data *) -?CheckCast@ModuleRequest@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Name::CheckCast(class v8::Data *) -?CheckCast@Name@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Number::CheckCast(class v8::Data *) -?CheckCast@Number@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::NumberObject::CheckCast(class v8::Value *) -?CheckCast@NumberObject@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Object::CheckCast(class v8::Value *) -?CheckCast@Object@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::ObjectTemplate::CheckCast(class v8::Data *) -?CheckCast@ObjectTemplate@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::PrimitiveArray::CheckCast(class v8::Data *) -?CheckCast@PrimitiveArray@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Private::CheckCast(class v8::Data *) -?CheckCast@Private@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Promise::CheckCast(class v8::Value *) -?CheckCast@Promise@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Proxy::CheckCast(class v8::Value *) -?CheckCast@Proxy@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::RegExp::CheckCast(class v8::Value *) -?CheckCast@RegExp@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Promise::Resolver::CheckCast(class v8::Value *) -?CheckCast@Resolver@Promise@v8@@CAXPAVValue@3@@Z -; private: static void __cdecl v8::Set::CheckCast(class v8::Value *) -?CheckCast@Set@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::SharedArrayBuffer::CheckCast(class v8::Value *) -?CheckCast@SharedArrayBuffer@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Signature::CheckCast(class v8::Data *) -?CheckCast@Signature@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::String::CheckCast(class v8::Data *) -?CheckCast@String@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::StringObject::CheckCast(class v8::Value *) -?CheckCast@StringObject@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Symbol::CheckCast(class v8::Data *) -?CheckCast@Symbol@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::SymbolObject::CheckCast(class v8::Value *) -?CheckCast@SymbolObject@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::TypedArray::CheckCast(class v8::Value *) -?CheckCast@TypedArray@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Uint16Array::CheckCast(class v8::Value *) -?CheckCast@Uint16Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Uint32::CheckCast(class v8::Data *) -?CheckCast@Uint32@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::Uint32Array::CheckCast(class v8::Value *) -?CheckCast@Uint32Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Uint8Array::CheckCast(class v8::Value *) -?CheckCast@Uint8Array@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Uint8ClampedArray::CheckCast(class v8::Value *) -?CheckCast@Uint8ClampedArray@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::Value::CheckCast(class v8::Data *) -?CheckCast@Value@v8@@CAXPAVData@2@@Z -; private: static void __cdecl v8::WasmMemoryObject::CheckCast(class v8::Value *) -?CheckCast@WasmMemoryObject@v8@@CAXPAVValue@2@@Z -; private: static void __cdecl v8::WasmModuleObject::CheckCast(class v8::Value *) -?CheckCast@WasmModuleObject@v8@@CAXPAVValue@2@@Z -; public: static void __cdecl v8::internal::Internals::CheckInitializedImpl(class v8::Isolate *) -?CheckInitializedImpl@Internals@internal@v8@@SAXPAVIsolate@3@@Z -; private: void __thiscall cppgc::internal::GCInfoTable::CheckMemoryIsZeroed(unsigned int *,unsigned int) -?CheckMemoryIsZeroed@GCInfoTable@internal@cppgc@@AAEXPAII@Z ; has WINAPI (@8) -; public: static void __cdecl cppgc::internal::WriteBarrier::CheckParams(enum cppgc::internal::WriteBarrier::Type,struct cppgc::internal::WriteBarrier::Params const &) -?CheckParams@WriteBarrier@internal@cppgc@@SAXW4Type@123@ABUParams@123@@Z -; protected: void __thiscall cppgc::internal::SameThreadEnabledCheckingPolicyBase::CheckPointerImpl(void const *,bool,bool) -?CheckPointerImpl@SameThreadEnabledCheckingPolicyBase@internal@cppgc@@IAEXPBX_N1@Z ; has WINAPI (@12) -; protected: void __thiscall v8::TracedReferenceBase::CheckValue(void)const -?CheckValue@TracedReferenceBase@v8@@IBEXXZ -; public: void __thiscall v8::Map::Clear(void) -?Clear@Map@v8@@QAEXXZ -; public: void __thiscall v8::Set::Clear(void) -?Clear@Set@v8@@QAEXXZ -; public: void __thiscall cppgc::internal::CrossThreadPersistentRegion::ClearAllUsedNodes(void) -?ClearAllUsedNodes@CrossThreadPersistentRegion@internal@cppgc@@QAEXXZ -; public: void __thiscall cppgc::internal::PersistentRegionBase::ClearAllUsedNodes(void) -?ClearAllUsedNodes@PersistentRegionBase@internal@cppgc@@QAEXXZ -; public: void __thiscall v8::Isolate::ClearCachesForTesting(void) -?ClearCachesForTesting@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::ClearKeptObjects(void) -?ClearKeptObjects@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::HeapProfiler::ClearObjectIds(void) -?ClearObjectIds@HeapProfiler@v8@@QAEXXZ -; void *__cdecl v8::api_internal::ClearWeak(unsigned int *) -?ClearWeak@api_internal@v8@@YAPAXPAI@Z -; public: class v8:: __thiscall v8::Object::Clone(void) -?Clone@Object@v8@@QAE?AV?$Local@VObject@v8@@@2@XZ ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::CollectBuiltinObjects(void) -?CollectBuiltinObjects@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; public: void __thiscall v8::CppHeap::CollectCustomSpaceStatisticsAtLastGC(class std::Cr::>,class std::Cr::>) -?CollectCustomSpaceStatisticsAtLastGC@CppHeap@v8@@QAEXV?$vector@UCustomSpaceIndex@cppgc@@V?$allocator@UCustomSpaceIndex@cppgc@@@Cr@std@@@Cr@std@@V?$unique_ptr@VCustomSpaceStatisticsReceiver@v8@@U?$default_delete@VCustomSpaceStatisticsReceiver@v8@@@Cr@std@@@45@@Z ; has WINAPI (@16) -; public: void __thiscall v8::CppHeap::CollectGarbageForTesting(enum cppgc::EmbedderStackState) -?CollectGarbageForTesting@CppHeap@v8@@QAEXW4EmbedderStackState@cppgc@@@Z ; has WINAPI (@4) -; public: void __thiscall v8::CppHeap::CollectGarbageInYoungGenerationForTesting(enum cppgc::EmbedderStackState) -?CollectGarbageInYoungGenerationForTesting@CppHeap@v8@@QAEXW4EmbedderStackState@cppgc@@@Z ; has WINAPI (@4) -; public: static void __cdecl v8::CpuProfiler::CollectSample(class v8::Isolate *) -?CollectSample@CpuProfiler@v8@@SAXPAVIsolate@2@@Z -; public: struct cppgc::HeapStatistics __thiscall v8::CppHeap::CollectStatistics(enum cppgc::HeapStatistics::DetailLevel) -?CollectStatistics@CppHeap@v8@@QAE?AUHeapStatistics@cppgc@@W4DetailLevel@34@@Z ; has WINAPI (@8) -; public: int __thiscall v8::ScriptOrigin::ColumnOffset(void)const -?ColumnOffset@ScriptOrigin@v8@@QBEHXZ -; public: static class v8:: __cdecl v8::Script::Compile(class v8::,class v8::,class v8::ScriptOrigin *) -?Compile@Script@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@PAVScriptOrigin@2@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::Compile(class v8::,class v8::ScriptCompiler::Source *,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason) -?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::Compile(class v8::,class v8::ScriptCompiler::StreamedSource *,class v8::,class v8::ScriptOrigin const &) -?Compile@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VScript@v8@@@2@V?$Local@VContext@v8@@@2@PAVStreamedSource@12@V?$Local@VString@v8@@@2@ABVScriptOrigin@2@@Z -; public: static class v8:: __cdecl v8::WasmModuleObject::Compile(class v8::Isolate *,class v8::) -?Compile@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PAVIsolate@2@V?$MemorySpan@$$CBE@2@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::CompileFunction(class v8::,class v8::ScriptCompiler::Source *,unsigned int,class v8:: *const,unsigned int,class v8:: *const,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason) -?CompileFunction@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PAVSource@12@IQAV?$Local@VString@v8@@@2@IQAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::CompileFunctionInContext(class v8::,class v8::ScriptCompiler::Source *,unsigned int,class v8:: *const,unsigned int,class v8:: *const,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason,class v8:: *) -?CompileFunctionInContext@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PAVSource@12@IQAV?$Local@VString@v8@@@2@IQAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@PAV?$Local@VScriptOrModule@v8@@@2@@Z -; private: static class v8:: __cdecl v8::ScriptCompiler::CompileFunctionInternal(class v8::,class v8::ScriptCompiler::Source *,unsigned int,class v8:: *const,unsigned int,class v8:: *const,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason,class v8:: *) -?CompileFunctionInternal@ScriptCompiler@v8@@CA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@PAVSource@12@IQAV?$Local@VString@v8@@@2@IQAV?$Local@VObject@v8@@@2@W4CompileOptions@12@W4NoCacheReason@12@PAV?$Local@VScriptOrModule@v8@@@2@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::CompileModule(class v8::Isolate *,class v8::ScriptCompiler::Source *,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason) -?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@PAVIsolate@2@PAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::CompileModule(class v8::,class v8::ScriptCompiler::StreamedSource *,class v8::,class v8::ScriptOrigin const &) -?CompileModule@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VModule@v8@@@2@V?$Local@VContext@v8@@@2@PAVStreamedSource@12@V?$Local@VString@v8@@@2@ABVScriptOrigin@2@@Z -; private: static class v8:: __cdecl v8::ScriptCompiler::CompileUnboundInternal(class v8::Isolate *,class v8::ScriptCompiler::Source *,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason) -?CompileUnboundInternal@ScriptCompiler@v8@@CA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PAVIsolate@2@PAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z -; public: static class v8:: __cdecl v8::ScriptCompiler::CompileUnboundScript(class v8::Isolate *,class v8::ScriptCompiler::Source *,enum v8::ScriptCompiler::CompileOptions,enum v8::ScriptCompiler::NoCacheReason) -?CompileUnboundScript@ScriptCompiler@v8@@SA?AV?$MaybeLocal@VUnboundScript@v8@@@2@PAVIsolate@2@PAVSource@12@W4CompileOptions@12@W4NoCacheReason@12@@Z -; public: static class v8:: __cdecl v8::String::Concat(class v8::Isolate *,class v8::,class v8::) -?Concat@String@v8@@SA?AV?$Local@VString@v8@@@2@PAVIsolate@2@V32@1@Z -; public: void __thiscall v8::ResourceConstraints::ConfigureDefaults(unsigned __int64,unsigned __int64) -?ConfigureDefaults@ResourceConstraints@v8@@QAEX_K0@Z ; has WINAPI (@16) -; public: void __thiscall v8::ResourceConstraints::ConfigureDefaultsFromHeapSize(unsigned int,unsigned int) -?ConfigureDefaultsFromHeapSize@ResourceConstraints@v8@@QAEXII@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::ConstructSource(void) -?ConstructSource@WebSnapshotSerializer@internal@v8@@AAEXXZ -; public: bool __thiscall v8::String::ContainsOnlyOneByte(void)const -?ContainsOnlyOneByte@String@v8@@QBE_NXZ -; public: int __thiscall v8::Isolate::ContextDisposedNotification(bool) -?ContextDisposedNotification@Isolate@v8@@QAEH_N@Z ; has WINAPI (@4) -; class v8:: __cdecl node::Buffer::Copy(class v8::Isolate *,char const *,unsigned int) -?Copy@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PAVIsolate@4@PBDI@Z -; public: unsigned int __thiscall v8::Isolate::CopyCodePages(unsigned int,struct v8::MemoryRange *) -?CopyCodePages@Isolate@v8@@QAEIIPAUMemoryRange@2@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: unsigned int __thiscall v8::ArrayBufferView::CopyContents(void *,unsigned int) -?CopyContents@ArrayBufferView@v8@@QAEIPAXI@Z ; has WINAPI (@8) -; unsigned int *__cdecl v8::api_internal::CopyGlobalReference(unsigned int *) -?CopyGlobalReference@api_internal@v8@@YAPAIPAI@Z -; void __cdecl v8::internal::CopyTracedReference(unsigned int const *const *,unsigned int **) -?CopyTracedReference@internal@v8@@YAXPBQBIPAPAI@Z -; public: static class std::Cr::> __cdecl node::ArrayBufferAllocator::Create(bool) -?Create@ArrayBufferAllocator@node@@SA?AV?$unique_ptr@VArrayBufferAllocator@node@@U?$default_delete@VArrayBufferAllocator@node@@@Cr@std@@@Cr@std@@_N@Z -; public: static class std::Cr::> __cdecl v8::CppHeap::Create(class v8::Platform *,struct v8::CppHeapCreateParams const &) -?Create@CppHeap@v8@@SA?AV?$unique_ptr@VCppHeap@v8@@U?$default_delete@VCppHeap@v8@@@Cr@std@@@Cr@std@@PAVPlatform@2@ABUCppHeapCreateParams@2@@Z -; public: static class std::Cr::> __cdecl cppgc::Heap::Create(class std::Cr::,struct cppgc::Heap::HeapOptions) -?Create@Heap@cppgc@@SA?AV?$unique_ptr@VHeap@cppgc@@U?$default_delete@VHeap@cppgc@@@Cr@std@@@Cr@std@@V?$shared_ptr@VPlatform@cppgc@@@45@UHeapOptions@12@@Z -; public: static class std::Cr::> __cdecl node::MultiIsolatePlatform::Create(int,class v8::TracingController *,class v8::PageAllocator *) -?Create@MultiIsolatePlatform@node@@SA?AV?$unique_ptr@VMultiIsolatePlatform@node@@U?$default_delete@VMultiIsolatePlatform@node@@@Cr@std@@@Cr@std@@HPAVTracingController@v8@@PAVPageAllocator@7@@Z -; class node::tracing::Agent *__cdecl node::CreateAgent(void) -?CreateAgent@node@@YAPAVAgent@tracing@1@XZ -; class node::ArrayBufferAllocator *__cdecl node::CreateArrayBufferAllocator(void) -?CreateArrayBufferAllocator@node@@YAPAVArrayBufferAllocator@1@XZ -; public: class v8::StartupData __thiscall v8::SnapshotCreator::CreateBlob(enum v8::SnapshotCreator::FunctionCodeHandling) -?CreateBlob@SnapshotCreator@v8@@QAE?AVStartupData@2@W4FunctionCodeHandling@12@@Z ; has WINAPI (@8) -; public: static struct v8::ScriptCompiler::CachedData *__cdecl v8::ScriptCompiler::CreateCodeCache(class v8::) -?CreateCodeCache@ScriptCompiler@v8@@SAPAUCachedData@12@V?$Local@VUnboundModuleScript@v8@@@2@@Z -; public: static struct v8::ScriptCompiler::CachedData *__cdecl v8::ScriptCompiler::CreateCodeCache(class v8::) -?CreateCodeCache@ScriptCompiler@v8@@SAPAUCachedData@12@V?$Local@VUnboundScript@v8@@@2@@Z -; public: static struct v8::ScriptCompiler::CachedData *__cdecl v8::ScriptCompiler::CreateCodeCacheForFunction(class v8::) -?CreateCodeCacheForFunction@ScriptCompiler@v8@@SAPAUCachedData@12@V?$Local@VFunction@v8@@@2@@Z -; public: class v8:: __thiscall v8::Object::CreateDataProperty(class v8::,unsigned int,class v8::) -?CreateDataProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::Object::CreateDataProperty(class v8::,class v8::,class v8::) -?CreateDataProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; class node::Environment *__cdecl node::CreateEnvironment(class node::IsolateData *,class v8::,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> const &,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> const &,enum node::EnvironmentFlags::Flags,struct node::ThreadId,class std::Cr::>) -?CreateEnvironment@node@@YAPAVEnvironment@1@PAVIsolateData@1@V?$Local@VContext@v8@@@v8@@ABV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@2W4Flags@EnvironmentFlags@1@UThreadId@1@V?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@Cr@std@@@78@@Z -; protected: static unsigned int *__cdecl v8::HandleScope::CreateHandle(class v8::internal::Isolate *,unsigned int) -?CreateHandle@HandleScope@v8@@KAPAIPAVIsolate@internal@2@I@Z -; class node::IsolateData *__cdecl node::CreateIsolateData(class v8::Isolate *,struct uv_loop_s *,class node::MultiIsolatePlatform *,class node::ArrayBufferAllocator *) -?CreateIsolateData@node@@YAPAVIsolateData@1@PAVIsolate@v8@@PAUuv_loop_s@@PAVMultiIsolatePlatform@1@PAVArrayBufferAllocator@1@@Z -; private: class v8::internal:: __thiscall v8::internal::WebSnapshotDeserializer::CreateJSFunction(int,unsigned int,unsigned int,unsigned int,unsigned char,unsigned int) -?CreateJSFunction@WebSnapshotDeserializer@internal@v8@@AAE?AV?$Handle@VJSFunction@internal@v8@@@23@HIIIEI@Z ; has WINAPI (@28) -; public: static class v8:: __cdecl v8::Exception::CreateMessage(class v8::Isolate *,class v8::) -?CreateMessage@Exception@v8@@SA?AV?$Local@VMessage@v8@@@2@PAVIsolate@2@V?$Local@VValue@v8@@@2@@Z -; class node::MultiIsolatePlatform *__cdecl node::CreatePlatform(int,class v8::TracingController *,class v8::PageAllocator *) -?CreatePlatform@node@@YAPAVMultiIsolatePlatform@1@HPAVTracingController@v8@@PAVPageAllocator@4@@Z -; private: class v8::internal:: __thiscall v8::internal::WebSnapshotDeserializer::CreateScopeInfo(unsigned int,bool,enum v8::internal::WebSnapshotSerializerDeserializer::ContextType,bool) -?CreateScopeInfo@WebSnapshotDeserializer@internal@v8@@AAE?AV?$Handle@VScopeInfo@internal@v8@@@23@I_NW4ContextType@WebSnapshotSerializerDeserializer@23@0@Z ; has WINAPI (@20) -; public: static class v8:: __cdecl v8::Module::CreateSyntheticModule(class v8::Isolate *,class v8::,class std::Cr::,class std::Cr::>> const &,class v8::(__cdecl *)(class v8::,class v8::)) -?CreateSyntheticModule@Module@v8@@SA?AV?$Local@VModule@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@ABV?$vector@V?$Local@VString@v8@@@v8@@V?$allocator@V?$Local@VString@v8@@@v8@@@Cr@std@@@Cr@std@@P6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V32@@Z@Z -; public: static class cppgc::SourceLocation __cdecl cppgc::SourceLocation::Current(char const *,char const *,unsigned int) -?Current@SourceLocation@cppgc@@SA?AV12@PBD0I@Z -; public: static class v8:: __cdecl v8::StackTrace::CurrentScriptNameOrSourceURL(class v8::Isolate *) -?CurrentScriptNameOrSourceURL@StackTrace@v8@@SA?AV?$Local@VString@v8@@@2@PAVIsolate@2@@Z -; public: static class v8:: __cdecl v8::StackTrace::CurrentStackTrace(class v8::Isolate *,int,enum v8::StackTrace::StackTraceOptions) -?CurrentStackTrace@StackTrace@v8@@SA?AV?$Local@VStackTrace@v8@@@2@PAVIsolate@2@HW4StackTraceOptions@12@@Z -; void __cdecl cppgc::internal::DCheckImpl(char const *,class cppgc::SourceLocation const &) -?DCheckImpl@internal@cppgc@@YAXPBDABVSourceLocation@2@@Z -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::DOM -?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: void *__thiscall v8::ArrayBuffer::Data(void)const -?Data@ArrayBuffer@v8@@QBEPAXXZ -; public: void *__thiscall v8::BackingStore::Data(void)const -?Data@BackingStore@v8@@QBEPAXXZ -; char *__cdecl node::Buffer::Data(class v8::) -?Data@Buffer@node@@YAPADV?$Local@VObject@v8@@@v8@@@Z -; char *__cdecl node::Buffer::Data(class v8::) -?Data@Buffer@node@@YAPADV?$Local@VValue@v8@@@v8@@@Z -; public: void *__thiscall v8::SharedArrayBuffer::Data(void)const -?Data@SharedArrayBuffer@v8@@QBEPAXXZ -; public: void __thiscall v8::Isolate::DateTimeConfigurationChangeNotification(enum v8::Isolate::TimeZoneDetection) -?DateTimeConfigurationChangeNotification@Isolate@v8@@QAEXW4TimeZoneDetection@12@@Z ; has WINAPI (@4) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::DebugCommand -?DebugCommand@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; int __cdecl node::DecodeBytes(class v8::Isolate *,class v8::,enum node::encoding) -?DecodeBytes@node@@YAHPAVIsolate@v8@@V?$Local@VValue@v8@@@3@W4encoding@1@@Z -; int __cdecl node::DecodeWrite(class v8::Isolate *,char *,unsigned int,class v8::,enum node::encoding) -?DecodeWrite@node@@YAHPAVIsolate@v8@@PADIV?$Local@VValue@v8@@@3@W4encoding@1@@Z -; public: void __thiscall v8::EmbedderHeapTracer::DecreaseAllocatedSize(unsigned int) -?DecreaseAllocatedSize@EmbedderHeapTracer@v8@@QAEXI@Z ; has WINAPI (@4) -; public: static class std::Cr::> __cdecl v8::MeasureMemoryDelegate::Default(class v8::Isolate *,class v8::,class v8::,enum v8::MeasureMemoryMode) -?Default@MeasureMemoryDelegate@v8@@SA?AV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@Cr@std@@@Cr@std@@PAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@W4MeasureMemoryMode@2@@Z -; void __cdecl node::DefaultProcessExitHandler(class node::Environment *,int) -?DefaultProcessExitHandler@node@@YAXPAVEnvironment@1@H@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: virtual bool __thiscall cppgc::Visitor::DeferTraceToMutatorThreadIfConcurrent(void const *,void(__cdecl *)(class cppgc::Visitor *,void const *),unsigned int) -?DeferTraceToMutatorThreadIfConcurrent@Visitor@cppgc@@UAE_NPBXP6AXPAV12@0@ZI@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::DefineOwnProperty(class v8::,class v8::,class v8::,enum v8::PropertyAttribute) -?DefineOwnProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@W4PropertyAttribute@2@@Z ; has WINAPI (@20) -; public: class v8:: __thiscall v8::Object::DefineProperty(class v8::,class v8::,class v8::PropertyDescriptor &) -?DefineProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@AAVPropertyDescriptor@2@@Z ; has WINAPI (@16) -; public: void __thiscall v8::CpuProfile::Delete(void) -?Delete@CpuProfile@v8@@QAEXXZ -; public: void __thiscall v8::HeapSnapshot::Delete(void) -?Delete@HeapSnapshot@v8@@QAEXXZ -; public: class v8:: __thiscall v8::Map::Delete(class v8::,class v8::) -?Delete@Map@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::Delete(class v8::,unsigned int) -?Delete@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::Delete(class v8::,class v8::) -?Delete@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Set::Delete(class v8::,class v8::) -?Delete@Set@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::HeapProfiler::DeleteAllHeapSnapshots(void) -?DeleteAllHeapSnapshots@HeapProfiler@v8@@QAEXXZ -; public: class v8:: __thiscall v8::Object::DeletePrivate(class v8::,class v8::) -?DeletePrivate@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Symbol::Description(class v8::Isolate *)const -?Description@Symbol@v8@@QBE?AV?$Local@VValue@v8@@@2@PAVIsolate@2@@Z ; has WINAPI (@8) -; public: bool __thiscall v8::internal::WebSnapshotDeserializer::Deserialize(class v8::internal::,bool) -?Deserialize@WebSnapshotDeserializer@internal@v8@@QAE_NV?$MaybeHandle@VFixedArray@internal@v8@@@23@_N@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeArrayBuffers(void) -?DeserializeArrayBuffers@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeArrays(void) -?DeserializeArrays@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeBigInts(void) -?DeserializeBigInts@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeBuiltinObjects(void) -?DeserializeBuiltinObjects@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeClasses(void) -?DeserializeClasses@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeContexts(void) -?DeserializeContexts@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeDataViews(void) -?DeserializeDataViews@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: class std::Cr::,enum v8::internal::ElementsKind,unsigned int> __thiscall v8::internal::WebSnapshotDeserializer::DeserializeElements(void) -?DeserializeElements@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@V?$Handle@VFixedArrayBase@internal@v8@@@internal@v8@@W4ElementsKind@23@I@Cr@std@@XZ ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeExports(bool) -?DeserializeExports@WebSnapshotDeserializer@internal@v8@@AAEX_N@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeFunctionProperties(class v8::internal::) -?DeserializeFunctionProperties@WebSnapshotDeserializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeFunctions(void) -?DeserializeFunctions@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeMaps(void) -?DeserializeMaps@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeObjectElements(class v8::internal::,bool) -?DeserializeObjectElements@WebSnapshotDeserializer@internal@v8@@AAEXV?$Handle@VJSObject@internal@v8@@@23@_N@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeObjectPrototype(class v8::internal::) -?DeserializeObjectPrototype@WebSnapshotDeserializer@internal@v8@@AAEXV?$Handle@VMap@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: class v8::internal:: __thiscall v8::internal::WebSnapshotDeserializer::DeserializeObjectPrototypeAndCreateEmptyMap(void) -?DeserializeObjectPrototypeAndCreateEmptyMap@WebSnapshotDeserializer@internal@v8@@AAE?AV?$Handle@VMap@internal@v8@@@23@XZ ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeObjectPrototypeForFunction(class v8::internal::) -?DeserializeObjectPrototypeForFunction@WebSnapshotDeserializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeObjects(void) -?DeserializeObjects@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: class v8::internal:: __thiscall v8::internal::WebSnapshotDeserializer::DeserializePropertyArray(class v8::internal::,int) -?DeserializePropertyArray@WebSnapshotDeserializer@internal@v8@@AAE?AV?$Handle@VPropertyArray@internal@v8@@@23@V?$Handle@VDescriptorArray@internal@v8@@@23@H@Z ; has WINAPI (@12) -; private: bool __thiscall v8::internal::WebSnapshotDeserializer::DeserializeScript(void) -?DeserializeScript@WebSnapshotDeserializer@internal@v8@@AAE_NXZ -; private: bool __thiscall v8::internal::WebSnapshotDeserializer::DeserializeSnapshot(bool) -?DeserializeSnapshot@WebSnapshotDeserializer@internal@v8@@AAE_N_N@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeStrings(void) -?DeserializeStrings@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeSymbols(void) -?DeserializeSymbols@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotDeserializer::DeserializeTypedArrays(void) -?DeserializeTypedArrays@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; public: void __thiscall v8::ArrayBuffer::Detach(void) -?Detach@ArrayBuffer@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::DetachCppHeap(void) -?DetachCppHeap@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::Context::DetachGlobal(void) -?DetachGlobal@Context@v8@@QAEXXZ -; public: static void __cdecl cppgc::internal::WriteBarrier::DijkstraMarkingBarrier(struct cppgc::internal::WriteBarrier::Params const &,void const *) -?DijkstraMarkingBarrier@WriteBarrier@internal@cppgc@@SAXABUParams@123@PBX@Z -; public: static void __cdecl cppgc::internal::WriteBarrier::DijkstraMarkingBarrierRange(struct cppgc::internal::WriteBarrier::Params const &,void const *,unsigned int,unsigned int,void(__cdecl *)(class cppgc::Visitor *,void const *)) -?DijkstraMarkingBarrierRange@WriteBarrier@internal@cppgc@@SAXABUParams@123@PBXIIP6AXPAVVisitor@3@1@Z@Z -; private: static void __cdecl cppgc::internal::WriteBarrier::DijkstraMarkingBarrierRangeSlow(class cppgc::HeapHandle &,void const *,unsigned int,unsigned int,void(__cdecl *)(class cppgc::Visitor *,void const *)) -?DijkstraMarkingBarrierRangeSlow@WriteBarrier@internal@cppgc@@CAXAAVHeapHandle@3@PBXIIP6AXPAVVisitor@3@1@Z@Z -; private: static void __cdecl cppgc::internal::WriteBarrier::DijkstraMarkingBarrierSlow(void const *) -?DijkstraMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPBX@Z -; private: static void __cdecl cppgc::internal::WriteBarrier::DijkstraMarkingBarrierSlowWithSentinelCheck(void const *) -?DijkstraMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPBX@Z -; public: void __thiscall v8::CodeEventHandler::Disable(void) -?Disable@CodeEventHandler@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::DisableMemorySavingsMode(void) -?DisableMemorySavingsMode@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::DiscardThreadSpecificMetadata(void) -?DiscardThreadSpecificMetadata@Isolate@v8@@QAEXXZ -; private: void __thiscall v8::internal::WebSnapshotSerializer::Discover(class v8::internal::) -?Discover@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VHeapObject@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverArray(class v8::internal::) -?DiscoverArray@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSArray@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverArrayBuffer(class v8::internal::) -?DiscoverArrayBuffer@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSArrayBuffer@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverBigInt(class v8::internal::) -?DiscoverBigInt@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VBigInt@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverClass(class v8::internal::) -?DiscoverClass@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverContext(class v8::internal::) -?DiscoverContext@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VContext@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverContextAndPrototype(class v8::internal::) -?DiscoverContextAndPrototype@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverDataView(class v8::internal::) -?DiscoverDataView@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSDataView@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverElements(class v8::internal::) -?DiscoverElements@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSObject@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverFunction(class v8::internal::) -?DiscoverFunction@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: bool __thiscall v8::internal::WebSnapshotSerializer::DiscoverIfBuiltinObject(class v8::internal::) -?DiscoverIfBuiltinObject@WebSnapshotSerializer@internal@v8@@AAE_NV?$Handle@VHeapObject@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverMap(class v8::internal::,bool) -?DiscoverMap@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VMap@internal@v8@@@23@_N@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverMapForFunction(class v8::internal::) -?DiscoverMapForFunction@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverObject(class v8::internal::) -?DiscoverObject@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSObject@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverPropertyKey(class v8::internal::) -?DiscoverPropertyKey@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VName@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverSource(class v8::internal::) -?DiscoverSource@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverString(class v8::internal::,enum v8::internal::WebSnapshotSerializer::AllowInPlace) -?DiscoverString@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VString@internal@v8@@@23@W4AllowInPlace@123@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverSymbol(class v8::internal::) -?DiscoverSymbol@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VSymbol@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::DiscoverTypedArray(class v8::internal::) -?DiscoverTypedArray@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSTypedArray@internal@v8@@@23@@Z ; has WINAPI (@4) -; public: void __thiscall v8::CpuProfiler::Dispose(void) -?Dispose@CpuProfiler@v8@@QAEXXZ -; protected: virtual void __thiscall v8::String::ExternalStringResourceBase::Dispose(void) -?Dispose@ExternalStringResourceBase@String@v8@@MAEXXZ -; public: void __thiscall v8::Isolate::Dispose(void) -?Dispose@Isolate@v8@@QAEXXZ -; public: static bool __cdecl v8::V8::Dispose(void) -?Dispose@V8@v8@@SA_NXZ -; void __cdecl v8::api_internal::DisposeGlobal(unsigned int *) -?DisposeGlobal@api_internal@v8@@YAXPAI@Z -; public: static void __cdecl v8::V8::DisposePlatform(void) -?DisposePlatform@V8@v8@@SAXXZ -; void __cdecl v8::internal::DisposeTracedReference(unsigned int *) -?DisposeTracedReference@internal@v8@@YAXPAI@Z -; public: void __thiscall v8::Isolate::DumpAndResetStats(void) -?DumpAndResetStats@Isolate@v8@@QAEXXZ -; void __cdecl v8_inspector::DumpAsyncTaskStacksStateForTest(class v8_inspector::V8Inspector *) -?DumpAsyncTaskStacksStateForTest@v8_inspector@@YAXPAVV8Inspector@1@@Z -; void __cdecl node::EmitAsyncDestroy(class node::Environment *,struct node::async_context) -?EmitAsyncDestroy@node@@YAXPAVEnvironment@1@Uasync_context@1@@Z -; void __cdecl node::EmitAsyncDestroy(class v8::Isolate *,struct node::async_context) -?EmitAsyncDestroy@node@@YAXPAVIsolate@v8@@Uasync_context@1@@Z -; struct node::async_context __cdecl node::EmitAsyncInit(class v8::Isolate *,class v8::,char const *,double) -?EmitAsyncInit@node@@YA?AUasync_context@1@PAVIsolate@v8@@V?$Local@VObject@v8@@@4@PBDN@Z -; struct node::async_context __cdecl node::EmitAsyncInit(class v8::Isolate *,class v8::,class v8::,double) -?EmitAsyncInit@node@@YA?AUasync_context@1@PAVIsolate@v8@@V?$Local@VObject@v8@@@4@V?$Local@VString@v8@@@4@N@Z -; void __cdecl node::EmitBeforeExit(class node::Environment *) -?EmitBeforeExit@node@@YAXPAVEnvironment@1@@Z -; int __cdecl node::EmitExit(class node::Environment *) -?EmitExit@node@@YAHPAVEnvironment@1@@Z -; class v8:: __cdecl node::EmitProcessBeforeExit(class node::Environment *) -?EmitProcessBeforeExit@node@@YA?AV?$Maybe@_N@v8@@PAVEnvironment@1@@Z -; class v8:: __cdecl node::EmitProcessExit(class node::Environment *) -?EmitProcessExit@node@@YA?AV?$Maybe@H@v8@@PAVEnvironment@1@@Z -; public: static class v8:: __cdecl v8::String::Empty(class v8::Isolate *) -?Empty@String@v8@@SA?AV?$Local@VString@v8@@@2@PAVIsolate@2@@Z -; public: static void __cdecl v8::BackingStore::EmptyDeleter(void *,unsigned int,void *) -?EmptyDeleter@BackingStore@v8@@SAXPAXI0@Z -; public: void __thiscall v8::CodeEventHandler::Enable(void) -?Enable@CodeEventHandler@v8@@QAEXXZ -; public: void __thiscall v8::CppHeap::EnableDetachedGarbageCollectionsForTesting(void) -?EnableDetachedGarbageCollectionsForTesting@CppHeap@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::EnableMemorySavingsMode(void) -?EnableMemorySavingsMode@Isolate@v8@@QAEXXZ -; bool __cdecl v8::internal::trap_handler::EnableTrapHandler(bool) -?EnableTrapHandler@trap_handler@internal@v8@@YA_N_N@Z -; public: static bool __cdecl v8::V8::EnableWebAssemblyTrapHandler(bool) -?EnableWebAssemblyTrapHandler@V8@v8@@SA_N_N@Z -; class v8:: __cdecl node::Encode(class v8::Isolate *,char const *,unsigned int,enum node::encoding) -?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@PBDIW4encoding@1@@Z -; class v8:: __cdecl node::Encode(class v8::Isolate *,unsigned short const *,unsigned int) -?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@PBGI@Z -; public: void __thiscall v8::Isolate::EnqueueMicrotask(void(__cdecl *)(void *),void *) -?EnqueueMicrotask@Isolate@v8@@QAEXP6AXPAX@Z0@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::EnqueueMicrotask(class v8::) -?EnqueueMicrotask@Isolate@v8@@QAEXV?$Local@VFunction@v8@@@2@@Z ; has WINAPI (@4) -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexNonPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *)) -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexNonPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *),struct cppgc::internal::HeapObjectName(__cdecl *)(void const *,enum cppgc::internal::HeapObjectNameForUnnamedObject)) -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexNonPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *),void(__cdecl *)(void *)) -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@ZP6AXPAX@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexNonPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *),void(__cdecl *)(void *),struct cppgc::internal::HeapObjectName(__cdecl *)(void const *,enum cppgc::internal::HeapObjectNameForUnnamedObject)) -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@ZP6AXPAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *)) -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *),struct cppgc::internal::HeapObjectName(__cdecl *)(void const *,enum cppgc::internal::HeapObjectNameForUnnamedObject)) -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *),void(__cdecl *)(void *)) -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@ZP6AXPAX@Z@Z -; private: static unsigned short __cdecl cppgc::internal::EnsureGCInfoIndexTrait::EnsureGCInfoIndexPolymorphic(struct std::Cr:: &,void(__cdecl *)(class cppgc::Visitor *,void const *),void(__cdecl *)(void *),struct cppgc::internal::HeapObjectName(__cdecl *)(void const *,enum cppgc::internal::HeapObjectNameForUnnamedObject)) -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CAGAAU?$atomic@G@Cr@std@@P6AXPAVVisitor@3@PBX@ZP6AXPAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -; public: void __thiscall v8::Context::Enter(void) -?Enter@Context@v8@@QAEXXZ -; public: static void __cdecl cppgc::subtle::DisallowGarbageCollectionScope::Enter(class cppgc::HeapHandle &) -?Enter@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAAVHeapHandle@3@@Z -; public: void __thiscall v8::Isolate::Enter(void) -?Enter@Isolate@v8@@QAEXXZ -; public: static void __cdecl cppgc::subtle::NoGarbageCollectionScope::Enter(class cppgc::HeapHandle &) -?Enter@NoGarbageCollectionScope@subtle@cppgc@@SAXAAVHeapHandle@3@@Z -; public: class v8:: __thiscall v8::Value::Equals(class v8::,class v8::)const -?Equals@Value@v8@@QBE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; class v8:: __cdecl node::ErrnoException(class v8::Isolate *,int,char const *,char const *,char const *) -?ErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@HPBD11@Z -; public: static class v8:: __cdecl v8::Exception::Error(class v8::) -?Error@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; public: int __thiscall v8::Message::ErrorLevel(void)const -?ErrorLevel@Message@v8@@QBEHXZ -; private: unsigned int *__thiscall v8::EscapableHandleScope::Escape(unsigned int *) -?Escape@EscapableHandleScope@v8@@AAEPAIPAI@Z ; has WINAPI (@4) -; class v8::Value *__cdecl v8::api_internal::Eternalize(class v8::Isolate *,class v8::Value *) -?Eternalize@api_internal@v8@@YAPAVValue@2@PAVIsolate@2@PAV32@@Z -; public: class v8:: __thiscall v8::Module::Evaluate(class v8::) -?Evaluate@Module@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::EventListener -?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::Exception -?Exception@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: class v8:: __thiscall v8::TryCatch::Exception(void)const -?Exception@TryCatch@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::RegExp::Exec(class v8::,class v8::) -?Exec@RegExp@v8@@QAE?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::Context::Exit(void) -?Exit@Context@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::Exit(void) -?Exit@Isolate@v8@@QAEXXZ -; public: bool __thiscall v8::Function::Experimental_IsNopFunction(void)const -?Experimental_IsNopFunction@Function@v8@@QBE_NXZ -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ExtractScriptBuffer(class v8::internal::Isolate *,class v8::internal::) -?ExtractScriptBuffer@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@PBEI_N@Cr@std@@PAVIsolate@23@V?$Handle@VScript@internal@v8@@@23@@Z ; has WINAPI (@12) -; void __cdecl cppgc::internal::Fatal(class std::Cr::,class std::Cr::> const &,class cppgc::SourceLocation const &) -?Fatal@internal@cppgc@@YAXABV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@ABVSourceLocation@2@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; void __cdecl node::FatalException(class v8::Isolate *,class v8::TryCatch const &) -?FatalException@node@@YAXPAVIsolate@v8@@ABVTryCatch@3@@Z -; void __cdecl cppgc::internal::FatalImpl(char const *,class cppgc::SourceLocation const &) -?FatalImpl@internal@cppgc@@YAXPBDABVSourceLocation@2@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: char const *__thiscall cppgc::SourceLocation::FileName(void)const -?FileName@SourceLocation@cppgc@@QBEPBDXZ -; public: void __thiscall cppgc::testing::StandaloneTestingHeap::FinalizeGarbageCollection(enum cppgc::EmbedderStackState) -?FinalizeGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QAEXW4EmbedderStackState@3@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: void __thiscall v8::EmbedderHeapTracer::FinalizeTracing(void) -?FinalizeTracing@EmbedderHeapTracer@v8@@QAEXXZ -; public: class v8:: __thiscall v8::Object::FindInstanceInPrototypeChain(class v8::) -?FindInstanceInPrototypeChain@Object@v8@@QAE?AV?$Local@VObject@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::HeapProfiler::FindObjectById(unsigned int) -?FindObjectById@HeapProfiler@v8@@QAE?AV?$Local@VValue@v8@@@2@I@Z ; has WINAPI (@8) -; public: void __thiscall v8::WasmStreaming::Finish(bool) -?Finish@WasmStreaming@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::For(class v8::Isolate *,class v8::) -?For@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Private::ForApi(class v8::Isolate *,class v8::) -?ForApi@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Symbol::ForApi(class v8::Isolate *,class v8::) -?ForApi@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z -; public: void __thiscall cppgc::testing::StandaloneTestingHeap::ForceCompactionForNextGarbageCollection(void) -?ForceCompactionForNextGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QAEXXZ -; public: void __thiscall cppgc::Heap::ForceGarbageCollectionSlow(char const *,char const *,enum cppgc::EmbedderStackState) -?ForceGarbageCollectionSlow@Heap@cppgc@@QAEXPBD0W4EmbedderStackState@2@@Z ; has WINAPI (@12) -; void __cdecl node::FreeArrayBufferAllocator(class node::ArrayBufferAllocator *) -?FreeArrayBufferAllocator@node@@YAXPAVArrayBufferAllocator@1@@Z -; public: virtual void __thiscall v8::ValueSerializer::Delegate::FreeBufferMemory(void *) -?FreeBufferMemory@Delegate@ValueSerializer@v8@@UAEXPAX@Z ; has WINAPI (@4) -; void __cdecl node::FreeEnvironment(class node::Environment *) -?FreeEnvironment@node@@YAXPAVEnvironment@1@@Z -; void __cdecl node::FreeIsolateData(class node::IsolateData *) -?FreeIsolateData@node@@YAXPAVIsolateData@1@@Z -; public: void __thiscall cppgc::internal::CrossThreadPersistentRegion::FreeNode(class cppgc::internal::PersistentNode *) -?FreeNode@CrossThreadPersistentRegion@internal@cppgc@@QAEXPAVPersistentNode@23@@Z ; has WINAPI (@4) -; public: void __thiscall cppgc::internal::PersistentRegion::FreeNode(class cppgc::internal::PersistentNode *) -?FreeNode@PersistentRegion@internal@cppgc@@QAEXPAVPersistentNode@23@@Z ; has WINAPI (@4) -; protected: void __thiscall cppgc::internal::PersistentRegionBase::FreeNode(class cppgc::internal::PersistentNode *) -?FreeNode@PersistentRegionBase@internal@cppgc@@IAEXPAVPersistentNode@23@@Z ; has WINAPI (@4) -; void __cdecl node::FreePlatform(class node::MultiIsolatePlatform *) -?FreePlatform@node@@YAXPAVMultiIsolatePlatform@1@@Z -; private: static void __cdecl cppgc::internal::ExplicitManagementImpl::FreeUnreferencedObject(class cppgc::HeapHandle &,void *) -?FreeUnreferencedObject@ExplicitManagementImpl@internal@cppgc@@CAXAAVHeapHandle@3@PAX@Z -; public: static class v8:: __cdecl v8::WasmModuleObject::FromCompiledModule(class v8::Isolate *,class v8::CompiledWasmModule const &) -?FromCompiledModule@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PAVIsolate@2@ABVCompiledWasmModule@2@@Z -; void __cdecl v8::api_internal::FromJustIsNothing(void) -?FromJustIsNothing@api_internal@v8@@YAXXZ -; public: static class v8:: __cdecl v8::Context::FromSnapshot(class v8::Isolate *,unsigned int,struct v8::DeserializeInternalFieldsCallback,class v8::ExtensionConfiguration *,class v8::,class v8::MicrotaskQueue *) -?FromSnapshot@Context@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PAVIsolate@2@IUDeserializeInternalFieldsCallback@2@PAVExtensionConfiguration@2@V?$MaybeLocal@VValue@v8@@@2@PAVMicrotaskQueue@2@@Z -; private: bool __thiscall v8::Value::FullIsNull(void)const -?FullIsNull@Value@v8@@ABE_NXZ -; private: bool __thiscall v8::Value::FullIsString(void)const -?FullIsString@Value@v8@@ABE_NXZ -; private: bool __thiscall v8::Value::FullIsUndefined(void)const -?FullIsUndefined@Value@v8@@ABE_NXZ -; public: char const *__thiscall cppgc::SourceLocation::Function(void)const -?Function@SourceLocation@cppgc@@QBEPBDXZ -; public: class v8:: __thiscall v8::Function::FunctionProtoToString(class v8::) -?FunctionProtoToString@Function@v8@@QAE?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: struct cppgc::internal::GCInfo const &__thiscall cppgc::internal::GCInfoTable::GCInfoFromIndex(unsigned short)const -?GCInfoFromIndex@GCInfoTable@internal@cppgc@@QBEABUGCInfo@23@G@Z ; has WINAPI (@4) -; public: static struct cppgc::internal::GCInfo const &__cdecl cppgc::internal::GlobalGCInfoTable::GCInfoFromIndex(unsigned short) -?GCInfoFromIndex@GlobalGCInfoTable@internal@cppgc@@SAABUGCInfo@23@G@Z -; public: class v8:: __thiscall v8::FixedArray::Get(class v8::,int)const -?Get@FixedArray@v8@@QBE?AV?$Local@VData@v8@@@2@V?$Local@VContext@v8@@@2@H@Z ; has WINAPI (@12) -; public: static class cppgc::internal::GCInfoTable const &__cdecl cppgc::internal::GlobalGCInfoTable::Get(void) -?Get@GlobalGCInfoTable@internal@cppgc@@SAABVGCInfoTable@23@XZ -; public: static struct v8::metrics::LongTaskStats __cdecl v8::metrics::LongTaskStats::Get(class v8::Isolate *) -?Get@LongTaskStats@metrics@v8@@SA?AU123@PAVIsolate@3@@Z -; public: class v8:: __thiscall v8::Map::Get(class v8::,class v8::) -?Get@Map@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Message::Get(void)const -?Get@Message@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::Get(class v8::,unsigned int) -?Get@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@I@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::Get(class v8::,class v8::) -?Get@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::PrimitiveArray::Get(class v8::Isolate *,int) -?Get@PrimitiveArray@v8@@QAE?AV?$Local@VPrimitive@v8@@@2@PAVIsolate@2@H@Z ; has WINAPI (@12) -; public: void const *__thiscall v8::CFunction::GetAddress(void)const -?GetAddress@CFunction@v8@@QBEPBXXZ -; public: void *__thiscall v8::Context::GetAlignedPointerFromEmbedderData(int) -?GetAlignedPointerFromEmbedderData@Context@v8@@QAEPAXH@Z ; has WINAPI (@4) -; public: void *__thiscall v8::Object::GetAlignedPointerFromInternalField(int) -?GetAlignedPointerFromInternalField@Object@v8@@QAEPAXH@Z ; has WINAPI (@4) -; public: static void *__cdecl v8::Object::GetAlignedPointerFromInternalField(class v8:: const &,int) -?GetAlignedPointerFromInternalField@Object@v8@@SAPAXABV?$BasicTracedReference@VObject@v8@@@2@H@Z -; public: static void *__cdecl v8::Object::GetAlignedPointerFromInternalField(class v8:: const &,int) -?GetAlignedPointerFromInternalField@Object@v8@@SAPAXABV?$PersistentBase@VObject@v8@@@2@H@Z -; public: class cppgc::AllocationHandle &__thiscall v8::CppHeap::GetAllocationHandle(void) -?GetAllocationHandle@CppHeap@v8@@QAEAAVAllocationHandle@cppgc@@XZ -; public: class cppgc::AllocationHandle &__thiscall cppgc::Heap::GetAllocationHandle(void) -?GetAllocationHandle@Heap@cppgc@@QAEAAVAllocationHandle@2@XZ -; public: class v8::AllocationProfile *__thiscall v8::HeapProfiler::GetAllocationProfile(void) -?GetAllocationProfile@HeapProfiler@v8@@QAEPAVAllocationProfile@2@XZ -; public: class v8::ArrayBuffer::Allocator *__thiscall v8::Isolate::GetArrayBufferAllocator(void) -?GetArrayBufferAllocator@Isolate@v8@@QAEPAVAllocator@ArrayBuffer@2@XZ -; class node::ArrayBufferAllocator *__cdecl node::GetArrayBufferAllocator(class node::IsolateData *) -?GetArrayBufferAllocator@node@@YAPAVArrayBufferAllocator@1@PAVIsolateData@1@@Z -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetArrayBufferId(class v8::internal::JSArrayBuffer) -?GetArrayBufferId@WebSnapshotSerializer@internal@v8@@AAEIVJSArrayBuffer@23@@Z ; has WINAPI (@4) -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetArrayId(class v8::internal::JSArray) -?GetArrayId@WebSnapshotSerializer@internal@v8@@AAEIVJSArray@23@@Z ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::GetAsyncIterator(class v8::Isolate *) -?GetAsyncIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: class std::Cr:: __thiscall v8::ArrayBuffer::GetBackingStore(void) -?GetBackingStore@ArrayBuffer@v8@@QAE?AV?$shared_ptr@VBackingStore@v8@@@Cr@std@@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall v8::SharedArrayBuffer::GetBackingStore(void) -?GetBackingStore@SharedArrayBuffer@v8@@QAE?AV?$shared_ptr@VBackingStore@v8@@@Cr@std@@XZ ; has WINAPI (@4) -; public: char const *__thiscall v8::CpuProfileNode::GetBailoutReason(void)const -?GetBailoutReason@CpuProfileNode@v8@@QBEPBDXZ -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetBigIntId(class v8::internal::BigInt) -?GetBigIntId@WebSnapshotSerializer@internal@v8@@AAEIVBigInt@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Function::GetBoundFunction(void)const -?GetBoundFunction@Function@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: static int __cdecl v8::internal::Version::GetBuild(void) -?GetBuild@Version@internal@v8@@SAHXZ -; private: bool __thiscall v8::internal::WebSnapshotSerializer::GetBuiltinObjectId(class v8::internal::HeapObject,unsigned int &) -?GetBuiltinObjectId@WebSnapshotSerializer@internal@v8@@AAE_NVHeapObject@23@AAI@Z ; has WINAPI (@8) -; private: bool __thiscall v8::internal::WebSnapshotSerializer::GetBuiltinObjectNameIndex(class v8::internal::HeapObject,unsigned int &) -?GetBuiltinObjectNameIndex@WebSnapshotSerializer@internal@v8@@AAE_NVHeapObject@23@AAI@Z ; has WINAPI (@8) -; public: class v8::CpuProfileNode const *__thiscall v8::CpuProfileNode::GetChild(int)const -?GetChild@CpuProfileNode@v8@@QBEPBV12@H@Z ; has WINAPI (@4) -; public: class v8::HeapGraphEdge const *__thiscall v8::HeapGraphNode::GetChild(int)const -?GetChild@HeapGraphNode@v8@@QBEPBVHeapGraphEdge@2@H@Z ; has WINAPI (@4) -; public: int __thiscall v8::CpuProfileNode::GetChildrenCount(void)const -?GetChildrenCount@CpuProfileNode@v8@@QBEHXZ -; public: int __thiscall v8::HeapGraphNode::GetChildrenCount(void)const -?GetChildrenCount@HeapGraphNode@v8@@QBEHXZ -; public: virtual int __thiscall v8::OutputStream::GetChunkSize(void) -?GetChunkSize@OutputStream@v8@@UAEHXZ -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetClassId(class v8::internal::JSFunction) -?GetClassId@WebSnapshotSerializer@internal@v8@@AAEIVJSFunction@23@@Z ; has WINAPI (@4) -; public: static char const *__cdecl v8::CodeEvent::GetCodeEventTypeName(enum v8::CodeEventType) -?GetCodeEventTypeName@CodeEvent@v8@@SAPBDW4CodeEventType@2@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: void __thiscall v8::Isolate::GetCodeRange(void **,unsigned int *) -?GetCodeRange@Isolate@v8@@QAEXPAPAXPAI@Z ; has WINAPI (@8) -; public: unsigned int __thiscall v8::CodeEvent::GetCodeSize(void) -?GetCodeSize@CodeEvent@v8@@QAEIXZ -; public: unsigned int __thiscall v8::CodeEvent::GetCodeStartAddress(void) -?GetCodeStartAddress@CodeEvent@v8@@QAEIXZ -; public: enum v8::CodeEventType __thiscall v8::CodeEvent::GetCodeType(void) -?GetCodeType@CodeEvent@v8@@QAE?AW4CodeEventType@2@XZ -; public: int __thiscall v8::StackFrame::GetColumn(void)const -?GetColumn@StackFrame@v8@@QBEHXZ -; public: int __thiscall v8::CpuProfileNode::GetColumnNumber(void)const -?GetColumnNumber@CpuProfileNode@v8@@QBEHXZ -; public: int __thiscall v8::Location::GetColumnNumber(void) -?GetColumnNumber@Location@v8@@QAEHXZ -; public: int __thiscall v8::UnboundScript::GetColumnNumber(int) -?GetColumnNumber@UnboundScript@v8@@QAEHH@Z ; has WINAPI (@4) -; public: char const *__thiscall v8::CodeEvent::GetComment(void) -?GetComment@CodeEvent@v8@@QAEPBDXZ -; public: class v8::CompiledWasmModule __thiscall v8::WasmModuleObject::GetCompiledModule(void) -?GetCompiledModule@WasmModuleObject@v8@@QAE?AVCompiledWasmModule@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::GetConstructorName(void) -?GetConstructorName@Object@v8@@QAE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::metrics::Recorder::GetContext(class v8::Isolate *,class v8::metrics::Recorder::ContextId) -?GetContext@Recorder@metrics@v8@@SA?AV?$MaybeLocal@VContext@v8@@@3@PAVIsolate@3@VContextId@123@@Z -; public: static class v8::metrics::Recorder::ContextId __cdecl v8::metrics::Recorder::GetContextId(class v8::) -?GetContextId@Recorder@metrics@v8@@SA?AVContextId@123@V?$Local@VContext@v8@@@3@@Z -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetContextId(class v8::internal::Context) -?GetContextId@WebSnapshotSerializer@internal@v8@@AAEIVContext@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Context::GetContinuationPreservedEmbedderData(void)const -?GetContinuationPreservedEmbedderData@Context@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::CppHeap *__thiscall v8::Isolate::GetCppHeap(void)const -?GetCppHeap@Isolate@v8@@QBEPAVCppHeap@2@XZ -; public: class v8:: __thiscall v8::Object::GetCreationContext(void) -?GetCreationContext@Object@v8@@QAE?AV?$MaybeLocal@VContext@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Object::GetCreationContext(class v8:: const &) -?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@ABV?$PersistentBase@VObject@v8@@@2@@Z -; public: class v8:: __thiscall v8::Object::GetCreationContextChecked(void) -?GetCreationContextChecked@Object@v8@@QAE?AV?$Local@VContext@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8::Isolate *__cdecl v8::Isolate::GetCurrent(void) -?GetCurrent@Isolate@v8@@SAPAV12@XZ -; public: class v8:: __thiscall v8::Isolate::GetCurrentContext(void) -?GetCurrentContext@Isolate@v8@@QAE?AV?$Local@VContext@v8@@@2@XZ ; has WINAPI (@4) -; public: static int __cdecl v8::MicrotasksScope::GetCurrentDepth(class v8::Isolate *) -?GetCurrentDepth@MicrotasksScope@v8@@SAHPAVIsolate@2@@Z -; class node::Environment *__cdecl node::GetCurrentEnvironment(class v8::) -?GetCurrentEnvironment@node@@YAPAVEnvironment@1@V?$Local@VContext@v8@@@v8@@@Z -; struct uv_loop_s *__cdecl node::GetCurrentEventLoop(class v8::Isolate *) -?GetCurrentEventLoop@node@@YAPAUuv_loop_s@@PAVIsolate@v8@@@Z -; public: void *__thiscall v8::Isolate::GetData(unsigned int) -?GetData@Isolate@v8@@QAEPAXI@Z ; has WINAPI (@4) -; private: unsigned int *__thiscall v8::Context::GetDataFromSnapshotOnce(unsigned int) -?GetDataFromSnapshotOnce@Context@v8@@AAEPAII@Z ; has WINAPI (@4) -; private: unsigned int *__thiscall v8::Isolate::GetDataFromSnapshotOnce(unsigned int) -?GetDataFromSnapshotOnce@Isolate@v8@@AAEPAII@Z ; has WINAPI (@4) -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetDataViewId(class v8::internal::JSDataView) -?GetDataViewId@WebSnapshotSerializer@internal@v8@@AAEIVJSDataView@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Function::GetDebugName(void)const -?GetDebugName@Function@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class std::Cr::> const &__thiscall v8::CpuProfileNode::GetDeoptInfos(void)const -?GetDeoptInfos@CpuProfileNode@v8@@QBEABV?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@XZ -; public: void __thiscall v8::Isolate::GetEmbeddedCodeRange(void const **,unsigned int *) -?GetEmbeddedCodeRange@Isolate@v8@@QAEXPAPBXPAI@Z ; has WINAPI (@8) -; public: static char const *__cdecl v8::internal::Version::GetEmbedder(void) -?GetEmbedder@Version@internal@v8@@SAPBDXZ -; public: class v8:: __thiscall v8::Context::GetEmbedderData(int) -?GetEmbedderData@Context@v8@@QAE?AV?$Local@VValue@v8@@@2@H@Z ; has WINAPI (@8) -; public: class v8::EmbedderHeapTracer *__thiscall v8::Isolate::GetEmbedderHeapTracer(void) -?GetEmbedderHeapTracer@Isolate@v8@@QAEPAVEmbedderHeapTracer@2@XZ -; public: class v8:: __thiscall v8::Message::GetEndColumn(class v8::)const -?GetEndColumn@Message@v8@@QBE?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: int __thiscall v8::Message::GetEndColumn(void)const -?GetEndColumn@Message@v8@@QBEHXZ -; public: int __thiscall v8::Message::GetEndPosition(void)const -?GetEndPosition@Message@v8@@QBEHXZ -; public: __int64 __thiscall v8::CpuProfile::GetEndTime(void)const -?GetEndTime@CpuProfile@v8@@QBE_JXZ -; public: class v8:: __thiscall v8::Isolate::GetEnteredOrMicrotaskContext(void) -?GetEnteredOrMicrotaskContext@Isolate@v8@@QAE?AV?$Local@VContext@v8@@@2@XZ ; has WINAPI (@4) -; class node::IsolateData *__cdecl node::GetEnvironmentIsolateData(class node::Environment *) -?GetEnvironmentIsolateData@node@@YAPAVIsolateData@1@PAVEnvironment@1@@Z -; public: class v8:: __thiscall v8::Module::GetException(void)const -?GetException@Module@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; private: bool __thiscall v8::internal::WebSnapshotSerializer::GetExternalId(class v8::internal::HeapObject,unsigned int *) -?GetExternalId@WebSnapshotSerializer@internal@v8@@AAE_NVHeapObject@23@PAI@Z ; has WINAPI (@8) -; public: class v8::String::ExternalOneByteStringResource const *__thiscall v8::String::GetExternalOneByteStringResource(void)const -?GetExternalOneByteStringResource@String@v8@@QBEPBVExternalOneByteStringResource@12@XZ -; public: class v8::String::ExternalStringResource *__thiscall v8::String::GetExternalStringResource(void)const -?GetExternalStringResource@String@v8@@QBEPAVExternalStringResource@12@XZ -; public: class v8::String::ExternalStringResourceBase *__thiscall v8::String::GetExternalStringResourceBase(enum v8::String::Encoding *)const -?GetExternalStringResourceBase@String@v8@@QBEPAVExternalStringResourceBase@12@PAW4Encoding@12@@Z ; has WINAPI (@4) -; private: class v8::String::ExternalStringResourceBase *__thiscall v8::String::GetExternalStringResourceBaseSlow(enum v8::String::Encoding *)const -?GetExternalStringResourceBaseSlow@String@v8@@ABEPAVExternalStringResourceBase@12@PAW4Encoding@12@@Z ; has WINAPI (@4) -; private: class v8::String::ExternalStringResource *__thiscall v8::String::GetExternalStringResourceSlow(void)const -?GetExternalStringResourceSlow@String@v8@@ABEPAVExternalStringResource@12@XZ -; public: class v8::internal:: __thiscall v8::internal::WebSnapshotSerializer::GetExternals(void) -?GetExternals@WebSnapshotSerializer@internal@v8@@QAE?AV?$Handle@VFixedArray@internal@v8@@@23@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Context::GetExtrasBindingObject(void) -?GetExtrasBindingObject@Context@v8@@QAE?AV?$Local@VObject@v8@@@2@XZ ; has WINAPI (@4) -; public: enum v8::RegExp::Flags __thiscall v8::RegExp::GetFlags(void)const -?GetFlags@RegExp@v8@@QBE?AW4Flags@12@XZ -; public: virtual class std::Cr:: __thiscall cppgc::Platform::GetForegroundTaskRunner(void) -?GetForegroundTaskRunner@Platform@cppgc@@UAE?AV?$shared_ptr@VTaskRunner@v8@@@Cr@std@@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::StackTrace::GetFrame(class v8::Isolate *,unsigned int)const -?GetFrame@StackTrace@v8@@QBE?AV?$Local@VStackFrame@v8@@@2@PAVIsolate@2@I@Z ; has WINAPI (@12) -; public: int __thiscall v8::StackTrace::GetFrameCount(void)const -?GetFrameCount@StackTrace@v8@@QBEHXZ -; public: class v8::HeapGraphNode const *__thiscall v8::HeapGraphEdge::GetFromNode(void)const -?GetFromNode@HeapGraphEdge@v8@@QBEPBVHeapGraphNode@2@XZ -; public: class v8:: __thiscall v8::FunctionTemplate::GetFunction(class v8::) -?GetFunction@FunctionTemplate@v8@@QAE?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetFunctionId(class v8::internal::JSFunction) -?GetFunctionId@WebSnapshotSerializer@internal@v8@@AAEIVJSFunction@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::CodeEvent::GetFunctionName(void) -?GetFunctionName@CodeEvent@v8@@QAE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::CpuProfileNode::GetFunctionName(void)const -?GetFunctionName@CpuProfileNode@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::StackFrame::GetFunctionName(void)const -?GetFunctionName@StackFrame@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: char const *__thiscall v8::CpuProfileNode::GetFunctionNameStr(void)const -?GetFunctionNameStr@CpuProfileNode@v8@@QBEPBDXZ -; public: class v8:: __thiscall v8::Proxy::GetHandler(void) -?GetHandler@Proxy@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::GetHasInstance(class v8::Isolate *) -?GetHasInstance@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: bool __thiscall v8::Isolate::GetHeapCodeAndMetadataStatistics(class v8::HeapCodeStatistics *) -?GetHeapCodeAndMetadataStatistics@Isolate@v8@@QAE_NPAVHeapCodeStatistics@2@@Z ; has WINAPI (@4) -; public: class cppgc::HeapHandle &__thiscall v8::CppHeap::GetHeapHandle(void) -?GetHeapHandle@CppHeap@v8@@QAEAAVHeapHandle@cppgc@@XZ -; public: class cppgc::HeapHandle &__thiscall cppgc::Heap::GetHeapHandle(void) -?GetHeapHandle@Heap@cppgc@@QAEAAVHeapHandle@2@XZ -; public: bool __thiscall v8::Isolate::GetHeapObjectStatisticsAtLastGC(class v8::HeapObjectStatistics *,unsigned int) -?GetHeapObjectStatisticsAtLastGC@Isolate@v8@@QAE_NPAVHeapObjectStatistics@2@I@Z ; has WINAPI (@8) -; public: class v8::HeapProfiler *__thiscall v8::Isolate::GetHeapProfiler(void) -?GetHeapProfiler@Isolate@v8@@QAEPAVHeapProfiler@2@XZ -; public: class v8::HeapSnapshot const *__thiscall v8::HeapProfiler::GetHeapSnapshot(int) -?GetHeapSnapshot@HeapProfiler@v8@@QAEPBVHeapSnapshot@2@H@Z ; has WINAPI (@4) -; public: bool __thiscall v8::Isolate::GetHeapSpaceStatistics(class v8::HeapSpaceStatistics *,unsigned int) -?GetHeapSpaceStatistics@Isolate@v8@@QAE_NPAVHeapSpaceStatistics@2@I@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::GetHeapStatistics(class v8::HeapStatistics *) -?GetHeapStatistics@Isolate@v8@@QAEXPAVHeapStatistics@2@@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::HeapProfiler::GetHeapStats(class v8::OutputStream *,__int64 *) -?GetHeapStats@HeapProfiler@v8@@QAEIPAVOutputStream@2@PA_J@Z ; has WINAPI (@8) -; public: unsigned int __thiscall v8::CpuProfileNode::GetHitCount(void)const -?GetHitCount@CpuProfileNode@v8@@QBEIXZ -; public: unsigned int __thiscall v8::CpuProfileNode::GetHitLineCount(void)const -?GetHitLineCount@CpuProfileNode@v8@@QBEIXZ -; public: class v8:: __thiscall v8::ScriptOrigin::GetHostDefinedOptions(void)const -?GetHostDefinedOptions@ScriptOrigin@v8@@QBE?AV?$Local@VData@v8@@@2@XZ ; has WINAPI (@4) -; public: unsigned int __thiscall v8::DiscardedSamplesDelegate::GetId(void)const -?GetId@DiscardedSamplesDelegate@v8@@QBEIXZ -; public: unsigned int __thiscall v8::HeapGraphNode::GetId(void)const -?GetId@HeapGraphNode@v8@@QBEIXZ -; public: int __thiscall v8::UnboundScript::GetId(void)const -?GetId@UnboundScript@v8@@QBEHXZ -; public: int __thiscall v8::Module::GetIdentityHash(void)const -?GetIdentityHash@Module@v8@@QBEHXZ -; public: int __thiscall v8::Name::GetIdentityHash(void) -?GetIdentityHash@Name@v8@@QAEHXZ -; public: int __thiscall v8::Object::GetIdentityHash(void) -?GetIdentityHash@Object@v8@@QAEHXZ -; public: class v8:: __thiscall v8::ModuleRequest::GetImportAssertions(void)const -?GetImportAssertions@ModuleRequest@v8@@QBE?AV?$Local@VFixedArray@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Isolate::GetIncumbentContext(void) -?GetIncumbentContext@Isolate@v8@@QAE?AV?$Local@VContext@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Function::GetInferredName(void)const -?GetInferredName@Function@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; class std::Cr::> __cdecl node::GetInspectorParentHandle(class node::Environment *,struct node::ThreadId,char const *) -?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@Cr@std@@@Cr@std@@PAVEnvironment@1@UThreadId@1@PBD@Z -; public: class v8:: __thiscall v8::Object::GetInternalField(int) -?GetInternalField@Object@v8@@QAE?AV?$Local@VValue@v8@@@2@H@Z ; has WINAPI (@8) -; public: static class v8:: __cdecl v8::Symbol::GetIsConcatSpreadable(class v8::Isolate *) -?GetIsConcatSpreadable@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: class v8::Isolate *__thiscall v8::Context::GetIsolate(void) -?GetIsolate@Context@v8@@QAEPAVIsolate@2@XZ -; public: class v8::Isolate *__thiscall v8::HandleScope::GetIsolate(void)const -?GetIsolate@HandleScope@v8@@QBEPAVIsolate@2@XZ -; public: class v8::Isolate *__thiscall v8::Message::GetIsolate(void)const -?GetIsolate@Message@v8@@QBEPAVIsolate@2@XZ -; public: class v8::Isolate *__thiscall v8::Object::GetIsolate(void) -?GetIsolate@Object@v8@@QAEPAVIsolate@2@XZ -; public: class v8::Isolate *__thiscall v8::SnapshotCreator::GetIsolate(void) -?GetIsolate@SnapshotCreator@v8@@QAEPAVIsolate@2@XZ -; public: static class v8:: __cdecl v8::Symbol::GetIterator(class v8::Isolate *) -?GetIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: struct v8::JSEntryStubs __thiscall v8::Isolate::GetJSEntryStubs(void) -?GetJSEntryStubs@Isolate@v8@@QAE?AUJSEntryStubs@2@XZ ; has WINAPI (@4) -; public: int __thiscall v8::CpuProfileNode::GetLineNumber(void)const -?GetLineNumber@CpuProfileNode@v8@@QBEHXZ -; public: int __thiscall v8::Location::GetLineNumber(void) -?GetLineNumber@Location@v8@@QAEHXZ -; public: class v8:: __thiscall v8::Message::GetLineNumber(class v8::)const -?GetLineNumber@Message@v8@@QBE?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: int __thiscall v8::StackFrame::GetLineNumber(void)const -?GetLineNumber@StackFrame@v8@@QBEHXZ -; public: int __thiscall v8::UnboundScript::GetLineNumber(int) -?GetLineNumber@UnboundScript@v8@@QAEHH@Z ; has WINAPI (@4) -; public: bool __thiscall v8::CpuProfileNode::GetLineTicks(struct v8::CpuProfileNode::LineTick *,unsigned int)const -?GetLineTicks@CpuProfileNode@v8@@QBE_NPAULineTick@12@I@Z ; has WINAPI (@8) -; public: class v8::Location __thiscall v8::StackFrame::GetLocation(void)const -?GetLocation@StackFrame@v8@@QBE?AVLocation@2@XZ ; has WINAPI (@4) -; public: static int __cdecl v8::internal::Version::GetMajor(void) -?GetMajor@Version@internal@v8@@SAHXZ -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetMapId(class v8::internal::Map) -?GetMapId@WebSnapshotSerializer@internal@v8@@AAEIVMap@23@@Z ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::GetMatch(class v8::Isolate *) -?GetMatch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: unsigned int __thiscall v8::HeapSnapshot::GetMaxSnapshotJSObjectId(void)const -?GetMaxSnapshotJSObjectId@HeapSnapshot@v8@@QBEIXZ -; public: class v8::MicrotaskQueue *__thiscall v8::Context::GetMicrotaskQueue(void) -?GetMicrotaskQueue@Context@v8@@QAEPAVMicrotaskQueue@2@XZ -; public: enum v8::MicrotasksPolicy __thiscall v8::Isolate::GetMicrotasksPolicy(void)const -?GetMicrotasksPolicy@Isolate@v8@@QBE?AW4MicrotasksPolicy@2@XZ -; public: static int __cdecl v8::internal::Version::GetMinor(void) -?GetMinor@Version@internal@v8@@SAHXZ -; public: class v8:: __thiscall v8::Module::GetModuleNamespace(void) -?GetModuleNamespace@Module@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Module::GetModuleRequests(void)const -?GetModuleRequests@Module@v8@@QBE?AV?$Local@VFixedArray@v8@@@2@XZ ; has WINAPI (@4) -; class node::MultiIsolatePlatform *__cdecl node::GetMultiIsolatePlatform(class node::Environment *) -?GetMultiIsolatePlatform@node@@YAPAVMultiIsolatePlatform@1@PAVEnvironment@1@@Z -; class node::MultiIsolatePlatform *__cdecl node::GetMultiIsolatePlatform(class node::IsolateData *) -?GetMultiIsolatePlatform@node@@YAPAVMultiIsolatePlatform@1@PAVIsolateData@1@@Z -; public: static class cppgc::internal::GCInfoTable &__cdecl cppgc::internal::GlobalGCInfoTable::GetMutable(void) -?GetMutable@GlobalGCInfoTable@internal@cppgc@@SAAAVGCInfoTable@23@XZ -; public: class v8:: __thiscall v8::Function::GetName(void)const -?GetName@Function@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::HeapGraphEdge::GetName(void)const -?GetName@HeapGraphEdge@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::HeapGraphNode::GetName(void)const -?GetName@HeapGraphNode@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; protected: static struct cppgc::internal::HeapObjectName __cdecl cppgc::internal::NameTraitBase::GetNameFromTypeSignature(char const *) -?GetNameFromTypeSignature@NameTraitBase@internal@cppgc@@KA?AUHeapObjectName@23@PBD@Z -; public: virtual class v8:: __thiscall v8::Extension::GetNativeFunctionTemplate(class v8::Isolate *,class v8::) -?GetNativeFunctionTemplate@Extension@v8@@UAE?AV?$Local@VFunctionTemplate@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8::HeapGraphNode const *__thiscall v8::HeapSnapshot::GetNode(int)const -?GetNode@HeapSnapshot@v8@@QBEPBVHeapGraphNode@2@H@Z ; has WINAPI (@4) -; public: class v8::HeapGraphNode const *__thiscall v8::HeapSnapshot::GetNodeById(unsigned int)const -?GetNodeById@HeapSnapshot@v8@@QBEPBVHeapGraphNode@2@I@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::CpuProfileNode::GetNodeId(void)const -?GetNodeId@CpuProfileNode@v8@@QBEIXZ -; public: int __thiscall v8::HeapSnapshot::GetNodesCount(void)const -?GetNodesCount@HeapSnapshot@v8@@QBEHXZ -; public: static unsigned int __cdecl v8::Isolate::GetNumberOfDataSlots(void) -?GetNumberOfDataSlots@Isolate@v8@@SAIXZ -; public: unsigned int __thiscall v8::Context::GetNumberOfEmbedderDataFields(void) -?GetNumberOfEmbedderDataFields@Context@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapProfiler::GetObjectId(void *) -?GetObjectId@HeapProfiler@v8@@QAEIPAX@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::HeapProfiler::GetObjectId(class v8::) -?GetObjectId@HeapProfiler@v8@@QAEIV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetObjectId(class v8::internal::JSObject) -?GetObjectId@WebSnapshotSerializer@internal@v8@@AAEIVJSObject@23@@Z ; has WINAPI (@4) -; protected: static unsigned int __cdecl cppgc::internal::BaseObjectSizeTrait::GetObjectSizeForGarbageCollected(void const *) -?GetObjectSizeForGarbageCollected@BaseObjectSizeTrait@internal@cppgc@@KAIPBX@Z -; protected: static unsigned int __cdecl cppgc::internal::BaseObjectSizeTrait::GetObjectSizeForGarbageCollectedMixin(void const *) -?GetObjectSizeForGarbageCollectedMixin@BaseObjectSizeTrait@internal@cppgc@@KAIPBX@Z -; public: enum v8::CFunction::OverloadResolution __thiscall v8::CFunction::GetOverloadResolution(class v8::CFunction const *) -?GetOverloadResolution@CFunction@v8@@QAE?AW4OverloadResolution@12@PBV12@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::GetOwnPropertyDescriptor(class v8::,class v8::) -?GetOwnPropertyDescriptor@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::GetOwnPropertyNames(class v8::) -?GetOwnPropertyNames@Object@v8@@QAE?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Object::GetOwnPropertyNames(class v8::,enum v8::PropertyFilter,enum v8::KeyConversionMode) -?GetOwnPropertyNames@Object@v8@@QAE?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4PropertyFilter@2@W4KeyConversionMode@2@@Z ; has WINAPI (@16) -; public: class v8::CpuProfileNode const *__thiscall v8::CpuProfileNode::GetParent(void)const -?GetParent@CpuProfileNode@v8@@QBEPBV12@XZ -; public: static int __cdecl v8::internal::Version::GetPatch(void) -?GetPatch@Version@internal@v8@@SAHXZ -; public: static class cppgc::internal::CrossThreadPersistentRegion &__cdecl cppgc::internal::StrongCrossThreadPersistentPolicy::GetPersistentRegion(void const *) -?GetPersistentRegion@StrongCrossThreadPersistentPolicy@internal@cppgc@@SAAAVCrossThreadPersistentRegion@23@PBX@Z -; public: static class cppgc::internal::PersistentRegion &__cdecl cppgc::internal::StrongPersistentPolicy::GetPersistentRegion(void const *) -?GetPersistentRegion@StrongPersistentPolicy@internal@cppgc@@SAAAVPersistentRegion@23@PBX@Z -; public: static class cppgc::internal::CrossThreadPersistentRegion &__cdecl cppgc::internal::WeakCrossThreadPersistentPolicy::GetPersistentRegion(void const *) -?GetPersistentRegion@WeakCrossThreadPersistentPolicy@internal@cppgc@@SAAAVCrossThreadPersistentRegion@23@PBX@Z -; public: static class cppgc::internal::PersistentRegion &__cdecl cppgc::internal::WeakPersistentPolicy::GetPersistentRegion(void const *) -?GetPersistentRegion@WeakPersistentPolicy@internal@cppgc@@SAAAVPersistentRegion@23@PBX@Z -; public: unsigned int __thiscall v8::CodeEvent::GetPreviousCodeStartAddress(void) -?GetPreviousCodeStartAddress@CodeEvent@v8@@QAEIXZ -; public: class v8:: __thiscall v8::Object::GetPrivate(class v8::,class v8::) -?GetPrivate@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Promise::Resolver::GetPromise(void) -?GetPromise@Resolver@Promise@v8@@QAE?AV?$Local@VPromise@v8@@@3@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::GetPropertyAttributes(class v8::,class v8::) -?GetPropertyAttributes@Object@v8@@QAE?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::GetPropertyNames(class v8::) -?GetPropertyNames@Object@v8@@QAE?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Object::GetPropertyNames(class v8::,enum v8::KeyCollectionMode,enum v8::PropertyFilter,enum v8::IndexFilter,enum v8::KeyConversionMode) -?GetPropertyNames@Object@v8@@QAE?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4KeyCollectionMode@2@W4PropertyFilter@2@W4IndexFilter@2@W4KeyConversionMode@2@@Z ; has WINAPI (@24) -; public: class v8:: __thiscall v8::Object::GetPrototype(void) -?GetPrototype@Object@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::GetRealNamedProperty(class v8::,class v8::) -?GetRealNamedProperty@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::GetRealNamedPropertyAttributes(class v8::,class v8::) -?GetRealNamedPropertyAttributes@Object@v8@@QAE?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::GetRealNamedPropertyAttributesInPrototypeChain(class v8::,class v8::) -?GetRealNamedPropertyAttributesInPrototypeChain@Object@v8@@QAE?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::GetRealNamedPropertyInPrototypeChain(class v8::,class v8::) -?GetRealNamedPropertyInPrototypeChain@Object@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; unsigned int __cdecl v8::internal::trap_handler::GetRecoveredTrapCount(void) -?GetRecoveredTrapCount@trap_handler@internal@v8@@YAIXZ -; public: static class v8:: __cdecl v8::Symbol::GetReplace(class v8::Isolate *) -?GetReplace@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: class v8:: __thiscall v8::Script::GetResourceName(void) -?GetResourceName@Script@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::ScriptOrModule::GetResourceName(void) -?GetResourceName@ScriptOrModule@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::HeapGraphNode const *__thiscall v8::HeapSnapshot::GetRoot(void)const -?GetRoot@HeapSnapshot@v8@@QBEPBVHeapGraphNode@2@XZ -; public: static void __cdecl v8::internal::Version::GetSONAME(class v8::base::) -?GetSONAME@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z -; public: class v8::CpuProfileNode const *__thiscall v8::CpuProfile::GetSample(int)const -?GetSample@CpuProfile@v8@@QBEPBVCpuProfileNode@2@H@Z ; has WINAPI (@4) -; public: enum v8::EmbedderStateTag __thiscall v8::CpuProfile::GetSampleEmbedderState(int)const -?GetSampleEmbedderState@CpuProfile@v8@@QBE?AW4EmbedderStateTag@2@H@Z ; has WINAPI (@4) -; public: enum v8::StateTag __thiscall v8::CpuProfile::GetSampleState(int)const -?GetSampleState@CpuProfile@v8@@QBE?AW4StateTag@2@H@Z ; has WINAPI (@4) -; public: __int64 __thiscall v8::CpuProfile::GetSampleTimestamp(int)const -?GetSampleTimestamp@CpuProfile@v8@@QBE_JH@Z ; has WINAPI (@4) -; public: int __thiscall v8::CpuProfile::GetSamplesCount(void)const -?GetSamplesCount@CpuProfile@v8@@QBEHXZ -; public: int __thiscall v8::CodeEvent::GetScriptColumn(void) -?GetScriptColumn@CodeEvent@v8@@QAEHXZ -; public: int __thiscall v8::Function::GetScriptColumnNumber(void)const -?GetScriptColumnNumber@Function@v8@@QBEHXZ -; public: int __thiscall v8::CpuProfileNode::GetScriptId(void)const -?GetScriptId@CpuProfileNode@v8@@QBEHXZ -; public: int __thiscall v8::StackFrame::GetScriptId(void)const -?GetScriptId@StackFrame@v8@@QBEHXZ -; public: int __thiscall v8::CodeEvent::GetScriptLine(void) -?GetScriptLine@CodeEvent@v8@@QAEHXZ -; public: int __thiscall v8::Function::GetScriptLineNumber(void)const -?GetScriptLineNumber@Function@v8@@QBEHXZ -; public: class v8:: __thiscall v8::CodeEvent::GetScriptName(void) -?GetScriptName@CodeEvent@v8@@QAE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::StackFrame::GetScriptName(void)const -?GetScriptName@StackFrame@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::UnboundScript::GetScriptName(void) -?GetScriptName@UnboundScript@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::StackFrame::GetScriptNameOrSourceURL(void)const -?GetScriptNameOrSourceURL@StackFrame@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::ScriptOrigin __thiscall v8::Function::GetScriptOrigin(void)const -?GetScriptOrigin@Function@v8@@QBE?AVScriptOrigin@2@XZ ; has WINAPI (@4) -; public: class v8::ScriptOrigin __thiscall v8::Message::GetScriptOrigin(void)const -?GetScriptOrigin@Message@v8@@QBE?AVScriptOrigin@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::CpuProfileNode::GetScriptResourceName(void)const -?GetScriptResourceName@CpuProfileNode@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Message::GetScriptResourceName(void)const -?GetScriptResourceName@Message@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: char const *__thiscall v8::CpuProfileNode::GetScriptResourceNameStr(void)const -?GetScriptResourceNameStr@CpuProfileNode@v8@@QBEPBDXZ -; public: class v8:: __thiscall v8::StackFrame::GetScriptSource(void)const -?GetScriptSource@StackFrame@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::StackFrame::GetScriptSourceMappingURL(void)const -?GetScriptSourceMappingURL@StackFrame@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::GetSearch(class v8::Isolate *) -?GetSearch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: class v8:: __thiscall v8::Context::GetSecurityToken(void) -?GetSecurityToken@Context@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: unsigned int __thiscall v8::HeapGraphNode::GetShallowSize(void)const -?GetShallowSize@HeapGraphNode@v8@@QBEIXZ -; public: virtual class v8:: __thiscall v8::ValueDeserializer::Delegate::GetSharedArrayBufferFromId(class v8::Isolate *,unsigned int) -?GetSharedArrayBufferFromId@Delegate@ValueDeserializer@v8@@UAE?AV?$MaybeLocal@VSharedArrayBuffer@v8@@@3@PAVIsolate@3@I@Z ; has WINAPI (@12) -; public: virtual class v8:: __thiscall v8::ValueSerializer::Delegate::GetSharedArrayBufferId(class v8::Isolate *,class v8::) -?GetSharedArrayBufferId@Delegate@ValueSerializer@v8@@UAE?AV?$Maybe@I@3@PAVIsolate@3@V?$Local@VSharedArrayBuffer@v8@@@3@@Z ; has WINAPI (@12) -; public: static void __cdecl v8::V8::GetSharedMemoryStatistics(class v8::SharedMemoryStatistics *) -?GetSharedMemoryStatistics@V8@v8@@SAXPAVSharedMemoryStatistics@2@@Z -; public: virtual class v8::SharedValueConveyor const *__thiscall v8::ValueDeserializer::Delegate::GetSharedValueConveyor(class v8::Isolate *) -?GetSharedValueConveyor@Delegate@ValueDeserializer@v8@@UAEPBVSharedValueConveyor@3@PAVIsolate@3@@Z ; has WINAPI (@4) -; public: int __thiscall v8::HeapProfiler::GetSnapshotCount(void) -?GetSnapshotCount@HeapProfiler@v8@@QAEHXZ -; public: class v8:: __thiscall v8::Message::GetSource(class v8::)const -?GetSource@Message@v8@@QBE?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::RegExp::GetSource(void)const -?GetSource@RegExp@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Message::GetSourceLine(class v8::)const -?GetSourceLine@Message@v8@@QBE?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::UnboundModuleScript::GetSourceMappingURL(void) -?GetSourceMappingURL@UnboundModuleScript@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::UnboundScript::GetSourceMappingURL(void) -?GetSourceMappingURL@UnboundScript@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: int __thiscall v8::ModuleRequest::GetSourceOffset(void)const -?GetSourceOffset@ModuleRequest@v8@@QBEHXZ -; public: enum v8::CpuProfileNode::SourceType __thiscall v8::CpuProfileNode::GetSourceType(void)const -?GetSourceType@CpuProfileNode@v8@@QBE?AW4SourceType@12@XZ -; public: class v8:: __thiscall v8::UnboundModuleScript::GetSourceURL(void) -?GetSourceURL@UnboundModuleScript@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::UnboundScript::GetSourceURL(void) -?GetSourceURL@UnboundScript@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::ModuleRequest::GetSpecifier(void)const -?GetSpecifier@ModuleRequest@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::GetSplit(class v8::Isolate *) -?GetSplit@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: void __thiscall v8::Isolate::GetStackSample(struct v8::RegisterState const &,void **,unsigned int,struct v8::SampleInfo *) -?GetStackSample@Isolate@v8@@QAEXABURegisterState@2@PAPAXIPAUSampleInfo@2@@Z ; has WINAPI (@16) -; public: static bool __cdecl v8::internal::TickSample::GetStackSample(class v8::internal::Isolate *,struct v8::RegisterState *,enum v8::internal::TickSample::RecordCEntryFrame,void **,unsigned int,struct v8::SampleInfo *,enum v8::StateTag *,bool) -?GetStackSample@TickSample@internal@v8@@SA_NPAVIsolate@23@PAURegisterState@3@W4RecordCEntryFrame@123@PAPAXIPAUSampleInfo@3@PAW4StateTag@3@_N@Z -; public: static class v8:: __cdecl v8::Exception::GetStackTrace(class v8::) -?GetStackTrace@Exception@v8@@SA?AV?$Local@VStackTrace@v8@@@2@V?$Local@VValue@v8@@@2@@Z -; public: class v8:: __thiscall v8::Message::GetStackTrace(void)const -?GetStackTrace@Message@v8@@QBE?AV?$Local@VStackTrace@v8@@@2@XZ ; has WINAPI (@4) -; public: class std::Cr::,class v8::>,class std::Cr::,class v8::>>> __thiscall v8::Module::GetStalledTopLevelAwaitMessage(class v8::Isolate *) -?GetStalledTopLevelAwaitMessage@Module@v8@@QAE?AV?$vector@V?$tuple@V?$Local@VModule@v8@@@v8@@V?$Local@VMessage@v8@@@2@@Cr@std@@V?$allocator@V?$tuple@V?$Local@VModule@v8@@@v8@@V?$Local@VMessage@v8@@@2@@Cr@std@@@23@@Cr@std@@PAVIsolate@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Message::GetStartColumn(class v8::)const -?GetStartColumn@Message@v8@@QBE?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: int __thiscall v8::Message::GetStartColumn(void)const -?GetStartColumn@Message@v8@@QBEHXZ -; public: int __thiscall v8::Message::GetStartPosition(void)const -?GetStartPosition@Message@v8@@QBEHXZ -; public: __int64 __thiscall v8::CpuProfile::GetStartTime(void)const -?GetStartTime@CpuProfile@v8@@QBE_JXZ -; public: enum v8::Module::Status __thiscall v8::Module::GetStatus(void)const -?GetStatus@Module@v8@@QBE?AW4Status@12@XZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: static void __cdecl v8::internal::Version::GetString(class v8::base::) -?GetString@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetStringId(class v8::internal::,bool &) -?GetStringId@WebSnapshotSerializer@internal@v8@@AAEIV?$Handle@VString@internal@v8@@@23@AA_N@Z ; has WINAPI (@8) -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetSymbolId(class v8::internal::Symbol) -?GetSymbolId@WebSnapshotSerializer@internal@v8@@AAEIVSymbol@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Proxy::GetTarget(void) -?GetTarget@Proxy@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; int *__cdecl v8::internal::trap_handler::GetThreadInWasmThreadLocalAddress(void) -?GetThreadInWasmThreadLocalAddress@trap_handler@internal@v8@@YAPAHXZ -; public: class v8:: __thiscall v8::CpuProfile::GetTitle(void)const -?GetTitle@CpuProfile@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::HeapGraphNode const *__thiscall v8::HeapGraphEdge::GetToNode(void)const -?GetToNode@HeapGraphEdge@v8@@QBEPBVHeapGraphNode@2@XZ -; public: static class v8:: __cdecl v8::Symbol::GetToPrimitive(class v8::Isolate *) -?GetToPrimitive@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: static class v8:: __cdecl v8::Symbol::GetToStringTag(class v8::Isolate *) -?GetToStringTag@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: class v8::CpuProfileNode const *__thiscall v8::CpuProfile::GetTopDownRoot(void)const -?GetTopDownRoot@CpuProfile@v8@@QBEPBVCpuProfileNode@2@XZ -; public: static struct cppgc::TraceDescriptor __cdecl cppgc::internal::TraceTraitFromInnerAddressImpl::GetTraceDescriptor(void const *) -?GetTraceDescriptor@TraceTraitFromInnerAddressImpl@internal@cppgc@@SA?AUTraceDescriptor@3@PBX@Z -; public: virtual class v8::TracingController *__thiscall cppgc::Platform::GetTracingController(void) -?GetTracingController@Platform@cppgc@@UAEPAVTracingController@v8@@XZ -; class v8::TracingController *__cdecl node::GetTracingController(void) -?GetTracingController@node@@YAPAVTracingController@v8@@XZ -; public: enum v8::HeapGraphEdge::Type __thiscall v8::HeapGraphEdge::GetType(void)const -?GetType@HeapGraphEdge@v8@@QBE?AW4Type@12@XZ -; public: enum v8::HeapGraphNode::Type __thiscall v8::HeapGraphNode::GetType(void)const -?GetType@HeapGraphNode@v8@@QBE?AW4Type@12@XZ -; public: class v8::CFunctionInfo const *__thiscall v8::CFunction::GetTypeInfo(void)const -?GetTypeInfo@CFunction@v8@@QBEPBVCFunctionInfo@2@XZ -; private: unsigned int __thiscall v8::internal::WebSnapshotSerializer::GetTypedArrayId(class v8::internal::JSTypedArray) -?GetTypedArrayId@WebSnapshotSerializer@internal@v8@@AAEIVJSTypedArray@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Module::GetUnboundModuleScript(void) -?GetUnboundModuleScript@Module@v8@@QAE?AV?$Local@VUnboundModuleScript@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Function::GetUnboundScript(void)const -?GetUnboundScript@Function@v8@@QBE?AV?$MaybeLocal@VUnboundScript@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Script::GetUnboundScript(void) -?GetUnboundScript@Script@v8@@QAE?AV?$Local@VUnboundScript@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Symbol::GetUnscopables(class v8::Isolate *) -?GetUnscopables@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@@Z -; public: static char const *__cdecl v8::V8::GetVersion(void) -?GetVersion@V8@v8@@SAPBDXZ -; public: static char const *__cdecl v8::internal::Version::GetVersion(void) -?GetVersion@Version@internal@v8@@SAPBDXZ -; public: int __thiscall v8::Message::GetWasmFunctionIndex(void)const -?GetWasmFunctionIndex@Message@v8@@QBEHXZ -; public: virtual class v8:: __thiscall v8::ValueDeserializer::Delegate::GetWasmModuleFromId(class v8::Isolate *,unsigned int) -?GetWasmModuleFromId@Delegate@ValueDeserializer@v8@@UAE?AV?$MaybeLocal@VWasmModuleObject@v8@@@3@PAVIsolate@3@I@Z ; has WINAPI (@12) -; public: virtual class v8:: __thiscall v8::ValueSerializer::Delegate::GetWasmModuleTransferId(class v8::Isolate *,class v8::) -?GetWasmModuleTransferId@Delegate@ValueSerializer@v8@@UAE?AV?$Maybe@I@3@PAVIsolate@3@V?$Local@VWasmModuleObject@v8@@@3@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::CompiledWasmModule::GetWireBytesRef(void) -?GetWireBytesRef@CompiledWasmModule@v8@@QAE?AV?$MemorySpan@$$CBE@2@XZ ; has WINAPI (@4) -; public: unsigned int __thiscall v8::ValueDeserializer::GetWireFormatVersion(void)const -?GetWireFormatVersion@ValueDeserializer@v8@@QBEIXZ -; public: static enum cppgc::internal::WriteBarrier::Type __cdecl cppgc::internal::WriteBarrier::GetWriteBarrierType(void const *,void const *,struct cppgc::internal::WriteBarrier::Params &) -?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PBX0AAUParams@123@@Z -; public: static enum cppgc::internal::WriteBarrier::Type __cdecl cppgc::internal::WriteBarrier::GetWriteBarrierType(void const *,struct cppgc::internal::WriteBarrier::Params &) -?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PBXAAUParams@123@@Z -; public: static enum cppgc::internal::WriteBarrier::Type __cdecl cppgc::internal::WriteBarrier::GetWriteBarrierType(void const *,class cppgc::internal::RawPointer,struct cppgc::internal::WriteBarrier::Params &) -?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PBXVRawPointer@23@AAUParams@123@@Z -; public: class v8:: __thiscall v8::Context::Global(void) -?Global@Context@v8@@QAE?AV?$Local@VObject@v8@@@2@XZ ; has WINAPI (@4) -; unsigned int *__cdecl v8::api_internal::GlobalizeReference(class v8::internal::Isolate *,unsigned int *) -?GlobalizeReference@api_internal@v8@@YAPAIPAVIsolate@internal@2@PAI@Z -; unsigned int *__cdecl v8::internal::GlobalizeTracedReference(class v8::internal::Isolate *,unsigned int *,unsigned int *,enum v8::internal::GlobalHandleStoreMode) -?GlobalizeTracedReference@internal@v8@@YAPAIPAVIsolate@12@PAI1W4GlobalHandleStoreMode@12@@Z -; protected: virtual void __thiscall cppgc::Visitor::HandleMovableReference(void const **) -?HandleMovableReference@Visitor@cppgc@@MAEXPAPBX@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Map::Has(class v8::,class v8::) -?Has@Map@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::Has(class v8::,unsigned int) -?Has@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::Has(class v8::,class v8::) -?Has@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Set::Has(class v8::,class v8::) -?Has@Set@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; public: bool __thiscall v8::ArrayBufferView::HasBuffer(void)const -?HasBuffer@ArrayBufferView@v8@@QBE_NXZ -; public: bool __thiscall v8::TryCatch::HasCaught(void)const -?HasCaught@TryCatch@v8@@QBE_NXZ -; public: bool __thiscall v8::Promise::HasHandler(void)const -?HasHandler@Promise@v8@@QBE_NXZ -; public: bool __thiscall v8::Object::HasIndexedLookupInterceptor(void)const -?HasIndexedLookupInterceptor@Object@v8@@QBE_NXZ -; bool __cdecl node::Buffer::HasInstance(class v8::) -?HasInstance@Buffer@node@@YA_NV?$Local@VObject@v8@@@v8@@@Z -; bool __cdecl node::Buffer::HasInstance(class v8::) -?HasInstance@Buffer@node@@YA_NV?$Local@VValue@v8@@@v8@@@Z -; public: bool __thiscall v8::FunctionTemplate::HasInstance(class v8::) -?HasInstance@FunctionTemplate@v8@@QAE_NV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::Object::HasNamedLookupInterceptor(void)const -?HasNamedLookupInterceptor@Object@v8@@QBE_NXZ -; public: bool __thiscall v8::CFunctionInfo::HasOptions(void)const -?HasOptions@CFunctionInfo@v8@@QBE_NXZ -; public: class v8:: __thiscall v8::Object::HasOwnProperty(class v8::,unsigned int) -?HasOwnProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::HasOwnProperty(class v8::,class v8::) -?HasOwnProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: bool __thiscall v8::Isolate::HasPendingBackgroundTasks(void) -?HasPendingBackgroundTasks@Isolate@v8@@QAE_NXZ -; public: class v8:: __thiscall v8::Object::HasPrivate(class v8::,class v8::) -?HasPrivate@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::HasRealIndexedProperty(class v8::,unsigned int) -?HasRealIndexedProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::HasRealNamedCallbackProperty(class v8::,class v8::) -?HasRealNamedCallbackProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::Object::HasRealNamedProperty(class v8::,class v8::) -?HasRealNamedProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z ; has WINAPI (@12) -; public: bool __thiscall v8::Context::HasTemplateLiteralObject(class v8::) -?HasTemplateLiteralObject@Context@v8@@QAE_NV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::TryCatch::HasTerminated(void)const -?HasTerminated@TryCatch@v8@@QBE_NXZ -; public: static unsigned int __cdecl v8::internal::Version::Hash(void) -?Hash@Version@internal@v8@@SAIXZ -; public: class v8:: __thiscall v8::ScriptOrModule::HostDefinedOptions(void) -?HostDefinedOptions@ScriptOrModule@v8@@QAE?AV?$Local@VData@v8@@@2@XZ ; has WINAPI (@4) -; public: bool __thiscall v8::Isolate::IdleNotificationDeadline(double) -?IdleNotificationDeadline@Isolate@v8@@QAE_NN@Z ; has WINAPI (@8) -; public: bool __thiscall v8::Isolate::InContext(void) -?InContext@Isolate@v8@@QAE_NXZ -; public: void __thiscall v8::EmbedderHeapTracer::IncreaseAllocatedSize(unsigned int) -?IncreaseAllocatedSize@EmbedderHeapTracer@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::IncreaseHeapLimitForDebugging(void) -?IncreaseHeapLimitForDebugging@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::FunctionTemplate::Inherit(class v8::) -?Inherit@FunctionTemplate@v8@@QAEXV?$Local@VFunctionTemplate@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::internal::TickSample::Init(class v8::internal::Isolate *,struct v8::RegisterState const &,enum v8::internal::TickSample::RecordCEntryFrame,bool,bool,class v8::base::TimeDelta) -?Init@TickSample@internal@v8@@QAEXPAVIsolate@23@ABURegisterState@3@W4RecordCEntryFrame@123@_N3VTimeDelta@base@3@@Z ; has WINAPI (@28) -; private: unsigned short __thiscall cppgc::internal::GCInfoTable::InitialTableLimit(void)const -?InitialTableLimit@GCInfoTable@internal@cppgc@@ABEGXZ -; public: static void __cdecl cppgc::internal::GlobalGCInfoTable::Initialize(class v8::PageAllocator &) -?Initialize@GlobalGCInfoTable@internal@cppgc@@SAXAAVPageAllocator@v8@@@Z -; protected: void __thiscall v8::HandleScope::Initialize(class v8::Isolate *) -?Initialize@HandleScope@v8@@IAEXPAVIsolate@2@@Z ; has WINAPI (@4) -; public: static void __cdecl v8::Isolate::Initialize(class v8::Isolate *,struct v8::Isolate::CreateParams const &) -?Initialize@Isolate@v8@@SAXPAV12@ABUCreateParams@12@@Z -; private: void __thiscall v8::Locker::Initialize(class v8::Isolate *) -?Initialize@Locker@v8@@AAEXPAVIsolate@2@@Z ; has WINAPI (@4) -; private: void __thiscall v8::Unlocker::Initialize(class v8::Isolate *) -?Initialize@Unlocker@v8@@AAEXPAVIsolate@2@@Z ; has WINAPI (@4) -; private: static bool __cdecl v8::V8::Initialize(int) -?Initialize@V8@v8@@CA_NH@Z -; public: static bool __cdecl v8::V8::Initialize(void) -?Initialize@V8@v8@@SA_NXZ -; bool __cdecl node::InitializeContext(class v8::) -?InitializeContext@node@@YA_NV?$Local@VContext@v8@@@v8@@@Z -; public: static void __cdecl v8::V8::InitializeExternalStartupData(char const *) -?InitializeExternalStartupData@V8@v8@@SAXPBD@Z -; public: static void __cdecl v8::V8::InitializeExternalStartupDataFromFile(char const *) -?InitializeExternalStartupDataFromFile@V8@v8@@SAXPBD@Z -; public: static bool __cdecl v8::V8::InitializeICU(char const *) -?InitializeICU@V8@v8@@SA_NPBD@Z -; public: static bool __cdecl v8::V8::InitializeICUDefaultLocation(char const *,char const *) -?InitializeICUDefaultLocation@V8@v8@@SA_NPBD0@Z -; int __cdecl node::InitializeNodeWithArgs(class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *) -?InitializeNodeWithArgs@node@@YAHPAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@00@Z -; int __cdecl node::InitializeNodeWithArgs(class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,enum node::ProcessFlags::Flags) -?InitializeNodeWithArgs@node@@YAHPAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@00W4Flags@ProcessFlags@1@@Z -; public: static void __cdecl v8::V8::InitializePlatform(class v8::Platform *) -?InitializePlatform@V8@v8@@SAXPAVPlatform@2@@Z -; void __cdecl cppgc::InitializeProcess(class v8::PageAllocator *) -?InitializeProcess@cppgc@@YAXPAVPageAllocator@v8@@@Z -; private: bool __thiscall v8::internal::WebSnapshotSerializer::InsertIntoIndexMap(class v8::internal::ObjectCacheIndexMap &,class v8::internal::HeapObject,unsigned int &) -?InsertIntoIndexMap@WebSnapshotSerializer@internal@v8@@AAE_NAAVObjectCacheIndexMap@23@VHeapObject@23@AAI@Z ; has WINAPI (@12) -; public: void __thiscall v8::Isolate::InstallConditionalFeatures(class v8::) -?InstallConditionalFeatures@Isolate@v8@@QAEXV?$Local@VContext@v8@@@2@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Value::InstanceOf(class v8::,class v8::) -?InstanceOf@Value@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::FunctionTemplate::InstanceTemplate(void) -?InstanceTemplate@FunctionTemplate@v8@@QAE?AV?$Local@VObjectTemplate@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Module::InstantiateModule(class v8::,class v8::(__cdecl *)(class v8::,class v8::,class v8::,class v8::)) -?InstantiateModule@Module@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@P6A?AV?$MaybeLocal@VModule@v8@@@2@0V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@V?$Local@VModule@v8@@@2@@Z@Z ; has WINAPI (@12) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::Instrumentation -?Instrumentation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: class v8:: __thiscall v8::Value::Int32Value(class v8::)const -?Int32Value@Value@v8@@QBE?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: __int64 __thiscall v8::BigInt::Int64Value(bool *)const -?Int64Value@BigInt@v8@@QBE_JPA_N@Z ; has WINAPI (@4) -; public: class v8::<__int64> __thiscall v8::Value::IntegerValue(class v8::)const -?IntegerValue@Value@v8@@QBE?AV?$Maybe@_J@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: int __thiscall v8::Object::InternalFieldCount(void)const -?InternalFieldCount@Object@v8@@QBEHXZ -; public: static int __cdecl v8::Object::InternalFieldCount(class v8:: const &) -?InternalFieldCount@Object@v8@@SAHABV?$BasicTracedReference@VObject@v8@@@2@@Z -; public: static int __cdecl v8::Object::InternalFieldCount(class v8:: const &) -?InternalFieldCount@Object@v8@@SAHABV?$PersistentBase@VObject@v8@@@2@@Z -; public: int __thiscall v8::ObjectTemplate::InternalFieldCount(void)const -?InternalFieldCount@ObjectTemplate@v8@@QBEHXZ -; void __cdecl v8::api_internal::InternalFieldOutOfBounds(int) -?InternalFieldOutOfBounds@api_internal@v8@@YAXH@Z -; public: bool __thiscall v8::Object::IsApiWrapper(void)const -?IsApiWrapper@Object@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsArgumentsObject(void)const -?IsArgumentsObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsArray(void)const -?IsArray@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsArrayBuffer(void)const -?IsArrayBuffer@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsArrayBufferView(void)const -?IsArrayBufferView@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsAsyncFunction(void)const -?IsAsyncFunction@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsBigInt64Array(void)const -?IsBigInt64Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsBigInt(void)const -?IsBigInt@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsBigIntObject(void)const -?IsBigIntObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsBigUint64Array(void)const -?IsBigUint64Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsBoolean(void)const -?IsBoolean@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsBooleanObject(void)const -?IsBooleanObject@Value@v8@@QBE_NXZ -; public: virtual bool __thiscall v8::String::ExternalStringResourceBase::IsCacheable(void)const -?IsCacheable@ExternalStringResourceBase@String@v8@@UBE_NXZ -; public: bool __thiscall v8::Object::IsCallable(void)const -?IsCallable@Object@v8@@QBE_NXZ -; public: static bool __cdecl v8::internal::Version::IsCandidate(void) -?IsCandidate@Version@internal@v8@@SA_NXZ -; public: bool __thiscall v8::Context::IsCodeGenerationFromStringsAllowed(void)const -?IsCodeGenerationFromStringsAllowed@Context@v8@@QBE_NXZ -; public: bool __thiscall v8::Object::IsCodeLike(class v8::Isolate *)const -?IsCodeLike@Object@v8@@QBE_NPAVIsolate@2@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::ObjectTemplate::IsCodeLike(void)const -?IsCodeLike@ObjectTemplate@v8@@QBE_NXZ -; public: bool __thiscall v8::Object::IsConstructor(void)const -?IsConstructor@Object@v8@@QBE_NXZ -; public: bool __thiscall v8::StackFrame::IsConstructor(void)const -?IsConstructor@StackFrame@v8@@QBE_NXZ -; public: bool __thiscall v8::Data::IsContext(void)const -?IsContext@Data@v8@@QBE_NXZ -; bool __cdecl electron::fuses::IsCookieEncryptionEnabled(void) -?IsCookieEncryptionEnabled@fuses@electron@@YA_NXZ -; private: bool __thiscall cppgc::internal::PersistentRegion::IsCreationThread(void) -?IsCreationThread@PersistentRegion@internal@cppgc@@AAE_NXZ -; public: bool __thiscall v8::Isolate::IsCurrent(void)const -?IsCurrent@Isolate@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsDataView(void)const -?IsDataView@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsDate(void)const -?IsDate@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Isolate::IsDead(void) -?IsDead@Isolate@v8@@QAE_NXZ -; public: bool __thiscall v8::ArrayBuffer::IsDetachable(void)const -?IsDetachable@ArrayBuffer@v8@@QBE_NXZ -; bool __cdecl electron::fuses::IsEmbeddedAsarIntegrityValidationEnabled(void) -?IsEmbeddedAsarIntegrityValidationEnabled@fuses@electron@@YA_NXZ -; public: static bool __cdecl cppgc::internal::WriteBarrier::IsEnabled(void) -?IsEnabled@WriteBarrier@internal@cppgc@@SA_NXZ -; public: bool __thiscall v8::StackFrame::IsEval(void)const -?IsEval@StackFrame@v8@@QBE_NXZ -; public: bool __thiscall v8::Isolate::IsExecutionTerminating(void) -?IsExecutionTerminating@Isolate@v8@@QAE_NXZ -; public: bool __thiscall v8::String::IsExternal(void)const -?IsExternal@String@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsExternal(void)const -?IsExternal@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::String::IsExternalOneByte(void)const -?IsExternalOneByte@String@v8@@QBE_NXZ -; public: bool __thiscall v8::String::IsExternalTwoByte(void)const -?IsExternalTwoByte@String@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsFalse(void)const -?IsFalse@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Data::IsFixedArray(void)const -?IsFixedArray@Data@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsFloat32Array(void)const -?IsFloat32Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsFloat64Array(void)const -?IsFloat64Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsFunction(void)const -?IsFunction@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Data::IsFunctionTemplate(void)const -?IsFunctionTemplate@Data@v8@@QBE_NXZ -; public: static bool __cdecl cppgc::subtle::DisallowGarbageCollectionScope::IsGarbageCollectionAllowed(class cppgc::HeapHandle &) -?IsGarbageCollectionAllowed@DisallowGarbageCollectionScope@subtle@cppgc@@SA_NAAVHeapHandle@3@@Z -; public: bool __thiscall v8::Value::IsGeneratorFunction(void)const -?IsGeneratorFunction@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsGeneratorObject(void)const -?IsGeneratorObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Module::IsGraphAsync(void)const -?IsGraphAsync@Module@v8@@QBE_NXZ -; public: bool __thiscall v8::Isolate::IsHeapLimitIncreasedForDebugging(void) -?IsHeapLimitIncreasedForDebugging@Isolate@v8@@QAE_NXZ -; private: bool __thiscall cppgc::LivenessBroker::IsHeapObjectAliveImpl(void const *)const -?IsHeapObjectAliveImpl@LivenessBroker@cppgc@@ABE_NPBX@Z ; has WINAPI (@4) -; bool __cdecl cppgc::testing::IsHeapObjectOld(void *) -?IsHeapObjectOld@testing@cppgc@@YA_NPAX@Z -; public: bool __thiscall v8::ObjectTemplate::IsImmutableProto(void)const -?IsImmutableProto@ObjectTemplate@v8@@QBE_NXZ -; public: static bool __cdecl cppgc::subtle::HeapState::IsInAtomicPause(class cppgc::HeapHandle const &) -?IsInAtomicPause@HeapState@subtle@cppgc@@SA_NABVHeapHandle@3@@Z -; public: bool __thiscall v8::Isolate::IsInUse(void) -?IsInUse@Isolate@v8@@QAE_NXZ -; private: bool __thiscall v8::internal::WebSnapshotDeserializer::IsInitialFunctionPrototype(class v8::internal::Object) -?IsInitialFunctionPrototype@WebSnapshotDeserializer@internal@v8@@AAE_NVObject@23@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::Value::IsInt16Array(void)const -?IsInt16Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsInt32(void)const -?IsInt32@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsInt32Array(void)const -?IsInt32Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsInt8Array(void)const -?IsInt8Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8_inspector::V8StackTraceId::IsInvalid(void)const -?IsInvalid@V8StackTraceId@v8_inspector@@QBE_NXZ -; public: bool __thiscall v8::FunctionTemplate::IsLeafTemplateForApiObject(class v8::)const -?IsLeafTemplateForApiObject@FunctionTemplate@v8@@QBE_NV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; bool __cdecl electron::fuses::IsLoadBrowserProcessSpecificV8SnapshotEnabled(void) -?IsLoadBrowserProcessSpecificV8SnapshotEnabled@fuses@electron@@YA_NXZ -; public: static bool __cdecl v8::Locker::IsLocked(class v8::Isolate *) -?IsLocked@Locker@v8@@SA_NPAVIsolate@2@@Z -; public: bool __thiscall v8::Value::IsMap(void)const -?IsMap@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsMapIterator(void)const -?IsMapIterator@Value@v8@@QBE_NXZ -; public: static bool __cdecl cppgc::subtle::HeapState::IsMarking(class cppgc::HeapHandle const &) -?IsMarking@HeapState@subtle@cppgc@@SA_NABVHeapHandle@3@@Z -; public: bool __thiscall v8::Data::IsModule(void)const -?IsModule@Data@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsModuleNamespaceObject(void)const -?IsModuleNamespaceObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsName(void)const -?IsName@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsNativeError(void)const -?IsNativeError@Value@v8@@QBE_NXZ -; bool __cdecl electron::fuses::IsNodeCliInspectEnabled(void) -?IsNodeCliInspectEnabled@fuses@electron@@YA_NXZ -; bool __cdecl electron::fuses::IsNodeOptionsEnabled(void) -?IsNodeOptionsEnabled@fuses@electron@@YA_NXZ -; public: bool __thiscall v8::Value::IsNull(void)const -?IsNull@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsNullOrUndefined(void)const -?IsNullOrUndefined@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsNumber(void)const -?IsNumber@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsNumberObject(void)const -?IsNumberObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsObject(void)const -?IsObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Data::IsObjectTemplate(void)const -?IsObjectTemplate@Data@v8@@QBE_NXZ -; public: bool __thiscall v8::String::IsOneByte(void)const -?IsOneByte@String@v8@@QBE_NXZ -; bool __cdecl electron::fuses::IsOnlyLoadAppFromAsarEnabled(void) -?IsOnlyLoadAppFromAsarEnabled@fuses@electron@@YA_NXZ -; public: bool __thiscall v8::Message::IsOpaque(void)const -?IsOpaque@Message@v8@@QBE_NXZ -; public: bool __thiscall v8::Data::IsPrivate(void)const -?IsPrivate@Data@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsPromise(void)const -?IsPromise@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsProxy(void)const -?IsProxy@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsRegExp(void)const -?IsRegExp@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Proxy::IsRevoked(void)const -?IsRevoked@Proxy@v8@@QBE_NXZ -; public: virtual bool __thiscall v8::EmbedderHeapTracer::IsRootForNonTracingGC(class v8:: const &) -?IsRootForNonTracingGC@EmbedderHeapTracer@v8@@UAE_NABV?$TracedReference@VValue@v8@@@2@@Z ; has WINAPI (@4) -; bool __cdecl electron::fuses::IsRunAsNodeEnabled(void) -?IsRunAsNodeEnabled@fuses@electron@@YA_NXZ -; public: static bool __cdecl v8::MicrotasksScope::IsRunningMicrotasks(class v8::Isolate *) -?IsRunningMicrotasks@MicrotasksScope@v8@@SA_NPAVIsolate@2@@Z -; public: bool __thiscall v8::CpuProfileNode::IsScriptSharedCrossOrigin(void)const -?IsScriptSharedCrossOrigin@CpuProfileNode@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsSet(void)const -?IsSet@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsSetIterator(void)const -?IsSetIterator@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::BackingStore::IsShared(void)const -?IsShared@BackingStore@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsSharedArrayBuffer(void)const -?IsSharedArrayBuffer@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Message::IsSharedCrossOrigin(void)const -?IsSharedCrossOrigin@Message@v8@@QBE_NXZ -; public: bool __thiscall v8::Module::IsSourceTextModule(void)const -?IsSourceTextModule@Module@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsString(void)const -?IsString@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsStringObject(void)const -?IsStringObject@Value@v8@@QBE_NXZ -; public: static bool __cdecl cppgc::subtle::HeapState::IsSweeping(class cppgc::HeapHandle const &) -?IsSweeping@HeapState@subtle@cppgc@@SA_NABVHeapHandle@3@@Z -; public: static bool __cdecl cppgc::subtle::HeapState::IsSweepingOnOwningThread(class cppgc::HeapHandle const &) -?IsSweepingOnOwningThread@HeapState@subtle@cppgc@@SA_NABVHeapHandle@3@@Z -; public: bool __thiscall v8::Value::IsSymbol(void)const -?IsSymbol@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsSymbolObject(void)const -?IsSymbolObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Module::IsSyntheticModule(void)const -?IsSyntheticModule@Module@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsTrue(void)const -?IsTrue@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsTypedArray(void)const -?IsTypedArray@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsUint16Array(void)const -?IsUint16Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsUint32(void)const -?IsUint32@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsUint32Array(void)const -?IsUint32Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsUint8Array(void)const -?IsUint8Array@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsUint8ClampedArray(void)const -?IsUint8ClampedArray@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsUndefined(void)const -?IsUndefined@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Object::IsUndetectable(void)const -?IsUndetectable@Object@v8@@QBE_NXZ -; public: bool __thiscall v8::StackFrame::IsUserJavaScript(void)const -?IsUserJavaScript@StackFrame@v8@@QBE_NXZ -; public: bool __thiscall v8::StartupData::IsValid(void)const -?IsValid@StartupData@v8@@QBE_NXZ -; public: bool __thiscall v8::Data::IsValue(void)const -?IsValue@Data@v8@@QBE_NXZ -; public: bool __thiscall v8::TryCatch::IsVerbose(void)const -?IsVerbose@TryCatch@v8@@QBE_NXZ -; public: bool __thiscall v8::StackFrame::IsWasm(void)const -?IsWasm@StackFrame@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsWasmMemoryObject(void)const -?IsWasmMemoryObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsWasmModuleObject(void)const -?IsWasmModuleObject@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsWeakMap(void)const -?IsWeakMap@Value@v8@@QBE_NXZ -; public: bool __thiscall v8::Value::IsWeakSet(void)const -?IsWeakSet@Value@v8@@QBE_NXZ -; class v8::internal::Isolate *__cdecl v8::internal::IsolateFromNeverReadOnlySpaceObject(unsigned int) -?IsolateFromNeverReadOnlySpaceObject@internal@v8@@YAPAVIsolate@12@I@Z -; public: void __thiscall v8::Isolate::IsolateInBackgroundNotification(void) -?IsolateInBackgroundNotification@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::IsolateInForegroundNotification(void) -?IsolateInForegroundNotification@Isolate@v8@@QAEXXZ -; public: void __thiscall cppgc::internal::CrossThreadPersistentRegion::Iterate(class cppgc::internal::RootVisitor &) -?Iterate@CrossThreadPersistentRegion@internal@cppgc@@QAEXAAVRootVisitor@23@@Z ; has WINAPI (@4) -; public: void __thiscall cppgc::internal::PersistentRegionBase::Iterate(class cppgc::internal::RootVisitor &) -?Iterate@PersistentRegionBase@internal@cppgc@@QAEXAAVRootVisitor@23@@Z ; has WINAPI (@4) -; public: void __thiscall v8::EmbedderHeapTracer::IterateTracedGlobalHandles(class v8::EmbedderHeapTracer::TracedGlobalHandleVisitor *) -?IterateTracedGlobalHandles@EmbedderHeapTracer@v8@@QAEXPAVTracedGlobalHandleVisitor@12@@Z ; has WINAPI (@4) -; private: unsigned int __thiscall v8::Context::BackupIncumbentScope::JSStackComparableAddressPrivate(void)const -?JSStackComparableAddressPrivate@BackupIncumbentScope@Context@v8@@ABEIXZ -; private: unsigned int __thiscall v8::TryCatch::JSStackComparableAddressPrivate(void) -?JSStackComparableAddressPrivate@TryCatch@v8@@AAEIXZ -; public: static void __cdecl cppgc::subtle::DisallowGarbageCollectionScope::Leave(class cppgc::HeapHandle &) -?Leave@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAAVHeapHandle@3@@Z -; public: static void __cdecl cppgc::subtle::NoGarbageCollectionScope::Leave(class cppgc::HeapHandle &) -?Leave@NoGarbageCollectionScope@subtle@cppgc@@SAXAAVHeapHandle@3@@Z -; public: unsigned int __thiscall v8::Array::Length(void)const -?Length@Array@v8@@QBEIXZ -; unsigned int __cdecl node::Buffer::Length(class v8::) -?Length@Buffer@node@@YAIV?$Local@VObject@v8@@@v8@@@Z -; unsigned int __cdecl node::Buffer::Length(class v8::) -?Length@Buffer@node@@YAIV?$Local@VValue@v8@@@v8@@@Z -; public: int __thiscall v8::FixedArray::Length(void)const -?Length@FixedArray@v8@@QBEHXZ -; public: int __thiscall v8::PrimitiveArray::Length(void)const -?Length@PrimitiveArray@v8@@QBEHXZ -; public: int __thiscall v8::String::Length(void)const -?Length@String@v8@@QBEHXZ -; public: unsigned int __thiscall v8::TypedArray::Length(void) -?Length@TypedArray@v8@@QAEIXZ -; public: unsigned short __thiscall cppgc::internal::GCInfoTable::LimitForTesting(void)const -?LimitForTesting@GCInfoTable@internal@cppgc@@QBEGXZ -; public: unsigned int __thiscall cppgc::SourceLocation::Line(void)const -?Line@SourceLocation@cppgc@@QBEIXZ -; public: int __thiscall v8::ScriptOrigin::LineOffset(void)const -?LineOffset@ScriptOrigin@v8@@QBEHXZ -; class v8:: __cdecl node::LoadEnvironment(class node::Environment *,char const *) -?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PAVEnvironment@1@PBD@Z -; class v8:: __cdecl node::LoadEnvironment(class node::Environment *,class std::Cr:: __cdecl(struct node::StartExecutionCallbackInfo const &)>) -?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PAVEnvironment@1@V?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@ABUStartExecutionCallbackInfo@node@@@Z@Cr@std@@@Z -; public: void __thiscall v8::Isolate::LocaleConfigurationChangeNotification(void) -?LocaleConfigurationChangeNotification@Isolate@v8@@QAEXXZ -; protected: virtual void __thiscall v8::String::ExternalStringResourceBase::Lock(void)const -?Lock@ExternalStringResourceBase@String@v8@@MBEXXZ -; public: void __thiscall v8::Isolate::LowMemoryNotification(void) -?LowMemoryNotification@Isolate@v8@@QAEXXZ -; public: class v8:: __thiscall node::AsyncResource::MakeCallback(char const *,int,class v8:: *) -?MakeCallback@AsyncResource@node@@QAE?AV?$MaybeLocal@VValue@v8@@@v8@@PBDHPAV?$Local@VValue@v8@@@4@@Z ; has WINAPI (@16) -; public: class v8:: __thiscall node::AsyncResource::MakeCallback(class v8::,int,class v8:: *) -?MakeCallback@AsyncResource@node@@QAE?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VFunction@v8@@@4@HPAV?$Local@VValue@v8@@@4@@Z ; has WINAPI (@16) -; public: class v8:: __thiscall node::AsyncResource::MakeCallback(class v8::,int,class v8:: *) -?MakeCallback@AsyncResource@node@@QAE?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VString@v8@@@4@HPAV?$Local@VValue@v8@@@4@@Z ; has WINAPI (@16) -; class v8:: __cdecl node::MakeCallback(class v8::Isolate *,class v8::,char const *,int,class v8:: *) -?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@V?$Local@VObject@v8@@@3@PBDHPAV23@@Z -; class v8:: __cdecl node::MakeCallback(class v8::Isolate *,class v8::,class v8::,int,class v8:: *) -?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPAV23@@Z -; class v8:: __cdecl node::MakeCallback(class v8::Isolate *,class v8::,class v8::,int,class v8:: *) -?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPAV23@@Z -; class v8:: __cdecl node::MakeCallback(class v8::Isolate *,class v8::,char const *,int,class v8:: *,struct node::async_context) -?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PAVIsolate@3@V?$Local@VObject@v8@@@3@PBDHPAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z -; class v8:: __cdecl node::MakeCallback(class v8::Isolate *,class v8::,class v8::,int,class v8:: *,struct node::async_context) -?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z -; class v8:: __cdecl node::MakeCallback(class v8::Isolate *,class v8::,class v8::,int,class v8:: *,struct node::async_context) -?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z -; public: bool __thiscall v8::String::MakeExternal(class v8::String::ExternalOneByteStringResource *) -?MakeExternal@String@v8@@QAE_NPAVExternalOneByteStringResource@12@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::String::MakeExternal(class v8::String::ExternalStringResource *) -?MakeExternal@String@v8@@QAE_NPAVExternalStringResource@12@@Z ; has WINAPI (@4) -; void __cdecl v8::api_internal::MakeWeak(unsigned int *,void *,void(__cdecl *)(class v8:: const &),enum v8::WeakCallbackType) -?MakeWeak@api_internal@v8@@YAXPAIPAXP6AXABV?$WeakCallbackInfo@X@2@@ZW4WeakCallbackType@2@@Z -; void __cdecl v8::api_internal::MakeWeak(unsigned int **) -?MakeWeak@api_internal@v8@@YAXPAPAI@Z -; public: void __thiscall v8::Promise::MarkAsHandled(void) -?MarkAsHandled@Promise@v8@@QAEXXZ -; public: void __thiscall v8::Promise::MarkAsSilent(void) -?MarkAsSilent@Promise@v8@@QAEXXZ -; public: void __thiscall v8::ObjectTemplate::MarkAsUndetectable(void) -?MarkAsUndetectable@ObjectTemplate@v8@@QAEXXZ -; protected: static void __cdecl cppgc::internal::MakeGarbageCollectedTraitInternal::MarkObjectAsFullyConstructed(void const *) -?MarkObjectAsFullyConstructed@MakeGarbageCollectedTraitInternal@internal@cppgc@@KAXPBX@Z -; private: unsigned int __thiscall cppgc::internal::GCInfoTable::MaxTableSize(void)const -?MaxTableSize@GCInfoTable@internal@cppgc@@ABEIXZ -; public: bool __thiscall v8::Isolate::MeasureMemory(class std::Cr::>,enum v8::MeasureMemoryExecution) -?MeasureMemory@Isolate@v8@@QAE_NV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@Cr@std@@@Cr@std@@W4MeasureMemoryExecution@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::MemoryPressureNotification(enum v8::MemoryPressureLevel) -?MemoryPressureNotification@Isolate@v8@@QAEXW4MemoryPressureLevel@2@@Z ; has WINAPI (@4) -; private: static enum v8::CTypeInfo::Flags __cdecl v8::::MergeFlags(void) -?MergeFlags@?$CTypeInfoBuilder@H$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -; private: static enum v8::CTypeInfo::Flags __cdecl v8::::MergeFlags(void) -?MergeFlags@?$CTypeInfoBuilder@I$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -; private: static enum v8::CTypeInfo::Flags __cdecl v8::::MergeFlags(void) -?MergeFlags@?$CTypeInfoBuilder@M$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -; private: static enum v8::CTypeInfo::Flags __cdecl v8::::MergeFlags(void) -?MergeFlags@?$CTypeInfoBuilder@N$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -; public: void __thiscall v8::ScriptCompiler::ConsumeCodeCacheTask::MergeWithExistingScript(void) -?MergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QAEXXZ -; public: class v8:: __thiscall v8::TryCatch::Message(void)const -?Message@TryCatch@v8@@QBE?AV?$Local@VMessage@v8@@@2@XZ ; has WINAPI (@4) -; void __cdecl v8::api_internal::MoveGlobalReference(unsigned int **,unsigned int **) -?MoveGlobalReference@api_internal@v8@@YAXPAPAI0@Z -; void __cdecl v8::internal::MoveTracedReference(unsigned int **,unsigned int **) -?MoveTracedReference@internal@v8@@YAXPAPAI0@Z -; public: class v8:: __thiscall v8::Private::Name(void)const -?Name@Private@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::Array::New(class v8::Isolate *,int) -?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PAVIsolate@2@H@Z -; public: static class v8:: __cdecl v8::Array::New(class v8::Isolate *,class v8:: *,unsigned int) -?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PAVIsolate@2@PAV?$Local@VValue@v8@@@2@I@Z -; public: static class v8:: __cdecl v8::ArrayBuffer::New(class v8::Isolate *,unsigned int) -?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PAVIsolate@2@I@Z -; public: static class v8:: __cdecl v8::ArrayBuffer::New(class v8::Isolate *,class std::Cr::) -?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@Cr@std@@@Z -; public: static class v8:: __cdecl v8::BigInt64Array::New(class v8::,unsigned int,unsigned int) -?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::BigInt64Array::New(class v8::,unsigned int,unsigned int) -?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::BigInt::New(class v8::Isolate *,__int64) -?New@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PAVIsolate@2@_J@Z -; public: static class v8:: __cdecl v8::BigIntObject::New(class v8::Isolate *,__int64) -?New@BigIntObject@v8@@SA?AV?$Local@VValue@v8@@@2@PAVIsolate@2@_J@Z -; public: static class v8:: __cdecl v8::BigUint64Array::New(class v8::,unsigned int,unsigned int) -?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::BigUint64Array::New(class v8::,unsigned int,unsigned int) -?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Boolean::New(class v8::Isolate *,bool) -?New@Boolean@v8@@SA?AV?$Local@VBoolean@v8@@@2@PAVIsolate@2@_N@Z -; public: static class v8:: __cdecl v8::BooleanObject::New(class v8::Isolate *,bool) -?New@BooleanObject@v8@@SA?AV?$Local@VValue@v8@@@2@PAVIsolate@2@_N@Z -; class v8:: __cdecl node::Buffer::New(class v8::Isolate *,unsigned int) -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PAVIsolate@4@I@Z -; class v8:: __cdecl node::Buffer::New(class v8::Isolate *,char *,unsigned int) -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PAVIsolate@4@PADI@Z -; class v8:: __cdecl node::Buffer::New(class v8::Isolate *,char *,unsigned int,void(__cdecl *)(char *,void *),void *) -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PAVIsolate@4@PADIP6AX1PAX@Z2@Z -; class v8:: __cdecl node::Buffer::New(class v8::Isolate *,class v8::,enum node::encoding) -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PAVIsolate@4@V?$Local@VString@v8@@@4@W4encoding@2@@Z -; class v8:: __cdecl node::Buffer::New(class v8::Isolate *,class v8::,unsigned int,unsigned int) -?New@Buffer@node@@YA?AV?$MaybeLocal@VUint8Array@v8@@@v8@@PAVIsolate@4@V?$Local@VArrayBuffer@v8@@@4@II@Z -; public: static class v8:: __cdecl v8::Context::New(class v8::Isolate *,class v8::ExtensionConfiguration *,class v8::,class v8::,struct v8::DeserializeInternalFieldsCallback,class v8::MicrotaskQueue *) -?New@Context@v8@@SA?AV?$Local@VContext@v8@@@2@PAVIsolate@2@PAVExtensionConfiguration@2@V?$MaybeLocal@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@UDeserializeInternalFieldsCallback@2@PAVMicrotaskQueue@2@@Z -; public: static class v8::CpuProfiler *__cdecl v8::CpuProfiler::New(class v8::Isolate *,enum v8::CpuProfilingNamingMode,enum v8::CpuProfilingLoggingMode) -?New@CpuProfiler@v8@@SAPAV12@PAVIsolate@2@W4CpuProfilingNamingMode@2@W4CpuProfilingLoggingMode@2@@Z -; public: static class v8:: __cdecl v8::DataView::New(class v8::,unsigned int,unsigned int) -?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::DataView::New(class v8::,unsigned int,unsigned int) -?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Date::New(class v8::,double) -?New@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@N@Z -; public: static class v8:: __cdecl v8::External::New(class v8::Isolate *,void *) -?New@External@v8@@SA?AV?$Local@VExternal@v8@@@2@PAVIsolate@2@PAX@Z -; public: static class v8:: __cdecl v8::Float32Array::New(class v8::,unsigned int,unsigned int) -?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Float32Array::New(class v8::,unsigned int,unsigned int) -?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Float64Array::New(class v8::,unsigned int,unsigned int) -?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Float64Array::New(class v8::,unsigned int,unsigned int) -?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Function::New(class v8::,void(__cdecl *)(class v8:: const &),class v8::,int,enum v8::ConstructorBehavior,enum v8::SideEffectType) -?New@Function@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@P6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@@Z -; public: static class v8:: __cdecl v8::FunctionTemplate::New(class v8::Isolate *,void(__cdecl *)(class v8:: const &),class v8::,class v8::,int,enum v8::ConstructorBehavior,enum v8::SideEffectType,class v8::CFunction const *,unsigned short,unsigned short,unsigned short) -?New@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PAVIsolate@2@P6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@PBVCFunction@2@GGG@Z -; public: static class v8:: __cdecl v8::Int16Array::New(class v8::,unsigned int,unsigned int) -?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Int16Array::New(class v8::,unsigned int,unsigned int) -?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Int32Array::New(class v8::,unsigned int,unsigned int) -?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Int32Array::New(class v8::,unsigned int,unsigned int) -?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Int8Array::New(class v8::,unsigned int,unsigned int) -?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Int8Array::New(class v8::,unsigned int,unsigned int) -?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Integer::New(class v8::Isolate *,int) -?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PAVIsolate@2@H@Z -; public: static class v8::Isolate *__cdecl v8::Isolate::New(struct v8::Isolate::CreateParams const &) -?New@Isolate@v8@@SAPAV12@ABUCreateParams@12@@Z -; public: static class v8:: __cdecl v8::Map::New(class v8::Isolate *) -?New@Map@v8@@SA?AV?$Local@VMap@v8@@@2@PAVIsolate@2@@Z -; public: static class std::Cr::> __cdecl v8::MicrotaskQueue::New(class v8::Isolate *,enum v8::MicrotasksPolicy) -?New@MicrotaskQueue@v8@@SA?AV?$unique_ptr@VMicrotaskQueue@v8@@U?$default_delete@VMicrotaskQueue@v8@@@Cr@std@@@Cr@std@@PAVIsolate@2@W4MicrotasksPolicy@2@@Z -; public: static class v8:: __cdecl v8::Number::New(class v8::Isolate *,double) -?New@Number@v8@@SA?AV?$Local@VNumber@v8@@@2@PAVIsolate@2@N@Z -; public: static class v8:: __cdecl v8::NumberObject::New(class v8::Isolate *,double) -?New@NumberObject@v8@@SA?AV?$Local@VValue@v8@@@2@PAVIsolate@2@N@Z -; public: static class v8:: __cdecl v8::Object::New(class v8::Isolate *) -?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PAVIsolate@2@@Z -; public: static class v8:: __cdecl v8::Object::New(class v8::Isolate *,class v8::,class v8:: *,class v8:: *,unsigned int) -?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PAVIsolate@2@V?$Local@VValue@v8@@@2@PAV?$Local@VName@v8@@@2@PAV52@I@Z -; private: static class v8:: __cdecl v8::ObjectTemplate::New(class v8::internal::Isolate *,class v8::) -?New@ObjectTemplate@v8@@CA?AV?$Local@VObjectTemplate@v8@@@2@PAVIsolate@internal@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -; public: static class v8:: __cdecl v8::ObjectTemplate::New(class v8::Isolate *,class v8::) -?New@ObjectTemplate@v8@@SA?AV?$Local@VObjectTemplate@v8@@@2@PAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -; public: static class v8:: __cdecl v8::PrimitiveArray::New(class v8::Isolate *,int) -?New@PrimitiveArray@v8@@SA?AV?$Local@VPrimitiveArray@v8@@@2@PAVIsolate@2@H@Z -; public: static class v8:: __cdecl v8::Private::New(class v8::Isolate *,class v8::) -?New@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Proxy::New(class v8::,class v8::,class v8::) -?New@Proxy@v8@@SA?AV?$MaybeLocal@VProxy@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@1@Z -; public: static class v8:: __cdecl v8::RegExp::New(class v8::,class v8::,enum v8::RegExp::Flags) -?New@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@@Z -; public: static class v8:: __cdecl v8::Promise::Resolver::New(class v8::) -?New@Resolver@Promise@v8@@SA?AV?$MaybeLocal@VResolver@Promise@v8@@@3@V?$Local@VContext@v8@@@3@@Z -; public: static class v8:: __cdecl v8::Set::New(class v8::Isolate *) -?New@Set@v8@@SA?AV?$Local@VSet@v8@@@2@PAVIsolate@2@@Z -; public: static class v8:: __cdecl v8::SharedArrayBuffer::New(class v8::Isolate *,unsigned int) -?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PAVIsolate@2@I@Z -; public: static class v8:: __cdecl v8::SharedArrayBuffer::New(class v8::Isolate *,class std::Cr::) -?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@Cr@std@@@Z -; public: static class v8:: __cdecl v8::Signature::New(class v8::Isolate *,class v8::) -?New@Signature@v8@@SA?AV?$Local@VSignature@v8@@@2@PAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -; public: static class v8:: __cdecl v8::StringObject::New(class v8::Isolate *,class v8::) -?New@StringObject@v8@@SA?AV?$Local@VValue@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Symbol::New(class v8::Isolate *,class v8::) -?New@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PAVIsolate@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::SymbolObject::New(class v8::Isolate *,class v8::) -?New@SymbolObject@v8@@SA?AV?$Local@VValue@v8@@@2@PAVIsolate@2@V?$Local@VSymbol@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Uint16Array::New(class v8::,unsigned int,unsigned int) -?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint16Array::New(class v8::,unsigned int,unsigned int) -?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint32Array::New(class v8::,unsigned int,unsigned int) -?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint32Array::New(class v8::,unsigned int,unsigned int) -?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint8Array::New(class v8::,unsigned int,unsigned int) -?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint8Array::New(class v8::,unsigned int,unsigned int) -?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint8ClampedArray::New(class v8::,unsigned int,unsigned int) -?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@II@Z -; public: static class v8:: __cdecl v8::Uint8ClampedArray::New(class v8::,unsigned int,unsigned int) -?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@II@Z -; public: static class std::Cr::> __cdecl v8::ArrayBuffer::NewBackingStore(class v8::Isolate *,unsigned int) -?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PAVIsolate@2@I@Z -; public: static class std::Cr::> __cdecl v8::ArrayBuffer::NewBackingStore(void *,unsigned int,void(__cdecl *)(void *,unsigned int,void *),void *) -?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PAXIP6AX0I0@Z0@Z -; public: static class std::Cr::> __cdecl v8::SharedArrayBuffer::NewBackingStore(class v8::Isolate *,unsigned int) -?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PAVIsolate@2@I@Z -; public: static class std::Cr::> __cdecl v8::SharedArrayBuffer::NewBackingStore(void *,unsigned int,void(__cdecl *)(void *,unsigned int,void *),void *) -?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PAXIP6AX0I0@Z0@Z -; class v8:: __cdecl node::NewContext(class v8::Isolate *,class v8::) -?NewContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PAVIsolate@3@V?$Local@VObjectTemplate@v8@@@3@@Z -; public: static class v8::ArrayBuffer::Allocator *__cdecl v8::ArrayBuffer::Allocator::NewDefaultAllocator(void) -?NewDefaultAllocator@Allocator@ArrayBuffer@v8@@SAPAV123@XZ -; public: static class v8:: __cdecl v8::String::NewExternalOneByte(class v8::Isolate *,class v8::String::ExternalOneByteStringResource *) -?NewExternalOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PAVIsolate@2@PAVExternalOneByteStringResource@12@@Z -; public: static class v8:: __cdecl v8::String::NewExternalTwoByte(class v8::Isolate *,class v8::String::ExternalStringResource *) -?NewExternalTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PAVIsolate@2@PAVExternalStringResource@12@@Z -; public: static class v8:: __cdecl v8::String::NewFromOneByte(class v8::Isolate *,unsigned char const *,enum v8::NewStringType,int) -?NewFromOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PAVIsolate@2@PBEW4NewStringType@2@H@Z -; public: static class v8:: __cdecl v8::String::NewFromTwoByte(class v8::Isolate *,unsigned short const *,enum v8::NewStringType,int) -?NewFromTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PAVIsolate@2@PBGW4NewStringType@2@H@Z -; public: static class v8:: __cdecl v8::BigInt::NewFromUnsigned(class v8::Isolate *,unsigned __int64) -?NewFromUnsigned@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PAVIsolate@2@_K@Z -; public: static class v8:: __cdecl v8::Integer::NewFromUnsigned(class v8::Isolate *,unsigned int) -?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PAVIsolate@2@I@Z -; public: static class v8:: __cdecl v8::String::NewFromUtf8(class v8::Isolate *,char const *,enum v8::NewStringType,int) -?NewFromUtf8@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PAVIsolate@2@PBDW4NewStringType@2@H@Z -; private: static class v8:: __cdecl v8::String::NewFromUtf8Literal(class v8::Isolate *,char const *,enum v8::NewStringType,int) -?NewFromUtf8Literal@String@v8@@CA?AV?$Local@VString@v8@@@2@PAVIsolate@2@PBDW4NewStringType@2@H@Z -; public: static class v8:: __cdecl v8::BigInt::NewFromWords(class v8::,int,int,unsigned __int64 const *) -?NewFromWords@BigInt@v8@@SA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@HHPB_K@Z -; public: class v8:: __thiscall v8::Function::NewInstance(class v8::)const -?NewInstance@Function@v8@@QBE?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Function::NewInstance(class v8::,int,class v8:: *const)const -?NewInstance@Function@v8@@QBE?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQAV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::ObjectTemplate::NewInstance(class v8::) -?NewInstance@ObjectTemplate@v8@@QAE?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Function::NewInstanceWithSideEffectType(class v8::,int,class v8:: *const,enum v8::SideEffectType)const -?NewInstanceWithSideEffectType@Function@v8@@QBE?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQAV?$Local@VValue@v8@@@2@W4SideEffectType@2@@Z ; has WINAPI (@20) -; class v8::Isolate *__cdecl node::NewIsolate(class node::ArrayBufferAllocator *,struct uv_loop_s *,class node::MultiIsolatePlatform *) -?NewIsolate@node@@YAPAVIsolate@v8@@PAVArrayBufferAllocator@1@PAUuv_loop_s@@PAVMultiIsolatePlatform@1@@Z -; class v8::Isolate *__cdecl node::NewIsolate(class std::Cr::,struct uv_loop_s *,class node::MultiIsolatePlatform *) -?NewIsolate@node@@YAPAVIsolate@v8@@V?$shared_ptr@VArrayBufferAllocator@node@@@Cr@std@@PAUuv_loop_s@@PAVMultiIsolatePlatform@1@@Z -; public: static class v8:: __cdecl v8::Context::NewRemoteContext(class v8::Isolate *,class v8::,class v8::) -?NewRemoteContext@Context@v8@@SA?AV?$MaybeLocal@VObject@v8@@@2@PAVIsolate@2@V?$Local@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@@Z -; public: class v8:: __thiscall v8::FunctionTemplate::NewRemoteInstance(void) -?NewRemoteInstance@FunctionTemplate@v8@@QAE?AV?$MaybeLocal@VObject@v8@@@2@XZ ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::RegExp::NewWithBacktrackLimit(class v8::,class v8::,enum v8::RegExp::Flags,unsigned int) -?NewWithBacktrackLimit@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@I@Z -; public: static class v8:: __cdecl v8::FunctionTemplate::NewWithCFunctionOverloads(class v8::Isolate *,void(__cdecl *)(class v8:: const &),class v8::,class v8::,int,enum v8::ConstructorBehavior,enum v8::SideEffectType,class v8:: const &) -?NewWithCFunctionOverloads@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PAVIsolate@2@P6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@ABV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z -; public: static class v8:: __cdecl v8::FunctionTemplate::NewWithCache(class v8::Isolate *,void(__cdecl *)(class v8:: const &),class v8::,class v8::,class v8::,int,enum v8::SideEffectType) -?NewWithCache@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PAVIsolate@2@P6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4SideEffectType@2@@Z -; public: unsigned int __thiscall cppgc::internal::CrossThreadPersistentRegion::NodesInUse(void)const -?NodesInUse@CrossThreadPersistentRegion@internal@cppgc@@QBEIXZ -; public: unsigned int __thiscall cppgc::internal::PersistentRegionBase::NodesInUse(void)const -?NodesInUse@PersistentRegionBase@internal@cppgc@@QBEIXZ -; public: virtual void __thiscall v8::metrics::Recorder::NotifyIsolateDisposal(void) -?NotifyIsolateDisposal@Recorder@metrics@v8@@UAEXXZ -; public: unsigned short __thiscall cppgc::internal::GCInfoTable::NumberOfGCInfos(void)const -?NumberOfGCInfos@GCInfoTable@internal@cppgc@@QBEGXZ -; public: static int __cdecl v8::HandleScope::NumberOfHandles(class v8::Isolate *) -?NumberOfHandles@HandleScope@v8@@SAHPAVIsolate@2@@Z -; public: unsigned int __thiscall v8::Isolate::NumberOfHeapSpaces(void) -?NumberOfHeapSpaces@Isolate@v8@@QAEIXZ -; public: unsigned int __thiscall v8::Isolate::NumberOfTrackedHeapObjectTypes(void) -?NumberOfTrackedHeapObjectTypes@Isolate@v8@@QAEIXZ -; public: class v8:: __thiscall v8::Value::NumberValue(class v8::)const -?NumberValue@Value@v8@@QBE?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::OOM -?OOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: class v8:: __thiscall v8::Object::ObjectProtoToString(class v8::) -?ObjectProtoToString@Object@v8@@QAE?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::WasmStreaming::OnBytesReceived(unsigned char const *,unsigned int) -?OnBytesReceived@WasmStreaming@v8@@QAEXPBEI@Z ; has WINAPI (@8) -; void __cdecl node::OnFatalError(char const *,char const *) -?OnFatalError@node@@YAXPBD0@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: class v8::ScriptOriginOptions __thiscall v8::ScriptOrigin::Options(void)const -?Options@ScriptOrigin@v8@@QBE?AVScriptOriginOptions@2@XZ ; has WINAPI (@4) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::Other -?Other@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: static bool __cdecl v8::Unwinder::PCIsInV8(unsigned int,struct v8::MemoryRange const *,void *) -?PCIsInV8@Unwinder@v8@@SA_NIPBUMemoryRange@2@PAX@Z -; public: static class v8:: __cdecl v8::JSON::Parse(class v8::,class v8::) -?Parse@JSON@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z -; enum node::encoding __cdecl node::ParseEncoding(class v8::Isolate *,class v8::,enum node::encoding) -?ParseEncoding@node@@YA?AW4encoding@1@PAVIsolate@v8@@V?$Local@VValue@v8@@@4@W421@@Z -; public: static void __cdecl v8::MicrotasksScope::PerformCheckpoint(class v8::Isolate *) -?PerformCheckpoint@MicrotasksScope@v8@@SAXPAVIsolate@2@@Z -; public: bool __thiscall cppgc::testing::StandaloneTestingHeap::PerformMarkingStep(enum cppgc::EmbedderStackState) -?PerformMarkingStep@StandaloneTestingHeap@testing@cppgc@@QAE_NW4EmbedderStackState@3@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::PerformMicrotaskCheckpoint(void) -?PerformMicrotaskCheckpoint@Isolate@v8@@QAEXXZ -; public: virtual class std::Cr::> __thiscall cppgc::Platform::PostJob(enum v8::TaskPriority,class std::Cr::>) -?PostJob@Platform@cppgc@@UAE?AV?$unique_ptr@VJobHandle@v8@@U?$default_delete@VJobHandle@v8@@@Cr@std@@@Cr@std@@W4TaskPriority@v8@@V?$unique_ptr@VJobTask@v8@@U?$default_delete@VJobTask@v8@@@Cr@std@@@45@@Z ; has WINAPI (@12) -; class v8:: __cdecl node::PrepareStackTraceCallback(class v8::,class v8::,class v8::) -?PrepareStackTraceCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@V?$Local@VArray@v8@@@3@@Z -; public: class v8:: __thiscall v8::Object::PreviewEntries(bool *) -?PreviewEntries@Object@v8@@QAE?AV?$MaybeLocal@VArray@v8@@@2@PA_N@Z ; has WINAPI (@8) -; public: static bool __cdecl cppgc::subtle::HeapState::PreviousGCWasConservative(class cppgc::HeapHandle const &) -?PreviousGCWasConservative@HeapState@subtle@cppgc@@SA_NABVHeapHandle@3@@Z -; public: static void __cdecl v8::Message::PrintCurrentStackTrace(class v8::Isolate *,class std::Cr::> &) -?PrintCurrentStackTrace@Message@v8@@SAXPAVIsolate@2@AAV?$basic_ostream@DU?$char_traits@D@Cr@std@@@Cr@std@@@Z -; private: void __thiscall v8::internal::WebSnapshotDeserializer::ProcessDeferredReferences(void) -?ProcessDeferredReferences@WebSnapshotDeserializer@internal@v8@@AAEXXZ -; int __cdecl node::ProcessGlobalArgs(class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,class std::Cr::,class std::Cr::>,class std::Cr::,class std::Cr::>>> *,enum node::OptionEnvvarSettings) -?ProcessGlobalArgs@node@@YAHPAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@00W4OptionEnvvarSettings@1@@Z -; void __cdecl node::PromiseRejectCallback(class v8::PromiseRejectMessage) -?PromiseRejectCallback@node@@YAXVPromiseRejectMessage@v8@@@Z -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::PromiseRejection -?PromiseRejection@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; public: class v8:: __thiscall v8::FunctionTemplate::PrototypeTemplate(void) -?PrototypeTemplate@FunctionTemplate@v8@@QAE?AV?$Local@VObjectTemplate@v8@@@2@XZ ; has WINAPI (@4) -; private: bool __thiscall v8::Value::QuickIsNull(void)const -?QuickIsNull@Value@v8@@ABE_NXZ -; private: bool __thiscall v8::Value::QuickIsNullOrUndefined(void)const -?QuickIsNullOrUndefined@Value@v8@@ABE_NXZ -; private: bool __thiscall v8::Value::QuickIsString(void)const -?QuickIsString@Value@v8@@ABE_NXZ -; private: bool __thiscall v8::Value::QuickIsUndefined(void)const -?QuickIsUndefined@Value@v8@@ABE_NXZ -; public: static class v8:: __cdecl v8::Exception::RangeError(class v8::) -?RangeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; public: class v8:: __thiscall v8::TryCatch::ReThrow(void) -?ReThrow@TryCatch@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadArray(class v8::internal::,unsigned int) -?ReadArray@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadArrayBuffer(class v8::internal::,unsigned int) -?ReadArrayBuffer@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadBigInt(void) -?ReadBigInt@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadBuiltinObjectReference(void) -?ReadBuiltinObjectReference@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadClass(class v8::internal::,unsigned int) -?ReadClass@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; private: bool __thiscall v8::internal::WebSnapshotDeserializer::ReadCount(unsigned int &) -?ReadCount@WebSnapshotDeserializer@internal@v8@@AAE_NAAI@Z ; has WINAPI (@4) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadDataView(class v8::internal::,unsigned int) -?ReadDataView@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; private: class std::Cr::,enum v8::internal::ElementsKind,unsigned int> __thiscall v8::internal::WebSnapshotDeserializer::ReadDenseElements(unsigned int) -?ReadDenseElements@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@V?$Handle@VFixedArrayBase@internal@v8@@@internal@v8@@W4ElementsKind@23@I@Cr@std@@I@Z ; has WINAPI (@8) -; public: bool __thiscall v8::ValueDeserializer::ReadDouble(double *) -?ReadDouble@ValueDeserializer@v8@@QAE_NPAN@Z ; has WINAPI (@4) -; private: enum v8::internal::WebSnapshotSerializerDeserializer::ElementsType __thiscall v8::internal::WebSnapshotDeserializer::ReadElementsType(void) -?ReadElementsType@WebSnapshotDeserializer@internal@v8@@AAE?AW4ElementsType@WebSnapshotSerializerDeserializer@23@XZ -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadExternalReference(void) -?ReadExternalReference@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadFunction(class v8::internal::,unsigned int) -?ReadFunction@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::ReadFunctionPrototype(class v8::internal::) -?ReadFunctionPrototype@WebSnapshotDeserializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::ValueDeserializer::ReadHeader(class v8::) -?ReadHeader@ValueDeserializer@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: virtual class v8:: __thiscall v8::ValueDeserializer::Delegate::ReadHostObject(class v8::Isolate *) -?ReadHostObject@Delegate@ValueDeserializer@v8@@UAE?AV?$MaybeLocal@VObject@v8@@@3@PAVIsolate@3@@Z ; has WINAPI (@8) -; private: class v8::internal::String __thiscall v8::internal::WebSnapshotDeserializer::ReadInPlaceString(enum v8::internal::WebSnapshotDeserializer::InternalizeStrings) -?ReadInPlaceString@WebSnapshotDeserializer@internal@v8@@AAE?AVString@23@W4InternalizeStrings@123@@Z ; has WINAPI (@8) -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadInteger(void) -?ReadInteger@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: bool __thiscall v8::internal::WebSnapshotDeserializer::ReadMapType(void) -?ReadMapType@WebSnapshotDeserializer@internal@v8@@AAE_NXZ -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadNumber(void) -?ReadNumber@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadObject(class v8::internal::,unsigned int) -?ReadObject@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; public: void __thiscall v8::FunctionTemplate::ReadOnlyPrototype(void) -?ReadOnlyPrototype@FunctionTemplate@v8@@QAEXXZ -; public: bool __thiscall v8::ValueDeserializer::ReadRawBytes(unsigned int,void const **) -?ReadRawBytes@ValueDeserializer@v8@@QAE_NIPAPBX@Z ; has WINAPI (@8) -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadRegexp(void) -?ReadRegexp@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: class std::Cr::,enum v8::internal::ElementsKind,unsigned int> __thiscall v8::internal::WebSnapshotDeserializer::ReadSparseElements(unsigned int) -?ReadSparseElements@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@V?$Handle@VFixedArrayBase@internal@v8@@@internal@v8@@W4ElementsKind@23@I@Cr@std@@I@Z ; has WINAPI (@8) -; private: class v8::internal::String __thiscall v8::internal::WebSnapshotDeserializer::ReadString(enum v8::internal::WebSnapshotDeserializer::InternalizeStrings) -?ReadString@WebSnapshotDeserializer@internal@v8@@AAE?AVString@23@W4InternalizeStrings@123@@Z ; has WINAPI (@8) -; private: class v8::internal::Object __thiscall v8::internal::WebSnapshotDeserializer::ReadSymbol(void) -?ReadSymbol@WebSnapshotDeserializer@internal@v8@@AAE?AVObject@23@XZ ; has WINAPI (@4) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadTypedArray(class v8::internal::,unsigned int) -?ReadTypedArray@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@I@Z ; has WINAPI (@12) -; public: bool __thiscall v8::ValueDeserializer::ReadUint32(unsigned int *) -?ReadUint32@ValueDeserializer@v8@@QAE_NPAI@Z ; has WINAPI (@4) -; public: bool __thiscall v8::ValueDeserializer::ReadUint64(unsigned __int64 *) -?ReadUint64@ValueDeserializer@v8@@QAE_NPA_K@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::ValueDeserializer::ReadValue(class v8::) -?ReadValue@ValueDeserializer@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; private: class std::Cr:: __thiscall v8::internal::WebSnapshotDeserializer::ReadValue(class v8::internal::,unsigned int,enum v8::internal::WebSnapshotDeserializer::InternalizeStrings) -?ReadValue@WebSnapshotDeserializer@internal@v8@@AAE?AV?$tuple@VObject@internal@v8@@_N@Cr@std@@V?$Handle@VHeapObject@internal@v8@@@23@IW4InternalizeStrings@123@@Z ; has WINAPI (@16) -; public: virtual void *__thiscall v8::ArrayBuffer::Allocator::Reallocate(void *,unsigned int,unsigned int) -?Reallocate@Allocator@ArrayBuffer@v8@@UAEPAXPAXII@Z ; has WINAPI (@12) -; public: static class std::Cr::> __cdecl v8::BackingStore::Reallocate(class v8::Isolate *,class std::Cr::>,unsigned int) -?Reallocate@BackingStore@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PAVIsolate@2@V345@I@Z -; public: virtual void *__thiscall v8::ValueSerializer::Delegate::ReallocateBufferMemory(void *,unsigned int,unsigned int *) -?ReallocateBufferMemory@Delegate@ValueSerializer@v8@@UAEPAXPAXIPAI@Z ; has WINAPI (@12) -; public: static class v8:: __cdecl v8::Exception::ReferenceError(class v8::) -?ReferenceError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; private: void __thiscall cppgc::internal::PersistentRegionBase::RefillFreeList(void) -?RefillFreeList@PersistentRegionBase@internal@cppgc@@AAEXXZ -; protected: class cppgc::internal::PersistentNode *__thiscall cppgc::internal::PersistentRegionBase::RefillFreeListAndAllocateNode(void *,void(__cdecl *)(class cppgc::internal::RootVisitor &,void const *)) -?RefillFreeListAndAllocateNode@PersistentRegionBase@internal@cppgc@@IAEPAVPersistentNode@23@PAXP6AXAAVRootVisitor@23@PBX@Z@Z ; has WINAPI (@8) -; public: void __thiscall v8::EmbedderHeapTracer::RegisterEmbedderReference(class v8:: const &) -?RegisterEmbedderReference@EmbedderHeapTracer@v8@@QAEXABV?$BasicTracedReference@VData@v8@@@2@@Z ; has WINAPI (@4) -; void __cdecl v8::RegisterExtension(class std::Cr::>) -?RegisterExtension@v8@@YAXV?$unique_ptr@VExtension@v8@@U?$default_delete@VExtension@v8@@@Cr@std@@@Cr@std@@@Z -; int __cdecl v8::internal::trap_handler::RegisterHandlerData(unsigned int,unsigned int,unsigned int,struct v8::internal::trap_handler::ProtectedInstructionData const *) -?RegisterHandlerData@trap_handler@internal@v8@@YAHIIIPBUProtectedInstructionData@123@@Z -; public: unsigned short __thiscall cppgc::internal::GCInfoTable::RegisterNewGCInfo(struct std::Cr:: &,struct cppgc::internal::GCInfo const &) -?RegisterNewGCInfo@GCInfoTable@internal@cppgc@@QAEGAAU?$atomic@G@Cr@std@@ABUGCInfo@23@@Z ; has WINAPI (@8) -; public: virtual void __thiscall cppgc::Visitor::RegisterWeakCallback(void(__cdecl *)(class cppgc::LivenessBroker const &,void const *),void const *) -?RegisterWeakCallback@Visitor@cppgc@@UAEXP6AXABVLivenessBroker@2@PBX@Z1@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Promise::Resolver::Reject(class v8::,class v8::) -?Reject@Resolver@Promise@v8@@QAE?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z ; has WINAPI (@12) -; public: struct std::Cr:: __thiscall v8::ValueSerializer::Release(void) -?Release@ValueSerializer@v8@@QAE?AU?$pair@PAEI@Cr@std@@XZ ; has WINAPI (@4) -; void __cdecl v8::internal::trap_handler::ReleaseHandlerData(int) -?ReleaseHandlerData@trap_handler@internal@v8@@YAXH@Z -; public: void __thiscall v8::Isolate::RemoveBeforeCallEnteredCallback(void(__cdecl *)(class v8::Isolate *)) -?RemoveBeforeCallEnteredCallback@Isolate@v8@@QAEXP6AXPAV12@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::HeapProfiler::RemoveBuildEmbedderGraphCallback(void(__cdecl *)(class v8::Isolate *,class v8::EmbedderGraph *,void *),void *) -?RemoveBuildEmbedderGraphCallback@HeapProfiler@v8@@QAEXP6AXPAVIsolate@2@PAVEmbedderGraph@2@PAX@Z2@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::RemoveCallCompletedCallback(void(__cdecl *)(class v8::Isolate *)) -?RemoveCallCompletedCallback@Isolate@v8@@QAEXP6AXPAV12@@Z@Z ; has WINAPI (@4) -; void __cdecl node::RemoveEnvironmentCleanupHook(class v8::Isolate *,void(__cdecl *)(void *),void *) -?RemoveEnvironmentCleanupHook@node@@YAXPAVIsolate@v8@@P6AXPAX@Z1@Z -; void __cdecl node::RemoveEnvironmentCleanupHookInternal(struct node::ACHHandle *) -?RemoveEnvironmentCleanupHookInternal@node@@YAXPAUACHHandle@1@@Z -; public: void __thiscall v8::Isolate::RemoveGCEpilogueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags)) -?RemoveGCEpilogueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::RemoveGCEpilogueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags,void *),void *) -?RemoveGCEpilogueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@PAX@Z3@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::RemoveGCPrologueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags)) -?RemoveGCPrologueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::RemoveGCPrologueCallback(void(__cdecl *)(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags,void *),void *) -?RemoveGCPrologueCallback@Isolate@v8@@QAEXP6AXPAV12@W4GCType@2@W4GCCallbackFlags@2@PAX@Z3@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::RemoveMessageListeners(void(__cdecl *)(class v8::,class v8::)) -?RemoveMessageListeners@Isolate@v8@@QAEXP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::RemoveMicrotasksCompletedCallback(void(__cdecl *)(class v8::Isolate *,void *),void *) -?RemoveMicrotasksCompletedCallback@Isolate@v8@@QAEXP6AXPAV12@PAX@Z1@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::RemoveNearHeapLimitCallback(unsigned int(__cdecl *)(void *,unsigned int,unsigned int),unsigned int) -?RemoveNearHeapLimitCallback@Isolate@v8@@QAEXP6AIPAXII@ZI@Z ; has WINAPI (@8) -; public: void __thiscall v8::FunctionTemplate::RemovePrototype(void) -?RemovePrototype@FunctionTemplate@v8@@QAEXXZ -; void __cdecl v8::internal::trap_handler::RemoveTrapHandler(void) -?RemoveTrapHandler@trap_handler@internal@v8@@YAXXZ -; private: void __thiscall v8::Isolate::ReportExternalAllocationLimitReached(void) -?ReportExternalAllocationLimitReached@Isolate@v8@@AAEXXZ -; public: void __thiscall v8::Isolate::RequestGarbageCollectionForTesting(enum v8::Isolate::GarbageCollectionType) -?RequestGarbageCollectionForTesting@Isolate@v8@@QAEXW4GarbageCollectionType@12@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::RequestGarbageCollectionForTesting(enum v8::Isolate::GarbageCollectionType,enum cppgc::EmbedderStackState) -?RequestGarbageCollectionForTesting@Isolate@v8@@QAEXW4GarbageCollectionType@12@W4EmbedderStackState@cppgc@@@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::RequestInterrupt(void(__cdecl *)(class v8::Isolate *,void *),void *) -?RequestInterrupt@Isolate@v8@@QAEXP6AXPAV12@PAX@Z1@Z ; has WINAPI (@8) -; public: static void __cdecl v8::metrics::LongTaskStats::Reset(class v8::Isolate *) -?Reset@LongTaskStats@metrics@v8@@SAXPAVIsolate@3@@Z -; public: void __thiscall v8::TryCatch::Reset(void) -?Reset@TryCatch@v8@@QAEXXZ -; public: virtual void __thiscall v8::EmbedderHeapTracer::ResetHandleInNonTracingGC(class v8:: const &) -?ResetHandleInNonTracingGC@EmbedderHeapTracer@v8@@UAEXABV?$TracedReference@VValue@v8@@@2@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: void __thiscall v8::TryCatch::ResetInternal(void) -?ResetInternal@TryCatch@v8@@AAEXXZ -; private: static bool __cdecl cppgc::internal::ExplicitManagementImpl::Resize(void *,unsigned int) -?Resize@ExplicitManagementImpl@internal@cppgc@@CA_NPAXI@Z -; private: void __thiscall cppgc::internal::GCInfoTable::Resize(void) -?Resize@GCInfoTable@internal@cppgc@@AAEXXZ -; public: class v8:: __thiscall v8::Promise::Resolver::Resolve(class v8::,class v8::) -?Resolve@Resolver@Promise@v8@@QAE?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::ScriptOrigin::ResourceName(void)const -?ResourceName@ScriptOrigin@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::RestoreOriginalHeapLimit(void) -?RestoreOriginalHeapLimit@Isolate@v8@@QAEXXZ -; public: class v8:: __thiscall v8::Promise::Result(void) -?Result@Promise@v8@@QAE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::CTypeInfo const &__thiscall v8::CFunction::ReturnInfo(void)const -?ReturnInfo@CFunction@v8@@QBEABVCTypeInfo@2@XZ -; public: class v8::CTypeInfo const &__thiscall v8::CFunctionInfo::ReturnInfo(void)const -?ReturnInfo@CFunctionInfo@v8@@QBEABVCTypeInfo@2@XZ -; public: void __thiscall v8::Proxy::Revoke(void) -?Revoke@Proxy@v8@@QAEXXZ -; public: void __thiscall v8::ScriptCompiler::ConsumeCodeCacheTask::Run(void) -?Run@ConsumeCodeCacheTask@ScriptCompiler@v8@@QAEXXZ -; public: class v8:: __thiscall v8::Script::Run(class v8::) -?Run@Script@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Script::Run(class v8::,class v8::) -?Run@Script@v8@@QAE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::ScriptCompiler::ScriptStreamingTask::Run(void) -?Run@ScriptStreamingTask@ScriptCompiler@v8@@QAEXXZ -; void __cdecl node::RunAtExit(class node::Environment *) -?RunAtExit@node@@YAXPAVEnvironment@1@@Z -; public: bool __thiscall v8::Value::SameValue(class v8::)const -?SameValue@Value@v8@@QBE_NV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: int __thiscall v8::Function::ScriptId(void)const -?ScriptId@Function@v8@@QBEHXZ -; public: int __thiscall v8::Module::ScriptId(void)const -?ScriptId@Module@v8@@QBEHXZ -; public: int __thiscall v8::ScriptOrigin::ScriptId(void)const -?ScriptId@ScriptOrigin@v8@@QBEHXZ -; public: struct v8::OwnedBuffer __thiscall v8::CompiledWasmModule::Serialize(void) -?Serialize@CompiledWasmModule@v8@@QAE?AUOwnedBuffer@2@XZ ; has WINAPI (@4) -; public: void __thiscall v8::HeapSnapshot::Serialize(class v8::OutputStream *,enum v8::HeapSnapshot::SerializationFormat)const -?Serialize@HeapSnapshot@v8@@QBEXPAVOutputStream@2@W4SerializationFormat@12@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeArray(class v8::internal::) -?SerializeArray@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSArray@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeArrayBuffer(class v8::internal::) -?SerializeArrayBuffer@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSArrayBuffer@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeArrayBufferView(class v8::internal::,class v8::internal::ValueSerializer &) -?SerializeArrayBufferView@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSArrayBufferView@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeBigInt(class v8::internal::) -?SerializeBigInt@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VBigInt@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeBuiltinObject(unsigned int) -?SerializeBuiltinObject@WebSnapshotSerializer@internal@v8@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeClass(class v8::internal::) -?SerializeClass@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeContext(class v8::internal::,unsigned int) -?SerializeContext@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VContext@internal@v8@@@23@I@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeDataView(class v8::internal::) -?SerializeDataView@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSDataView@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeElements(class v8::internal::,class v8::internal::ValueSerializer &,class v8::) -?SerializeElements@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSObject@internal@v8@@@23@AAVValueSerializer@23@V?$Maybe@I@3@@Z ; has WINAPI (@16) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeExport(class v8::internal::,class v8::internal::) -?SerializeExport@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VObject@internal@v8@@@23@V?$Handle@VString@internal@v8@@@23@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeFunction(class v8::internal::) -?SerializeFunction@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeFunctionInfo(class v8::internal::,class v8::internal::ValueSerializer &) -?SerializeFunctionInfo@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeFunctionProperties(class v8::internal::,class v8::internal::ValueSerializer &) -?SerializeFunctionProperties@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSFunction@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeMap(class v8::internal::) -?SerializeMap@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VMap@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeObject(class v8::internal::) -?SerializeObject@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSObject@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializePendingItems(void) -?SerializePendingItems@WebSnapshotSerializer@internal@v8@@AAEXXZ -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeString(class v8::internal::,class v8::internal::ValueSerializer &) -?SerializeString@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VString@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeSymbol(class v8::internal::) -?SerializeSymbol@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VSymbol@internal@v8@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::SerializeTypedArray(class v8::internal::) -?SerializeTypedArray@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VJSTypedArray@internal@v8@@@23@@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: class v8:: __thiscall v8::Map::Set(class v8::,class v8::,class v8::) -?Set@Map@v8@@QAE?AV?$MaybeLocal@VMap@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::Object::Set(class v8::,unsigned int,class v8::) -?Set@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::Object::Set(class v8::,class v8::,class v8::) -?Set@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z ; has WINAPI (@16) -; public: void __thiscall v8::PrimitiveArray::Set(class v8::Isolate *,int,class v8::) -?Set@PrimitiveArray@v8@@QAEXPAVIsolate@2@HV?$Local@VPrimitive@v8@@@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::Template::Set(class v8::Isolate *,char const *,class v8::,enum v8::PropertyAttribute) -?Set@Template@v8@@QAEXPAVIsolate@2@PBDV?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z ; has WINAPI (@16) -; public: void __thiscall v8::Template::Set(class v8::,class v8::,enum v8::PropertyAttribute) -?Set@Template@v8@@QAEXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::Isolate::SetAbortOnUncaughtExceptionCallback(bool(__cdecl *)(class v8::Isolate *)) -?SetAbortOnUncaughtExceptionCallback@Isolate@v8@@QAEXP6A_NPAV12@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Context::SetAbortScriptExecution(void(__cdecl *)(class v8::Isolate *,class v8::)) -?SetAbortScriptExecution@Context@v8@@QAEXP6AXPAVIsolate@2@V?$Local@VContext@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::FunctionTemplate::SetAcceptAnyReceiver(bool) -?SetAcceptAnyReceiver@FunctionTemplate@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::ObjectTemplate::SetAccessCheckCallback(bool(__cdecl *)(class v8::,class v8::,class v8::),class v8::) -?SetAccessCheckCallback@ObjectTemplate@v8@@QAEXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@Z2@Z ; has WINAPI (@8) -; public: void __thiscall v8::ObjectTemplate::SetAccessCheckCallbackAndHandler(bool(__cdecl *)(class v8::,class v8::,class v8::),struct v8::NamedPropertyHandlerConfiguration const &,struct v8::IndexedPropertyHandlerConfiguration const &,class v8::) -?SetAccessCheckCallbackAndHandler@ObjectTemplate@v8@@QAEXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@ZABUNamedPropertyHandlerConfiguration@2@ABUIndexedPropertyHandlerConfiguration@2@2@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::Object::SetAccessor(class v8::,class v8::,void(__cdecl *)(class v8::,class v8:: const &),void(__cdecl *)(class v8::,class v8::,class v8:: const &),class v8::,enum v8::AccessControl,enum v8::PropertyAttribute,enum v8::SideEffectType,enum v8::SideEffectType) -?SetAccessor@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@ABV?$PropertyCallbackInfo@X@2@@ZV?$MaybeLocal@VValue@v8@@@2@W4AccessControl@2@W4PropertyAttribute@2@W4SideEffectType@2@W4SideEffectType@2@@Z ; has WINAPI (@40) -; public: void __thiscall v8::ObjectTemplate::SetAccessor(class v8::,void(__cdecl *)(class v8::,class v8:: const &),void(__cdecl *)(class v8::,class v8::,class v8:: const &),class v8::,enum v8::AccessControl,enum v8::PropertyAttribute,enum v8::SideEffectType,enum v8::SideEffectType) -?SetAccessor@ObjectTemplate@v8@@QAEXV?$Local@VName@v8@@@2@P6AX0ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@ABV?$PropertyCallbackInfo@X@2@@Z3W4AccessControl@2@W4PropertyAttribute@2@W4SideEffectType@2@8@Z ; has WINAPI (@32) -; public: void __thiscall v8::ObjectTemplate::SetAccessor(class v8::,void(__cdecl *)(class v8::,class v8:: const &),void(__cdecl *)(class v8::,class v8::,class v8:: const &),class v8::,enum v8::AccessControl,enum v8::PropertyAttribute,enum v8::SideEffectType,enum v8::SideEffectType) -?SetAccessor@ObjectTemplate@v8@@QAEXV?$Local@VString@v8@@@2@P6AX0ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@ABV?$PropertyCallbackInfo@X@2@@Z3W4AccessControl@2@W4PropertyAttribute@2@W4SideEffectType@2@8@Z ; has WINAPI (@32) -; public: void __thiscall v8::Object::SetAccessorProperty(class v8::,class v8::,class v8::,enum v8::PropertyAttribute,enum v8::AccessControl) -?SetAccessorProperty@Object@v8@@QAEXV?$Local@VName@v8@@@2@V?$Local@VFunction@v8@@@2@1W4PropertyAttribute@2@W4AccessControl@2@@Z ; has WINAPI (@20) -; public: void __thiscall v8::Template::SetAccessorProperty(class v8::,class v8::,class v8::,enum v8::PropertyAttribute,enum v8::AccessControl) -?SetAccessorProperty@Template@v8@@QAEXV?$Local@VName@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@1W4PropertyAttribute@2@W4AccessControl@2@@Z ; has WINAPI (@20) -; public: void __thiscall v8::Isolate::SetAddCrashKeyCallback(void(__cdecl *)(enum v8::CrashKeyId,class std::Cr::,class std::Cr::> const &)) -?SetAddCrashKeyCallback@Isolate@v8@@QAEXP6AXW4CrashKeyId@2@ABV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetAddHistogramSampleFunction(void(__cdecl *)(void *,int)) -?SetAddHistogramSampleFunction@Isolate@v8@@QAEXP6AXPAXH@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Context::SetAlignedPointerInEmbedderData(int,void *) -?SetAlignedPointerInEmbedderData@Context@v8@@QAEXHPAX@Z ; has WINAPI (@8) -; public: void __thiscall v8::Object::SetAlignedPointerInInternalField(int,void *) -?SetAlignedPointerInInternalField@Object@v8@@QAEXHPAX@Z ; has WINAPI (@8) -; public: void __thiscall v8::Object::SetAlignedPointerInInternalFields(int,int *const,void **const) -?SetAlignedPointerInInternalFields@Object@v8@@QAEXHQAHQAPAX@Z ; has WINAPI (@12) -; public: void __thiscall v8::Isolate::SetAllowAtomicsWait(bool) -?SetAllowAtomicsWait@Isolate@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetAllowWasmCodeGenerationCallback(bool(__cdecl *)(class v8::,class v8::)) -?SetAllowWasmCodeGenerationCallback@Isolate@v8@@QAEXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetAtomicsWaitCallback(void(__cdecl *)(enum v8::Isolate::AtomicsWaitEvent,class v8::,unsigned int,__int64,double,class v8::Isolate::AtomicsWaitWakeHandle *,void *),void *) -?SetAtomicsWaitCallback@Isolate@v8@@QAEXP6AXW4AtomicsWaitEvent@12@V?$Local@VSharedArrayBuffer@v8@@@2@I_JNPAVAtomicsWaitWakeHandle@12@PAX@Z4@Z ; has WINAPI (@8) -; public: void __thiscall v8::ObjectTemplate::SetCallAsFunctionHandler(void(__cdecl *)(class v8:: const &),class v8::) -?SetCallAsFunctionHandler@ObjectTemplate@v8@@QAEXP6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::FunctionTemplate::SetCallHandler(void(__cdecl *)(class v8:: const &),class v8::,enum v8::SideEffectType,class v8:: const &) -?SetCallHandler@FunctionTemplate@v8@@QAEXP6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4SideEffectType@2@ABV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z ; has WINAPI (@16) -; public: void __thiscall v8::TryCatch::SetCaptureMessage(bool) -?SetCaptureMessage@TryCatch@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetCaptureStackTraceForUncaughtExceptions(bool,int,enum v8::StackTrace::StackTraceOptions) -?SetCaptureStackTraceForUncaughtExceptions@Isolate@v8@@QAEX_NHW4StackTraceOptions@StackTrace@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::FunctionTemplate::SetClassName(class v8::) -?SetClassName@FunctionTemplate@v8@@QAEXV?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::ObjectTemplate::SetCodeLike(void) -?SetCodeLike@ObjectTemplate@v8@@QAEXXZ -; public: bool __thiscall v8::WasmStreaming::SetCompiledModuleBytes(unsigned char const *,unsigned int) -?SetCompiledModuleBytes@WasmStreaming@v8@@QAE_NPBEI@Z ; has WINAPI (@8) -; public: void __thiscall v8::Context::SetContinuationPreservedEmbedderData(class v8::) -?SetContinuationPreservedEmbedderData@Context@v8@@QAEXV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetCounterFunction(int *(__cdecl *)(char const *)) -?SetCounterFunction@Isolate@v8@@QAEXP6APAHPBD@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetCreateHistogramFunction(void *(__cdecl *)(char const *,int,int,unsigned int)) -?SetCreateHistogramFunction@Isolate@v8@@QAEXP6APAXPBDHHI@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetData(unsigned int,void *) -?SetData@Isolate@v8@@QAEXIPAX@Z ; has WINAPI (@8) -; public: static void __cdecl v8::V8::SetDcheckErrorHandler(void(__cdecl *)(char const *,int,char const *)) -?SetDcheckErrorHandler@V8@v8@@SAXP6AXPBDH0@Z@Z -; public: void __thiscall v8::SnapshotCreator::SetDefaultContext(class v8::,struct v8::SerializeInternalFieldsCallback) -?SetDefaultContext@SnapshotCreator@v8@@QAEXV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::Context::SetEmbedderData(int,class v8::) -?SetEmbedderData@Context@v8@@QAEXHV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::SetEmbedderHeapTracer(class v8::EmbedderHeapTracer *) -?SetEmbedderHeapTracer@Isolate@v8@@QAEXPAVEmbedderHeapTracer@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetEmbedderRootsHandler(class v8::EmbedderRootsHandler *) -?SetEmbedderRootsHandler@Isolate@v8@@QAEXPAVEmbedderRootsHandler@2@@Z ; has WINAPI (@4) -; public: static void __cdecl v8::V8::SetEntropySource(bool(__cdecl *)(unsigned char *,unsigned int)) -?SetEntropySource@V8@v8@@SAXP6A_NPAEI@Z@Z -; public: void __thiscall v8::Context::SetErrorMessageForCodeGenerationFromStrings(class v8::) -?SetErrorMessageForCodeGenerationFromStrings@Context@v8@@QAEXV?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Context::SetErrorMessageForWasmCodeGeneration(class v8::) -?SetErrorMessageForWasmCodeGeneration@Context@v8@@QAEXV?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetEventLogger(void(__cdecl *)(char const *,int)) -?SetEventLogger@Isolate@v8@@QAEXP6AXPBDH@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetFailedAccessCheckCallbackFunction(void(__cdecl *)(class v8::,enum v8::AccessType,class v8::)) -?SetFailedAccessCheckCallbackFunction@Isolate@v8@@QAEXP6AXV?$Local@VObject@v8@@@2@W4AccessType@2@V?$Local@VValue@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetFatalErrorHandler(void(__cdecl *)(char const *,char const *)) -?SetFatalErrorHandler@Isolate@v8@@QAEXP6AXPBD0@Z@Z ; has WINAPI (@4) -; public: static void __cdecl v8::V8::SetFatalMemoryErrorCallback(void(__cdecl *)(char const *,struct v8::OOMDetails const &)) -?SetFatalMemoryErrorCallback@V8@v8@@SAXP6AXPBDABUOOMDetails@2@@Z@Z -; public: static void __cdecl v8::V8::SetFlagsFromCommandLine(int *,char **,bool) -?SetFlagsFromCommandLine@V8@v8@@SAXPAHPAPAD_N@Z -; public: static void __cdecl v8::V8::SetFlagsFromString(char const *) -?SetFlagsFromString@V8@v8@@SAXPBD@Z -; public: static void __cdecl v8::V8::SetFlagsFromString(char const *,unsigned int) -?SetFlagsFromString@V8@v8@@SAXPBDI@Z -; private: bool __thiscall v8::internal::WebSnapshotDeserializer::SetFunctionPrototype(class v8::internal::JSFunction,class v8::internal::JSReceiver) -?SetFunctionPrototype@WebSnapshotDeserializer@internal@v8@@AAE_NVJSFunction@23@VJSReceiver@23@@Z ; has WINAPI (@8) -; public: void __thiscall v8::HeapProfiler::SetGetDetachednessCallback(enum v8::EmbedderGraph::Node::Detachedness(__cdecl *)(class v8::Isolate *,class v8:: const &,unsigned short,void *),void *) -?SetGetDetachednessCallback@HeapProfiler@v8@@QAEXP6A?AW4Detachedness@Node@EmbedderGraph@2@PAVIsolate@2@ABV?$Local@VValue@v8@@@2@GPAX@Z2@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::SetGetExternallyAllocatedMemoryInBytesCallback(unsigned int(__cdecl *)(void)) -?SetGetExternallyAllocatedMemoryInBytesCallback@Isolate@v8@@QAEXP6AIXZ@Z ; has WINAPI (@4) -; public: void __thiscall v8::ObjectTemplate::SetHandler(struct v8::IndexedPropertyHandlerConfiguration const &) -?SetHandler@ObjectTemplate@v8@@QAEXABUIndexedPropertyHandlerConfiguration@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::ObjectTemplate::SetHandler(struct v8::NamedPropertyHandlerConfiguration const &) -?SetHandler@ObjectTemplate@v8@@QAEXABUNamedPropertyHandlerConfiguration@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetHostCreateShadowRealmContextCallback(class v8::(__cdecl *)(class v8::)) -?SetHostCreateShadowRealmContextCallback@Isolate@v8@@QAEXP6A?AV?$MaybeLocal@VContext@v8@@@2@V?$Local@VContext@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetHostImportModuleDynamicallyCallback(class v8::(__cdecl *)(class v8::,class v8::,class v8::,class v8::,class v8::)) -?SetHostImportModuleDynamicallyCallback@Isolate@v8@@QAEXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetHostInitializeImportMetaObjectCallback(void(__cdecl *)(class v8::,class v8::,class v8::)) -?SetHostInitializeImportMetaObjectCallback@Isolate@v8@@QAEXP6AXV?$Local@VContext@v8@@@2@V?$Local@VModule@v8@@@2@V?$Local@VObject@v8@@@2@@Z@Z ; has WINAPI (@4) -; private: void __thiscall v8::DiscardedSamplesDelegate::SetId(unsigned int) -?SetId@DiscardedSamplesDelegate@v8@@AAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetIdle(bool) -?SetIdle@Isolate@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::ObjectTemplate::SetImmutableProto(void) -?SetImmutableProto@ObjectTemplate@v8@@QAEXXZ -; public: void __thiscall v8::ObjectTemplate::SetIndexedPropertyHandler(void(__cdecl *)(unsigned int,class v8:: const &),void(__cdecl *)(unsigned int,class v8::,class v8:: const &),void(__cdecl *)(unsigned int,class v8:: const &),void(__cdecl *)(unsigned int,class v8:: const &),void(__cdecl *)(class v8:: const &),class v8::) -?SetIndexedPropertyHandler@ObjectTemplate@v8@@QAEXP6AXIABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AXIV?$Local@VValue@v8@@@2@0@ZP6AXIABV?$PropertyCallbackInfo@VInteger@v8@@@2@@ZP6AXIABV?$PropertyCallbackInfo@VBoolean@v8@@@2@@ZP6AXABV?$PropertyCallbackInfo@VArray@v8@@@2@@Z2@Z ; has WINAPI (@24) -; public: class v8:: __thiscall v8::Object::SetIntegrityLevel(class v8::,enum v8::IntegrityLevel) -?SetIntegrityLevel@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@W4IntegrityLevel@2@@Z ; has WINAPI (@12) -; public: void __thiscall v8::Object::SetInternalField(int,class v8::) -?SetInternalField@Object@v8@@QAEXHV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::ObjectTemplate::SetInternalFieldCount(int) -?SetInternalFieldCount@ObjectTemplate@v8@@QAEXH@Z ; has WINAPI (@4) -; public: void __thiscall v8::Template::SetIntrinsicDataProperty(class v8::,enum v8::Intrinsic,enum v8::PropertyAttribute) -?SetIntrinsicDataProperty@Template@v8@@QAEXV?$Local@VName@v8@@@2@W4Intrinsic@2@W4PropertyAttribute@2@@Z ; has WINAPI (@12) -; void __cdecl node::SetIsolateUpForNode(class v8::Isolate *) -?SetIsolateUpForNode@node@@YAXPAVIsolate@v8@@@Z -; void __cdecl node::SetIsolateUpForNode(class v8::Isolate *,struct node::IsolateSettings const &) -?SetIsolateUpForNode@node@@YAXPAVIsolate@v8@@ABUIsolateSettings@1@@Z -; public: void __thiscall v8::Isolate::SetJitCodeEventHandler(enum v8::JitCodeEventOptions,void(__cdecl *)(struct v8::JitCodeEvent const *)) -?SetJitCodeEventHandler@Isolate@v8@@QAEXW4JitCodeEventOptions@2@P6AXPBUJitCodeEvent@2@@Z@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Object::SetLazyDataProperty(class v8::,class v8::,void(__cdecl *)(class v8::,class v8:: const &),class v8::,enum v8::PropertyAttribute,enum v8::SideEffectType,enum v8::SideEffectType) -?SetLazyDataProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@6@Z ; has WINAPI (@32) -; public: void __thiscall v8::Template::SetLazyDataProperty(class v8::,void(__cdecl *)(class v8::,class v8:: const &),class v8::,enum v8::PropertyAttribute,enum v8::SideEffectType,enum v8::SideEffectType) -?SetLazyDataProperty@Template@v8@@QAEXV?$Local@VName@v8@@@2@P6AX0ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@5@Z ; has WINAPI (@24) -; public: void __thiscall v8::FunctionTemplate::SetLength(int) -?SetLength@FunctionTemplate@v8@@QAEXH@Z ; has WINAPI (@4) -; void __cdecl v8_inspector::SetMaxAsyncTaskStacksForTest(class v8_inspector::V8Inspector *,int) -?SetMaxAsyncTaskStacksForTest@v8_inspector@@YAXPAVV8Inspector@1@H@Z -; public: void __thiscall v8::Isolate::SetMetricsRecorder(class std::Cr:: const &) -?SetMetricsRecorder@Isolate@v8@@QAEXABV?$shared_ptr@VRecorder@metrics@v8@@@Cr@std@@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetMicrotasksPolicy(enum v8::MicrotasksPolicy) -?SetMicrotasksPolicy@Isolate@v8@@QAEXW4MicrotasksPolicy@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetModifyCodeGenerationFromStringsCallback(struct v8::ModifyCodeGenerationFromStringsResult(__cdecl *)(class v8::,class v8::,bool)) -?SetModifyCodeGenerationFromStringsCallback@Isolate@v8@@QAEXP6A?AUModifyCodeGenerationFromStringsResult@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@_N@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::WasmStreaming::SetMoreFunctionsCanBeSerializedCallback(class std::Cr::) -?SetMoreFunctionsCanBeSerializedCallback@WasmStreaming@v8@@QAEXV?$function@$$A6AXVCompiledWasmModule@v8@@@Z@Cr@std@@@Z ; has WINAPI (@32) -; public: void __thiscall v8::Function::SetName(class v8::) -?SetName@Function@v8@@QAEXV?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::SetNativeDataProperty(class v8::,class v8::,void(__cdecl *)(class v8::,class v8:: const &),void(__cdecl *)(class v8::,class v8::,class v8:: const &),class v8::,enum v8::PropertyAttribute,enum v8::SideEffectType,enum v8::SideEffectType) -?SetNativeDataProperty@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@ABV?$PropertyCallbackInfo@X@2@@Z4W4PropertyAttribute@2@W4SideEffectType@2@8@Z ; has WINAPI (@36) -; public: void __thiscall v8::Template::SetNativeDataProperty(class v8::,void(__cdecl *)(class v8::,class v8:: const &),void(__cdecl *)(class v8::,class v8::,class v8:: const &),class v8::,enum v8::PropertyAttribute,enum v8::AccessControl,enum v8::SideEffectType,enum v8::SideEffectType) -?SetNativeDataProperty@Template@v8@@QAEXV?$Local@VName@v8@@@2@P6AX0ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@ABV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4AccessControl@2@W4SideEffectType@2@8@Z ; has WINAPI (@32) -; public: void __thiscall v8::Template::SetNativeDataProperty(class v8::,void(__cdecl *)(class v8::,class v8:: const &),void(__cdecl *)(class v8::,class v8::,class v8:: const &),class v8::,enum v8::PropertyAttribute,enum v8::AccessControl,enum v8::SideEffectType,enum v8::SideEffectType) -?SetNativeDataProperty@Template@v8@@QAEXV?$Local@VString@v8@@@2@P6AX0ABV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@ABV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4AccessControl@2@W4SideEffectType@2@8@Z ; has WINAPI (@32) -; public: void __thiscall v8::Isolate::SetOOMErrorHandler(void(__cdecl *)(char const *,struct v8::OOMDetails const &)) -?SetOOMErrorHandler@Isolate@v8@@QAEXP6AXPBDABUOOMDetails@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetPrepareStackTraceCallback(class v8::(__cdecl *)(class v8::,class v8::,class v8::)) -?SetPrepareStackTraceCallback@Isolate@v8@@QAEXP6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VArray@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::SetPrivate(class v8::,class v8::,class v8::) -?SetPrivate@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; public: void __thiscall v8::Template::SetPrivate(class v8::,class v8::,enum v8::PropertyAttribute) -?SetPrivate@Template@v8@@QAEXV?$Local@VPrivate@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z ; has WINAPI (@12) -; void __cdecl node::SetProcessExitHandler(class node::Environment *,,class std::Cr:: *const) -?SetProcessExitHandler@node@@YAXPAVEnvironment@1@$$QAV?$function@$$A6AXPAVEnvironment@node@@H@Z@Cr@std@@@Z -; public: void __thiscall v8::Isolate::SetPromiseHook(void(__cdecl *)(enum v8::PromiseHookType,class v8::,class v8::)) -?SetPromiseHook@Isolate@v8@@QAEXP6AXW4PromiseHookType@2@V?$Local@VPromise@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Context::SetPromiseHooks(class v8::,class v8::,class v8::,class v8::) -?SetPromiseHooks@Context@v8@@QAEXV?$Local@VFunction@v8@@@2@000@Z ; has WINAPI (@16) -; public: void __thiscall v8::Isolate::SetPromiseRejectCallback(void(__cdecl *)(class v8::PromiseRejectMessage)) -?SetPromiseRejectCallback@Isolate@v8@@QAEXP6AXVPromiseRejectMessage@2@@Z@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Object::SetPrototype(class v8::,class v8::) -?SetPrototype@Object@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::SetPrototype(class v8::internal::,class v8::internal::) -?SetPrototype@WebSnapshotDeserializer@internal@v8@@AAEXV?$Handle@VMap@internal@v8@@@23@V?$Handle@VObject@internal@v8@@@23@@Z ; has WINAPI (@8) -; public: void __thiscall v8::FunctionTemplate::SetPrototypeProviderTemplate(class v8::) -?SetPrototypeProviderTemplate@FunctionTemplate@v8@@QAEXV?$Local@VFunctionTemplate@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetRAILMode(enum v8::RAILMode) -?SetRAILMode@Isolate@v8@@QAEXW4RAILMode@2@@Z ; has WINAPI (@4) -; public: static void __cdecl v8::V8::SetReturnAddressLocationResolver(unsigned int(__cdecl *)(unsigned int)) -?SetReturnAddressLocationResolver@V8@v8@@SAXP6AII@Z@Z -; public: void __thiscall v8::CpuProfiler::SetSamplingInterval(int) -?SetSamplingInterval@CpuProfiler@v8@@QAEXH@Z ; has WINAPI (@4) -; public: void __thiscall v8::Context::SetSecurityToken(class v8::) -?SetSecurityToken@Context@v8@@QAEXV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetSharedArrayBufferConstructorEnabledCallback(bool(__cdecl *)(class v8::)) -?SetSharedArrayBufferConstructorEnabledCallback@Isolate@v8@@QAEXP6A_NV?$Local@VContext@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: static void __cdecl v8::V8::SetSnapshotDataBlob(class v8::StartupData *) -?SetSnapshotDataBlob@V8@v8@@SAXPAVStartupData@2@@Z -; public: void __thiscall v8::Isolate::SetStackLimit(unsigned int) -?SetStackLimit@Isolate@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::EmbedderHeapTracer::SetStackStart(void *) -?SetStackStart@EmbedderHeapTracer@v8@@QAEXPAX@Z ; has WINAPI (@4) -; public: void __thiscall v8::ValueDeserializer::SetSupportsLegacyWireFormat(bool) -?SetSupportsLegacyWireFormat@ValueDeserializer@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Module::SetSyntheticModuleExport(class v8::Isolate *,class v8::,class v8::) -?SetSyntheticModuleExport@Module@v8@@QAE?AV?$Maybe@_N@2@PAVIsolate@2@V?$Local@VString@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@16) -; void __cdecl node::SetTracingController(class v8::TracingController *) -?SetTracingController@node@@YAXPAVTracingController@v8@@@Z -; public: void __thiscall v8::ValueSerializer::SetTreatArrayBufferViewsAsHostObjects(bool) -?SetTreatArrayBufferViewsAsHostObjects@ValueSerializer@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: static void __cdecl v8::V8::SetUnhandledExceptionCallback(int(__cdecl *)(struct _EXCEPTION_POINTERS *)) -?SetUnhandledExceptionCallback@V8@v8@@SAXP6AHPAU_EXCEPTION_POINTERS@@@Z@Z -; public: void __thiscall v8::WasmStreaming::SetUrl(char const *,unsigned int) -?SetUrl@WasmStreaming@v8@@QAEXPBDI@Z ; has WINAPI (@8) -; public: void __thiscall v8::Isolate::SetUseCounterCallback(void(__cdecl *)(class v8::Isolate *,enum v8::Isolate::UseCounterFeature)) -?SetUseCounterCallback@Isolate@v8@@QAEXP6AXPAV12@W4UseCounterFeature@12@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::CpuProfiler::SetUsePreciseSampling(bool) -?SetUsePreciseSampling@CpuProfiler@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::TryCatch::SetVerbose(bool) -?SetVerbose@TryCatch@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmAsyncResolvePromiseCallback(void(__cdecl *)(class v8::Isolate *,class v8::,class v8::,class v8::,enum v8::WasmAsyncSuccess)) -?SetWasmAsyncResolvePromiseCallback@Isolate@v8@@QAEXP6AXPAV12@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@V?$Local@VValue@v8@@@2@W4WasmAsyncSuccess@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmExceptionsEnabledCallback(bool(__cdecl *)(class v8::)) -?SetWasmExceptionsEnabledCallback@Isolate@v8@@QAEXP6A_NV?$Local@VContext@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmInstanceCallback(bool(__cdecl *)(class v8:: const &)) -?SetWasmInstanceCallback@Isolate@v8@@QAEXP6A_NABV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmLoadSourceMapCallback(class v8::(__cdecl *)(class v8::Isolate *,char const *)) -?SetWasmLoadSourceMapCallback@Isolate@v8@@QAEXP6A?AV?$Local@VString@v8@@@2@PAV12@PBD@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmModuleCallback(bool(__cdecl *)(class v8:: const &)) -?SetWasmModuleCallback@Isolate@v8@@QAEXP6A_NABV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmSimdEnabledCallback(bool(__cdecl *)(class v8::)) -?SetWasmSimdEnabledCallback@Isolate@v8@@QAEXP6A_NV?$Local@VContext@v8@@@2@@Z@Z ; has WINAPI (@4) -; public: void __thiscall v8::Isolate::SetWasmStreamingCallback(void(__cdecl *)(class v8:: const &)) -?SetWasmStreamingCallback@Isolate@v8@@QAEXP6AXABV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::ShallowDiscoverBuiltinObjects(class v8::) -?ShallowDiscoverBuiltinObjects@WebSnapshotSerializer@internal@v8@@AAEXV?$Local@VContext@v8@@@3@@Z ; has WINAPI (@4) -; private: void __thiscall v8::internal::WebSnapshotSerializer::ShallowDiscoverExternals(class v8::internal::FixedArray) -?ShallowDiscoverExternals@WebSnapshotSerializer@internal@v8@@AAEXVFixedArray@23@@Z ; has WINAPI (@4) -; bool __cdecl node::ShouldAbortOnUncaughtException(class v8::Isolate *) -?ShouldAbortOnUncaughtException@node@@YA_NPAVIsolate@v8@@@Z -; private: bool __thiscall v8::internal::WebSnapshotSerializer::ShouldBeSerialized(class v8::internal::) -?ShouldBeSerialized@WebSnapshotSerializer@internal@v8@@AAE_NV?$Handle@VName@internal@v8@@@23@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::ScriptCompiler::ConsumeCodeCacheTask::ShouldMergeWithExistingScript(void)const -?ShouldMergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QBE_NXZ -; bool __cdecl v8::internal::ShouldThrowOnError(class v8::internal::Isolate *) -?ShouldThrowOnError@internal@v8@@YA_NPAVIsolate@12@@Z -; void __cdecl cppgc::ShutdownProcess(void) -?ShutdownProcess@cppgc@@YAXXZ -; public: unsigned int __thiscall v8::Map::Size(void)const -?Size@Map@v8@@QBEIXZ -; public: unsigned int __thiscall v8::Set::Size(void)const -?Size@Set@v8@@QBEIXZ -; private: void *__thiscall v8::Context::SlowGetAlignedPointerFromEmbedderData(int) -?SlowGetAlignedPointerFromEmbedderData@Context@v8@@AAEPAXH@Z ; has WINAPI (@4) -; private: void *__thiscall v8::Object::SlowGetAlignedPointerFromInternalField(int) -?SlowGetAlignedPointerFromInternalField@Object@v8@@AAEPAXH@Z ; has WINAPI (@4) -; private: class v8:: __thiscall v8::Context::SlowGetEmbedderData(int) -?SlowGetEmbedderData@Context@v8@@AAE?AV?$Local@VValue@v8@@@2@H@Z ; has WINAPI (@8) -; private: class v8:: __thiscall v8::Object::SlowGetInternalField(int) -?SlowGetInternalField@Object@v8@@AAE?AV?$Local@VValue@v8@@@2@H@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::ScriptOrigin::SourceMapUrl(void)const -?SourceMapUrl@ScriptOrigin@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::Location __thiscall v8::Module::SourceOffsetToLocation(int)const -?SourceOffsetToLocation@Module@v8@@QBE?AVLocation@2@H@Z ; has WINAPI (@8) -; public: void __thiscall v8::ScriptCompiler::ConsumeCodeCacheTask::SourceTextAvailable(class v8::Isolate *,class v8::,class v8::ScriptOrigin const &) -?SourceTextAvailable@ConsumeCodeCacheTask@ScriptCompiler@v8@@QAEXPAVIsolate@3@V?$Local@VString@v8@@@3@ABVScriptOrigin@3@@Z ; has WINAPI (@12) -; class v8:: __cdecl node::SpinEventLoop(class node::Environment *) -?SpinEventLoop@node@@YA?AV?$Maybe@H@v8@@PAVEnvironment@1@@Z -; public: class v8:: __thiscall v8::TryCatch::StackTrace(class v8::)const -?StackTrace@TryCatch@v8@@QBE?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: static class v8:: __cdecl v8::TryCatch::StackTrace(class v8::,class v8::) -?StackTrace@TryCatch@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -; public: struct v8::CpuProfilingResult __thiscall v8::CpuProfiler::Start(class v8::,class v8::CpuProfilingOptions,class std::Cr::>) -?Start@CpuProfiler@v8@@QAE?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@Cr@std@@@Cr@std@@@Z ; has WINAPI (@28) -; public: struct v8::CpuProfilingResult __thiscall v8::CpuProfiler::Start(class v8::,enum v8::CpuProfilingMode,bool,unsigned int) -?Start@CpuProfiler@v8@@QAE?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z ; has WINAPI (@20) -; public: struct v8::CpuProfilingResult __thiscall v8::CpuProfiler::Start(class v8::,bool) -?Start@CpuProfiler@v8@@QAE?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@_N@Z ; has WINAPI (@12) -; public: struct v8::CpuProfilingResult __thiscall v8::CpuProfiler::Start(class v8::CpuProfilingOptions,class std::Cr::>) -?Start@CpuProfiler@v8@@QAE?AUCpuProfilingResult@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@Cr@std@@@Cr@std@@@Z ; has WINAPI (@24) -; int __cdecl node::Start(int,char **const) -?Start@node@@YAHHQAPAD@Z -; public: static class v8::ScriptCompiler::ConsumeCodeCacheTask *__cdecl v8::ScriptCompiler::StartConsumingCodeCache(class v8::Isolate *,class std::Cr::>) -?StartConsumingCodeCache@ScriptCompiler@v8@@SAPAVConsumeCodeCacheTask@12@PAVIsolate@2@V?$unique_ptr@UCachedData@ScriptCompiler@v8@@U?$default_delete@UCachedData@ScriptCompiler@v8@@@Cr@std@@@Cr@std@@@Z -; public: void __thiscall cppgc::testing::StandaloneTestingHeap::StartGarbageCollection(void) -?StartGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QAEXXZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: enum v8::CpuProfilingStatus __thiscall v8::CpuProfiler::StartProfiling(class v8::,class v8::CpuProfilingOptions,class std::Cr::>) -?StartProfiling@CpuProfiler@v8@@QAE?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@Cr@std@@@Cr@std@@@Z ; has WINAPI (@24) -; public: enum v8::CpuProfilingStatus __thiscall v8::CpuProfiler::StartProfiling(class v8::,enum v8::CpuProfilingMode,bool,unsigned int) -?StartProfiling@CpuProfiler@v8@@QAE?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z ; has WINAPI (@16) -; public: enum v8::CpuProfilingStatus __thiscall v8::CpuProfiler::StartProfiling(class v8::,bool) -?StartProfiling@CpuProfiler@v8@@QAE?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@_N@Z ; has WINAPI (@8) -; public: bool __thiscall v8::HeapProfiler::StartSamplingHeapProfiler(unsigned __int64,int,enum v8::HeapProfiler::SamplingFlags) -?StartSamplingHeapProfiler@HeapProfiler@v8@@QAE_N_KHW4SamplingFlags@12@@Z ; has WINAPI (@16) -; public: static class v8::ScriptCompiler::ScriptStreamingTask *__cdecl v8::ScriptCompiler::StartStreaming(class v8::Isolate *,class v8::ScriptCompiler::StreamedSource *,enum v8::ScriptType,enum v8::ScriptCompiler::CompileOptions) -?StartStreaming@ScriptCompiler@v8@@SAPAVScriptStreamingTask@12@PAVIsolate@2@PAVStreamedSource@12@W4ScriptType@2@W4CompileOptions@12@@Z -; public: void __thiscall v8::HeapProfiler::StartTrackingHeapObjects(bool) -?StartTrackingHeapObjects@HeapProfiler@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: enum v8::Promise::PromiseState __thiscall v8::Promise::State(void) -?State@Promise@v8@@QAE?AW4PromiseState@12@XZ -; public: static void __cdecl cppgc::internal::WriteBarrier::SteeleMarkingBarrier(struct cppgc::internal::WriteBarrier::Params const &,void const *) -?SteeleMarkingBarrier@WriteBarrier@internal@cppgc@@SAXABUParams@123@PBX@Z -; private: static void __cdecl cppgc::internal::WriteBarrier::SteeleMarkingBarrierSlow(void const *) -?SteeleMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPBX@Z -; private: static void __cdecl cppgc::internal::WriteBarrier::SteeleMarkingBarrierSlowWithSentinelCheck(void const *) -?SteeleMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPBX@Z -; public: class v8::CpuProfile *__thiscall v8::CpuProfiler::Stop(unsigned int) -?Stop@CpuProfiler@v8@@QAEPAVCpuProfile@2@I@Z ; has WINAPI (@4) -; int __cdecl node::Stop(class node::Environment *) -?Stop@node@@YAHPAVEnvironment@1@@Z -; public: class v8::CpuProfile *__thiscall v8::CpuProfiler::StopProfiling(class v8::) -?StopProfiling@CpuProfiler@v8@@QAEPAVCpuProfile@2@V?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::HeapProfiler::StopSamplingHeapProfiler(void) -?StopSamplingHeapProfiler@HeapProfiler@v8@@QAEXXZ -; public: void __thiscall v8::HeapProfiler::StopTrackingHeapObjects(void) -?StopTrackingHeapObjects@HeapProfiler@v8@@QAEXXZ -; public: bool __thiscall v8::Value::StrictEquals(class v8::)const -?StrictEquals@Value@v8@@QBE_NV?$Local@VValue@v8@@@2@@Z ; has WINAPI (@4) -; public: bool __thiscall v8::String::StringEquals(class v8::)const -?StringEquals@String@v8@@QBE_NV?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: static class v8:: __cdecl v8::JSON::Stringify(class v8::,class v8::,class v8::) -?Stringify@JSON@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; public: static bool __cdecl cppgc::NameProvider::SupportsCppClassNamesAsObjectNames(void) -?SupportsCppClassNamesAsObjectNames@NameProvider@cppgc@@SA_NXZ -; public: static class v8:: __cdecl v8::Exception::SyntaxError(class v8::) -?SyntaxError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; protected: static double __cdecl v8::Platform::SystemClockTimeMillis(void) -?SystemClockTimeMillis@Platform@v8@@KANXZ -; public: struct cppgc::internal::GCInfo &__thiscall cppgc::internal::GCInfoTable::TableSlotForTesting(unsigned short) -?TableSlotForTesting@GCInfoTable@internal@cppgc@@QAEAAUGCInfo@23@G@Z ; has WINAPI (@4) -; public: class v8::HeapSnapshot const *__thiscall v8::HeapProfiler::TakeHeapSnapshot(struct v8::HeapProfiler::HeapSnapshotOptions const &) -?TakeHeapSnapshot@HeapProfiler@v8@@QAEPBVHeapSnapshot@2@ABUHeapSnapshotOptions@12@@Z ; has WINAPI (@4) -; public: class v8::HeapSnapshot const *__thiscall v8::HeapProfiler::TakeHeapSnapshot(class v8::ActivityControl *,class v8::HeapProfiler::ObjectNameResolver *,bool,bool) -?TakeHeapSnapshot@HeapProfiler@v8@@QAEPBVHeapSnapshot@2@PAVActivityControl@2@PAVObjectNameResolver@12@_N2@Z ; has WINAPI (@16) -; public: bool __thiscall v8::internal::WebSnapshotSerializer::TakeSnapshot(class v8::internal::,class v8::internal::,struct v8::internal::WebSnapshotData &) -?TakeSnapshot@WebSnapshotSerializer@internal@v8@@QAE_NV?$Handle@VObject@internal@v8@@@23@V?$MaybeHandle@VFixedArray@internal@v8@@@23@AAUWebSnapshotData@23@@Z ; has WINAPI (@12) -; public: bool __thiscall v8::internal::WebSnapshotSerializer::TakeSnapshot(class v8::,class v8::,struct v8::internal::WebSnapshotData &) -?TakeSnapshot@WebSnapshotSerializer@internal@v8@@QAE_NV?$Local@VContext@v8@@@3@V?$Local@VPrimitiveArray@v8@@@3@AAUWebSnapshotData@23@@Z ; has WINAPI (@12) -; public: void __thiscall v8::CppHeap::Terminate(void) -?Terminate@CppHeap@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::TerminateExecution(void) -?TerminateExecution@Isolate@v8@@QAEXXZ -; public: class v8:: __thiscall v8::Promise::Then(class v8::,class v8::,class v8::) -?Then@Promise@v8@@QAE?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@1@Z ; has WINAPI (@16) -; public: class v8:: __thiscall v8::Promise::Then(class v8::,class v8::) -?Then@Promise@v8@@QAE?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z ; has WINAPI (@12) -; private: void __thiscall v8::internal::WebSnapshotDeserializer::Throw(char const *) -?Throw@WebSnapshotDeserializer@internal@v8@@AAEXPBD@Z ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Isolate::ThrowError(class v8::) -?ThrowError@Isolate@v8@@QAE?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Isolate::ThrowException(class v8::) -?ThrowException@Isolate@v8@@QAE?AV?$Local@VValue@v8@@@2@V32@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToArrayIndex(class v8::)const -?ToArrayIndex@Value@v8@@QBE?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToBigInt(class v8::)const -?ToBigInt@Value@v8@@QBE?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToBoolean(class v8::Isolate *)const -?ToBoolean@Value@v8@@QBE?AV?$Local@VBoolean@v8@@@2@PAVIsolate@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToDetailString(class v8::)const -?ToDetailString@Value@v8@@QBE?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Date::ToISOString(void)const -?ToISOString@Date@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Value::ToInt32(class v8::)const -?ToInt32@Value@v8@@QBE?AV?$MaybeLocal@VInt32@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToInteger(class v8::)const -?ToInteger@Value@v8@@QBE?AV?$MaybeLocal@VInteger@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; void __cdecl v8::api_internal::ToLocalEmpty(void) -?ToLocalEmpty@api_internal@v8@@YAXXZ -; public: class v8:: __thiscall v8::Value::ToNumber(class v8::)const -?ToNumber@Value@v8@@QBE?AV?$MaybeLocal@VNumber@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToObject(class v8::)const -?ToObject@Value@v8@@QBE?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class std::Cr::,class std::Cr::> __thiscall cppgc::SourceLocation::ToString(void)const -?ToString@SourceLocation@cppgc@@QBE?AV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall v8_inspector::V8StackTraceId::ToString(void) -?ToString@V8StackTraceId@v8_inspector@@QAE?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::Value::ToString(class v8::)const -?ToString@Value@v8@@QBE?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: class v8:: __thiscall v8::Value::ToUint32(class v8::)const -?ToUint32@Value@v8@@QBE?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::BigInt::ToWordsArray(int *,int *,unsigned __int64 *)const -?ToWordsArray@BigInt@v8@@QBEXPAH0PA_K@Z ; has WINAPI (@12) -; public: void __thiscall cppgc::testing::StandaloneTestingHeap::ToggleMainThreadMarking(bool) -?ToggleMainThreadMarking@StandaloneTestingHeap@testing@cppgc@@QAEX_N@Z ; has WINAPI (@4) -; public: static unsigned int __cdecl cppgc::ProcessHeapStatistics::TotalAllocatedObjectSize(void) -?TotalAllocatedObjectSize@ProcessHeapStatistics@cppgc@@SAIXZ -; public: static unsigned int __cdecl cppgc::ProcessHeapStatistics::TotalAllocatedSpace(void) -?TotalAllocatedSpace@ProcessHeapStatistics@cppgc@@SAIXZ -; public: virtual void __thiscall v8::EmbedderHeapTracer::TraceEpilogue(struct v8::EmbedderHeapTracer::TraceSummary *) -?TraceEpilogue@EmbedderHeapTracer@v8@@UAEXPAUTraceSummary@12@@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8::EmbedderHeapTracer::TracePrologue(enum v8::EmbedderHeapTracer::TraceFlags) -?TracePrologue@EmbedderHeapTracer@v8@@UAEXW4TraceFlags@12@@Z ; has WINAPI (@8) -; public: void __thiscall v8::ValueDeserializer::TransferArrayBuffer(unsigned int,class v8::) -?TransferArrayBuffer@ValueDeserializer@v8@@QAEXIV?$Local@VArrayBuffer@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::ValueSerializer::TransferArrayBuffer(unsigned int,class v8::) -?TransferArrayBuffer@ValueSerializer@v8@@QAEXIV?$Local@VArrayBuffer@v8@@@2@@Z ; has WINAPI (@8) -; public: void __thiscall v8::ValueDeserializer::TransferSharedArrayBuffer(unsigned int,class v8::) -?TransferSharedArrayBuffer@ValueDeserializer@v8@@QAEXIV?$Local@VSharedArrayBuffer@v8@@@2@@Z ; has WINAPI (@8) -; protected: class cppgc::internal::PersistentNode *__thiscall cppgc::internal::PersistentRegionBase::TryAllocateNodeFromFreeList(void *,void(__cdecl *)(class cppgc::internal::RootVisitor &,void const *)) -?TryAllocateNodeFromFreeList@PersistentRegionBase@internal@cppgc@@IAEPAVPersistentNode@23@PAXP6AXAAVRootVisitor@23@PBX@Z@Z ; has WINAPI (@8) -; public: static class v8::Isolate *__cdecl v8::Isolate::TryGetCurrent(void) -?TryGetCurrent@Isolate@v8@@SAPAV12@XZ -; bool __cdecl v8::TryHandleWebAssemblyTrapWindows(struct _EXCEPTION_POINTERS *) -?TryHandleWebAssemblyTrapWindows@v8@@YA_NPAU_EXCEPTION_POINTERS@@@Z -; public: static bool __cdecl v8::Unwinder::TryUnwindV8Frames(struct v8::JSEntryStubs const &,unsigned int,struct v8::MemoryRange const *,struct v8::RegisterState *,void const *) -?TryUnwindV8Frames@Unwinder@v8@@SA_NABUJSEntryStubs@2@IPBUMemoryRange@2@PAURegisterState@2@PBX@Z -; public: static class v8:: __cdecl v8::Exception::TypeError(class v8::) -?TypeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; public: class v8:: __thiscall v8::Value::TypeOf(class v8::Isolate *) -?TypeOf@Value@v8@@QAE?AV?$Local@VString@v8@@@2@PAVIsolate@2@@Z ; has WINAPI (@8) -; class v8:: __cdecl node::UVException(class v8::Isolate *,int,char const *,char const *,char const *,char const *) -?UVException@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@HPBD111@Z -; public: class v8:: __thiscall v8::Value::Uint32Value(class v8::)const -?Uint32Value@Value@v8@@QBE?AV?$Maybe@I@2@V?$Local@VContext@v8@@@2@@Z ; has WINAPI (@8) -; public: unsigned __int64 __thiscall v8::BigInt::Uint64Value(bool *)const -?Uint64Value@BigInt@v8@@QBE_KPA_N@Z ; has WINAPI (@4) -; protected: virtual void __thiscall v8::String::ExternalStringResourceBase::Unlock(void)const -?Unlock@ExternalStringResourceBase@String@v8@@MBEXXZ -; public: static class std::Cr:: __cdecl v8::WasmStreaming::Unpack(class v8::Isolate *,class v8::) -?Unpack@WasmStreaming@v8@@SA?AV?$shared_ptr@VWasmStreaming@v8@@@Cr@std@@PAVIsolate@2@V?$Local@VValue@v8@@@2@@Z -; public: void __thiscall v8::String::ExternalOneByteStringResource::UpdateDataCache(void) -?UpdateDataCache@ExternalOneByteStringResource@String@v8@@QAEXXZ -; public: void __thiscall v8::String::ExternalStringResource::UpdateDataCache(void) -?UpdateDataCache@ExternalStringResource@String@v8@@QAEXXZ -; public: void __thiscall v8::Isolate::UpdateLoadStartTime(void) -?UpdateLoadStartTime@Isolate@v8@@QAEXXZ -; public: void __thiscall v8::internal::WebSnapshotDeserializer::UpdatePointers(void) -?UpdatePointers@WebSnapshotDeserializer@internal@v8@@QAEXXZ -; public: static void __cdecl v8::internal::WebSnapshotDeserializer::UpdatePointersCallback(class v8::Isolate *,enum v8::GCType,enum v8::GCCallbackFlags,void *) -?UpdatePointersCallback@WebSnapshotDeserializer@internal@v8@@SAXPAVIsolate@3@W4GCType@3@W4GCCallbackFlags@3@PAX@Z -; public: void __thiscall v8::Context::UseDefaultSecurityToken(void) -?UseDefaultSecurityToken@Context@v8@@QAEXXZ -; public: static void __cdecl v8::CpuProfiler::UseDetailedSourcePositionsForProfiling(class v8::Isolate *) -?UseDetailedSourcePositionsForProfiling@CpuProfiler@v8@@SAXPAVIsolate@2@@Z -; public: int __thiscall v8::String::Utf8Length(class v8::Isolate *)const -?Utf8Length@String@v8@@QBEHPAVIsolate@2@@Z ; has WINAPI (@4) -; public: void __thiscall v8::FastApiTypedArrayBase::ValidateIndex(unsigned int)const -?ValidateIndex@FastApiTypedArrayBase@v8@@QBEXI@Z ; has WINAPI (@4) -; public: bool __thiscall v8::Boolean::Value(void)const -?Value@Boolean@v8@@QBE_NXZ -; public: void *__thiscall v8::External::Value(void)const -?Value@External@v8@@QBEPAXXZ -; public: int __thiscall v8::Int32::Value(void)const -?Value@Int32@v8@@QBEHXZ -; public: __int64 __thiscall v8::Integer::Value(void)const -?Value@Integer@v8@@QBE_JXZ -; public: double __thiscall v8::Number::Value(void)const -?Value@Number@v8@@QBENXZ -; public: unsigned int __thiscall v8::Uint32::Value(void)const -?Value@Uint32@v8@@QBEIXZ -; public: class v8:: __thiscall v8::BigIntObject::ValueOf(void)const -?ValueOf@BigIntObject@v8@@QBE?AV?$Local@VBigInt@v8@@@2@XZ ; has WINAPI (@4) -; public: bool __thiscall v8::BooleanObject::ValueOf(void)const -?ValueOf@BooleanObject@v8@@QBE_NXZ -; public: double __thiscall v8::Date::ValueOf(void)const -?ValueOf@Date@v8@@QBENXZ -; public: double __thiscall v8::NumberObject::ValueOf(void)const -?ValueOf@NumberObject@v8@@QBENXZ -; public: class v8:: __thiscall v8::StringObject::ValueOf(void)const -?ValueOf@StringObject@v8@@QBE?AV?$Local@VString@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::SymbolObject::ValueOf(void)const -?ValueOf@SymbolObject@v8@@QBE?AV?$Local@VSymbol@v8@@@2@XZ ; has WINAPI (@4) -; private: void __thiscall v8::String::VerifyExternalStringResource(class v8::String::ExternalStringResource *)const -?VerifyExternalStringResource@String@v8@@ABEXPAVExternalStringResource@12@@Z ; has WINAPI (@4) -; private: void __thiscall v8::String::VerifyExternalStringResourceBase(class v8::String::ExternalStringResourceBase *,enum v8::String::Encoding)const -?VerifyExternalStringResourceBase@String@v8@@ABEXPAVExternalStringResourceBase@12@W4Encoding@12@@Z ; has WINAPI (@8) -; private: void __thiscall v8::ScriptOrigin::VerifyHostDefinedOptions(void)const -?VerifyHostDefinedOptions@ScriptOrigin@v8@@ABEXXZ -; protected: virtual void __thiscall cppgc::Visitor::Visit(void const *,struct cppgc::TraceDescriptor) -?Visit@Visitor@cppgc@@MAEXPBXUTraceDescriptor@2@@Z ; has WINAPI (@12) -; protected: virtual void __thiscall cppgc::Visitor::VisitEphemeron(void const *,void const *,struct cppgc::TraceDescriptor) -?VisitEphemeron@Visitor@cppgc@@MAEXPBX0UTraceDescriptor@2@@Z ; has WINAPI (@16) -; public: void __thiscall v8::Isolate::VisitExternalResources(class v8::ExternalResourceVisitor *) -?VisitExternalResources@Isolate@v8@@QAEXPAVExternalResourceVisitor@2@@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8::ExternalResourceVisitor::VisitExternalString(class v8::) -?VisitExternalString@ExternalResourceVisitor@v8@@UAEXV?$Local@VString@v8@@@2@@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8::PersistentHandleVisitor::VisitPersistentHandle(class v8::> *,unsigned short) -?VisitPersistentHandle@PersistentHandleVisitor@v8@@UAEXPAV?$Persistent@VValue@v8@@V?$NonCopyablePersistentTraits@VValue@v8@@@2@@2@G@Z ; has WINAPI (@8) -; protected: virtual void __thiscall cppgc::internal::RootVisitor::VisitRoot(void const *,struct cppgc::TraceDescriptor,class cppgc::SourceLocation const &) -?VisitRoot@RootVisitor@internal@cppgc@@MAEXPBXUTraceDescriptor@3@ABVSourceLocation@3@@Z ; has WINAPI (@16) -; public: virtual void __thiscall v8::EmbedderHeapTracer::TracedGlobalHandleVisitor::VisitTracedReference(class v8:: const &) -?VisitTracedReference@TracedGlobalHandleVisitor@EmbedderHeapTracer@v8@@UAEXABV?$TracedReference@VValue@v8@@@3@@Z ; has WINAPI (@4) -; protected: virtual void __thiscall cppgc::Visitor::VisitWeak(void const *,struct cppgc::TraceDescriptor,void(__cdecl *)(class cppgc::LivenessBroker const &,void const *),void const *) -?VisitWeak@Visitor@cppgc@@MAEXPBXUTraceDescriptor@2@P6AXABVLivenessBroker@2@0@Z0@Z ; has WINAPI (@20) -; protected: virtual void __thiscall cppgc::Visitor::VisitWeakContainer(void const *,struct cppgc::TraceDescriptor,struct cppgc::TraceDescriptor,void(__cdecl *)(class cppgc::LivenessBroker const &,void const *),void const *) -?VisitWeakContainer@Visitor@cppgc@@MAEXPBXUTraceDescriptor@2@1P6AXABVLivenessBroker@2@0@Z0@Z ; has WINAPI (@28) -; protected: virtual void __thiscall cppgc::internal::RootVisitor::VisitWeakRoot(void const *,struct cppgc::TraceDescriptor,void(__cdecl *)(class cppgc::LivenessBroker const &,void const *),void const *,class cppgc::SourceLocation const &) -?VisitWeakRoot@RootVisitor@internal@cppgc@@MAEXPBXUTraceDescriptor@3@P6AXABVLivenessBroker@3@0@Z0ABVSourceLocation@3@@Z ; has WINAPI (@24) -; public: void __thiscall v8::Isolate::AtomicsWaitWakeHandle::Wake(void) -?Wake@AtomicsWaitWakeHandle@Isolate@v8@@QAEXXZ -; public: static class v8:: __cdecl v8::Exception::WasmCompileError(class v8::) -?WasmCompileError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Exception::WasmLinkError(class v8::) -?WasmLinkError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; public: static class v8:: __cdecl v8::Exception::WasmRuntimeError(class v8::) -?WasmRuntimeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -; class v8:: __cdecl node::WinapiErrnoException(class v8::Isolate *,int,char const *,char const *,char const *) -?WinapiErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PAVIsolate@3@HPBD11@Z -; public: int __thiscall v8::BigInt::WordCount(void)const -?WordCount@BigInt@v8@@QBEHXZ -; public: int __thiscall v8::String::Write(class v8::Isolate *,unsigned short *,int,int,int)const -?Write@String@v8@@QBEHPAVIsolate@2@PAGHHH@Z ; has WINAPI (@20) -; public: void __thiscall v8::ValueSerializer::WriteDouble(double) -?WriteDouble@ValueSerializer@v8@@QAEXN@Z ; has WINAPI (@8) -; public: void __thiscall v8::ValueSerializer::WriteHeader(void) -?WriteHeader@ValueSerializer@v8@@QAEXXZ -; public: virtual enum v8::OutputStream::WriteResult __thiscall v8::OutputStream::WriteHeapStatsChunk(struct v8::HeapStatsUpdate *,int) -?WriteHeapStatsChunk@OutputStream@v8@@UAE?AW4WriteResult@12@PAUHeapStatsUpdate@2@H@Z ; has WINAPI (@8) -; public: virtual class v8:: __thiscall v8::ValueSerializer::Delegate::WriteHostObject(class v8::Isolate *,class v8::) -?WriteHostObject@Delegate@ValueSerializer@v8@@UAE?AV?$Maybe@_N@3@PAVIsolate@3@V?$Local@VObject@v8@@@3@@Z ; has WINAPI (@12) -; private: void __thiscall v8::internal::WebSnapshotSerializer::WriteObjects(class v8::internal::ValueSerializer &,unsigned int,class v8::internal::ValueSerializer &,char const *) -?WriteObjects@WebSnapshotSerializer@internal@v8@@AAEXAAVValueSerializer@23@I0PBD@Z ; has WINAPI (@16) -; public: int __thiscall v8::String::WriteOneByte(class v8::Isolate *,unsigned char *,int,int,int)const -?WriteOneByte@String@v8@@QBEHPAVIsolate@2@PAEHHH@Z ; has WINAPI (@20) -; public: void __thiscall v8::ValueSerializer::WriteRawBytes(void const *,unsigned int) -?WriteRawBytes@ValueSerializer@v8@@QAEXPBXI@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::WriteSnapshot(unsigned char *&,unsigned int &) -?WriteSnapshot@WebSnapshotSerializer@internal@v8@@AAEXAAPAEAAI@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::WriteStringId(class v8::internal::,class v8::internal::ValueSerializer &) -?WriteStringId@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VString@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; private: void __thiscall v8::internal::WebSnapshotSerializer::WriteStringMaybeInPlace(class v8::internal::,class v8::internal::ValueSerializer &) -?WriteStringMaybeInPlace@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VString@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; public: void __thiscall v8::ValueSerializer::WriteUint32(unsigned int) -?WriteUint32@ValueSerializer@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::ValueSerializer::WriteUint64(unsigned __int64) -?WriteUint64@ValueSerializer@v8@@QAEX_K@Z ; has WINAPI (@8) -; public: int __thiscall v8::String::WriteUtf8(class v8::Isolate *,char *,int,int *,int)const -?WriteUtf8@String@v8@@QBEHPAVIsolate@2@PADHPAHH@Z ; has WINAPI (@20) -; public: class v8:: __thiscall v8::ValueSerializer::WriteValue(class v8::,class v8::) -?WriteValue@ValueSerializer@v8@@QAE?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z ; has WINAPI (@12) -; private: void __thiscall v8::internal::WebSnapshotSerializer::WriteValue(class v8::internal::,class v8::internal::ValueSerializer &) -?WriteValue@WebSnapshotSerializer@internal@v8@@AAEXV?$Handle@VObject@internal@v8@@@23@AAVValueSerializer@23@@Z ; has WINAPI (@8) -; char const *const v8_inspector::protocol::Debugger::API::Paused::ReasonEnum::XHR -?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PBDB DATA -; private: class std::Cr:: &__thiscall std::Cr::>::__alloc(void) -?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEAAV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ -; private: class std::Cr:: const &__thiscall std::Cr::>::__alloc(void)const -?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEABV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ -; private: class std::Cr:: &__thiscall std::Cr::>::__alloc(void) -?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEAAV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ -; private: class std::Cr:: const &__thiscall std::Cr::>::__alloc(void)const -?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEABV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ -; private: void __thiscall std::Cr::>::__annotate_contiguous_container(void const *,void const *,void const *,void const *)const -?__annotate_contiguous_container@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXPBX000@Z ; has WINAPI (@16) -; private: void __thiscall std::Cr::>::__annotate_contiguous_container(void const *,void const *,void const *,void const *)const -?__annotate_contiguous_container@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXPBX000@Z ; has WINAPI (@16) -; private: void __thiscall std::Cr::>::__annotate_delete(void)const -?__annotate_delete@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXXZ -; private: void __thiscall std::Cr::>::__annotate_delete(void)const -?__annotate_delete@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXXZ -; private: void __thiscall std::Cr::>::__annotate_increase(unsigned int)const -?__annotate_increase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__annotate_increase(unsigned int)const -?__annotate_increase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__annotate_new(unsigned int)const -?__annotate_new@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__annotate_new(unsigned int)const -?__annotate_new@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__annotate_shrink(unsigned int)const -?__annotate_shrink@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__annotate_shrink(unsigned int)const -?__annotate_shrink@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__append(unsigned int) -?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__append(unsigned int,struct v8::CpuProfileDeoptFrame const &) -?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXIABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__append(unsigned int) -?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__append(unsigned int,struct v8::CpuProfileDeoptInfo const &) -?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXIABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__base_destruct_at_end(struct v8::CpuProfileDeoptFrame *) -?__base_destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__base_destruct_at_end(struct v8::CpuProfileDeoptInfo *) -?__base_destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__clear(void) -?__clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXXZ -; private: void __thiscall std::Cr::>::__clear(void) -?__clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXXZ -; private: void __thiscall std::Cr::>::__construct_at_end(unsigned int) -?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__construct_at_end(unsigned int,struct v8::CpuProfileDeoptFrame const &) -?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXIABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__construct_at_end(unsigned int) -?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__construct_at_end(unsigned int,struct v8::CpuProfileDeoptInfo const &) -?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXIABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__copy_assign_alloc(class std::Cr::> const &) -?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXABV123@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__copy_assign_alloc(class std::Cr::> const &,struct std::Cr::) -?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXABV123@U?$integral_constant@_N$00@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__copy_assign_alloc(class std::Cr::> const &,struct std::Cr::) -?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXABV123@U?$integral_constant@_N$0A@@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__copy_assign_alloc(class std::Cr::> const &) -?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXABV123@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__copy_assign_alloc(class std::Cr::> const &,struct std::Cr::) -?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXABV123@U?$integral_constant@_N$00@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__copy_assign_alloc(class std::Cr::> const &,struct std::Cr::) -?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXABV123@U?$integral_constant@_N$0A@@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__destruct_at_end(struct v8::CpuProfileDeoptFrame *) -?__destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__destruct_at_end(struct v8::CpuProfileDeoptInfo *) -?__destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@4) -; private: struct v8::CpuProfileDeoptFrame *&__thiscall std::Cr::>::__end_cap(void) -?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEAAPAUCpuProfileDeoptFrame@v8@@XZ -; private: struct v8::CpuProfileDeoptFrame *const &__thiscall std::Cr::>::__end_cap(void)const -?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEABQAUCpuProfileDeoptFrame@v8@@XZ -; private: struct v8::CpuProfileDeoptInfo *&__thiscall std::Cr::>::__end_cap(void) -?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEAAPAUCpuProfileDeoptInfo@v8@@XZ -; private: struct v8::CpuProfileDeoptInfo *const &__thiscall std::Cr::>::__end_cap(void)const -?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEABQAUCpuProfileDeoptInfo@v8@@XZ -; private: void __thiscall std::Cr::>::__invalidate_iterators_past(struct v8::CpuProfileDeoptFrame *) -?__invalidate_iterators_past@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__invalidate_iterators_past(struct v8::CpuProfileDeoptInfo *) -?__invalidate_iterators_past@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@4) -; public: bool __thiscall std::Cr::>::__invariants(void)const -?__invariants@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE_NXZ -; public: bool __thiscall std::Cr::>::__invariants(void)const -?__invariants@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE_NXZ -; private: void __thiscall std::Cr::>::__move_assign(class std::Cr::> &,struct std::Cr::) -?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$00@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign(class std::Cr::> &,struct std::Cr::) -?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$0A@@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign(class std::Cr::> &,struct std::Cr::) -?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$00@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign(class std::Cr::> &,struct std::Cr::) -?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$0A@@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign_alloc(class std::Cr::> &) -?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__move_assign_alloc(class std::Cr::> &,struct std::Cr::) -?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$00@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign_alloc(class std::Cr::> &,struct std::Cr::) -?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$0A@@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign_alloc(class std::Cr::> &) -?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__move_assign_alloc(class std::Cr::> &,struct std::Cr::) -?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$00@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_assign_alloc(class std::Cr::> &,struct std::Cr::) -?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXAAV123@U?$integral_constant@_N$0A@@23@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__move_range(struct v8::CpuProfileDeoptFrame *,struct v8::CpuProfileDeoptFrame *,struct v8::CpuProfileDeoptFrame *) -?__move_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptFrame@v8@@00@Z ; has WINAPI (@12) -; private: void __thiscall std::Cr::>::__move_range(struct v8::CpuProfileDeoptInfo *,struct v8::CpuProfileDeoptInfo *,struct v8::CpuProfileDeoptInfo *) -?__move_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXPAUCpuProfileDeoptInfo@v8@@00@Z ; has WINAPI (@12) -; private: unsigned int __thiscall std::Cr::>::__recommend(unsigned int)const -?__recommend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEII@Z ; has WINAPI (@4) -; private: unsigned int __thiscall std::Cr::>::__recommend(unsigned int)const -?__recommend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEII@Z ; has WINAPI (@4) -; private: struct v8::CpuProfileDeoptFrame *__thiscall std::Cr::>::__swap_out_circular_buffer(struct std::Cr:: &> &,struct v8::CpuProfileDeoptFrame *) -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEPAUCpuProfileDeoptFrame@v8@@AAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AAV?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@23@PAU45@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__swap_out_circular_buffer(struct std::Cr:: &> &) -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXAAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AAV?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@23@@Z ; has WINAPI (@4) -; private: struct v8::CpuProfileDeoptInfo *__thiscall std::Cr::>::__swap_out_circular_buffer(struct std::Cr:: &> &,struct v8::CpuProfileDeoptInfo *) -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEPAUCpuProfileDeoptInfo@v8@@AAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AAV?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@23@PAU45@@Z ; has WINAPI (@8) -; private: void __thiscall std::Cr::>::__swap_out_circular_buffer(struct std::Cr:: &> &) -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXAAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AAV?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@23@@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__throw_length_error(void)const -?__throw_length_error@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXXZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: void __thiscall std::Cr::>::__throw_length_error(void)const -?__throw_length_error@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXXZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: void __thiscall std::Cr::>::__throw_out_of_range(void)const -?__throw_out_of_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@ABEXXZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: void __thiscall std::Cr::>::__throw_out_of_range(void)const -?__throw_out_of_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@ABEXXZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; private: void __thiscall std::Cr::>::__vallocate(unsigned int) -?__vallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__vallocate(unsigned int) -?__vallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXI@Z ; has WINAPI (@4) -; private: void __thiscall std::Cr::>::__vdeallocate(void) -?__vdeallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AAEXXZ -; private: void __thiscall std::Cr::>::__vdeallocate(void) -?__vdeallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AAEXXZ -; public: class v8::PageAllocator &__thiscall cppgc::internal::GCInfoTable::allocator(void)const -?allocator@GCInfoTable@internal@cppgc@@QBEAAVPageAllocator@v8@@XZ -; public: class std::Cr:: __thiscall node::CommonEnvironmentSetup::array_buffer_allocator(void)const -?array_buffer_allocator@CommonEnvironmentSetup@node@@QBE?AV?$shared_ptr@VArrayBufferAllocator@node@@@Cr@std@@XZ ; has WINAPI (@4) -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::array_buffer_count(void)const -?array_buffer_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::array_count(void)const -?array_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::array_count(void)const -?array_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: void __thiscall std::Cr::>::assign(unsigned int,struct v8::CpuProfileDeoptFrame const &) -?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXIABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@8) -; public: void __thiscall std::Cr::>::assign(class std::) -?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXV?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z ; has WINAPI (@8) -; public: void __thiscall std::Cr::>::assign(unsigned int,struct v8::CpuProfileDeoptInfo const &) -?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXIABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@8) -; public: void __thiscall std::Cr::>::assign(class std::) -?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXV?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z ; has WINAPI (@8) -; public: struct v8::CpuProfileDeoptFrame &__thiscall std::Cr::>::at(unsigned int) -?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptFrame@v8@@I@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptFrame const &__thiscall std::Cr::>::at(unsigned int)const -?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptFrame@v8@@I@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptInfo &__thiscall std::Cr::>::at(unsigned int) -?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptInfo@v8@@I@Z ; has WINAPI (@4) -; public: struct v8::CpuProfileDeoptInfo const &__thiscall std::Cr::>::at(unsigned int)const -?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptInfo@v8@@I@Z ; has WINAPI (@4) -; public: bool __thiscall v8::Extension::auto_enable(void) -?auto_enable@Extension@v8@@QAE_NXZ -; public: struct v8::CpuProfileDeoptFrame &__thiscall std::Cr::>::back(void) -?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptFrame@v8@@XZ -; public: struct v8::CpuProfileDeoptFrame const &__thiscall std::Cr::>::back(void)const -?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptFrame@v8@@XZ -; public: struct v8::CpuProfileDeoptInfo &__thiscall std::Cr::>::back(void) -?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptInfo@v8@@XZ -; public: struct v8::CpuProfileDeoptInfo const &__thiscall std::Cr::>::back(void)const -?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptInfo@v8@@XZ -; public: class std::Cr:: __thiscall std::Cr::>::begin(void) -?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::begin(void)const -?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::begin(void) -?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::begin(void)const -?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: char const **__thiscall v8::ExtensionConfiguration::begin(void)const -?begin@ExtensionConfiguration@v8@@QBEPAPBDXZ -; public: virtual void __thiscall v8_inspector::V8InspectorClient::beginEnsureAllContextsInGroup(int) -?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::beginUserGesture(void) -?beginUserGesture@V8InspectorClient@v8_inspector@@UAEXXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::bigint_count(void)const -?bigint_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; private: static int v8::internal::Version::build_ -?build_@Version@internal@v8@@0HA DATA -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::builtin_object_count(void)const -?builtin_object_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::builtin_object_count(void)const -?builtin_object_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::HeapCodeStatistics::bytecode_and_metadata_size(void) -?bytecode_and_metadata_size@HeapCodeStatistics@v8@@QAEIXZ -; public: char const *__thiscall v8::String::ExternalOneByteStringResource::cached_data(void)const -?cached_data@ExternalOneByteStringResource@String@v8@@QBEPBDXZ -; public: unsigned short const *__thiscall v8::String::ExternalStringResource::cached_data(void)const -?cached_data@ExternalStringResource@String@v8@@QBEPBGXZ -; public: static bool __cdecl v8_inspector::V8InspectorSession::canDispatchMethod(class v8_inspector::StringView) -?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NVStringView@2@@Z -; public: virtual bool __thiscall v8_inspector::V8InspectorClient::canExecuteScripts(int) -?canExecuteScripts@V8InspectorClient@v8_inspector@@UAE_NH@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::cancelTimer(void *) -?cancelTimer@V8InspectorClient@v8_inspector@@UAEXPAX@Z ; has WINAPI (@4) -; private: static bool v8::internal::Version::candidate_ -?candidate_@Version@internal@v8@@0_NA DATA -; public: unsigned int __thiscall std::Cr::>::capacity(void)const -?capacity@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEIXZ -; public: unsigned int __thiscall std::Cr::>::capacity(void)const -?capacity@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEIXZ -; public: class std::Cr:: __thiscall std::Cr::>::cbegin(void)const -?cbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::cbegin(void)const -?cbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::cend(void)const -?cend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::cend(void)const -?cend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: unsigned short const *__thiscall v8_inspector::StringView::characters16(void)const -?characters16@StringView@v8_inspector@@QBEPBGXZ -; public: unsigned char const *__thiscall v8_inspector::StringView::characters8(void)const -?characters8@StringView@v8_inspector@@QBEPBEXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::class_count(void)const -?class_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::class_count(void)const -?class_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: void __thiscall std::Cr::>::clear(void) -?clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXXZ -; public: void __thiscall std::Cr::>::clear(void) -?clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXXZ -; public: unsigned int __thiscall v8::HeapCodeStatistics::code_and_metadata_size(void) -?code_and_metadata_size@HeapCodeStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::ResourceConstraints::code_range_size_in_bytes(void)const -?code_range_size_in_bytes@ResourceConstraints@v8@@QBEIXZ -; public: bool __thiscall v8::PropertyDescriptor::configurable(void)const -?configurable@PropertyDescriptor@v8@@QBE_NXZ -; public: virtual class std::Cr::> __thiscall v8_inspector::V8Inspector::connect(int,class v8_inspector::V8Inspector::Channel *,class v8_inspector::StringView,enum v8_inspector::V8Inspector::ClientTrustLevel) -?connect@V8Inspector@v8_inspector@@UAE?AV?$unique_ptr@VV8InspectorSession@v8_inspector@@U?$default_delete@VV8InspectorSession@v8_inspector@@@Cr@std@@@Cr@std@@HPAVChannel@12@VStringView@2@W4ClientTrustLevel@12@@Z ; has WINAPI (@28) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::consoleAPIMessage(int,enum v8::Isolate::MessageErrorLevel,class v8_inspector::StringView const &,class v8_inspector::StringView const &,unsigned int,unsigned int,class v8_inspector::V8StackTrace *) -?consoleAPIMessage@V8InspectorClient@v8_inspector@@UAEXHW4MessageErrorLevel@Isolate@v8@@ABVStringView@2@1IIPAVV8StackTrace@2@@Z ; has WINAPI (@28) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::consoleClear(int) -?consoleClear@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::consoleTime(class v8_inspector::StringView const &) -?consoleTime@V8InspectorClient@v8_inspector@@UAEXABVStringView@2@@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::consoleTimeEnd(class v8_inspector::StringView const &) -?consoleTimeEnd@V8InspectorClient@v8_inspector@@UAEXABVStringView@2@@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::consoleTimeStamp(class v8_inspector::StringView const &) -?consoleTimeStamp@V8InspectorClient@v8_inspector@@UAEXABVStringView@2@@Z ; has WINAPI (@4) -; public: class v8:: __thiscall node::CommonEnvironmentSetup::context(void)const -?context@CommonEnvironmentSetup@node@@QBE?AV?$Local@VContext@v8@@@v8@@XZ ; has WINAPI (@4) -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::context_count(void)const -?context_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::context_count(void)const -?context_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::HeapCodeStatistics::cpu_profiler_metadata_size(void) -?cpu_profiler_metadata_size@HeapCodeStatistics@v8@@QAEIXZ -; public: class std::Cr::> __thiscall std::Cr::>::crbegin(void)const -?crbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::crbegin(void)const -?crbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: static class std::Cr::> __cdecl v8_inspector::StringBuffer::create(class v8_inspector::StringView) -?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@VStringView@2@@Z -; public: static class std::Cr::> __cdecl v8_inspector::V8Inspector::create(class v8::Isolate *,class v8_inspector::V8InspectorClient *) -?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@Cr@std@@@Cr@std@@PAVIsolate@v8@@PAVV8InspectorClient@2@@Z -; public: class std::Cr::> __thiscall std::Cr::>::crend(void)const -?crend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::crend(void)const -?crend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: virtual double __thiscall v8_inspector::V8InspectorClient::currentTimeMS(void) -?currentTimeMS@V8InspectorClient@v8_inspector@@UAENXZ -; public: char const *__thiscall v8::::data(void)const -?data@?$MemorySpan@$$CBD@v8@@QBEPBDXZ -; public: unsigned char const *__thiscall v8::::data(void)const -?data@?$MemorySpan@$$CBE@v8@@QBEPBEXZ -; public: class v8::CFunction const *__thiscall v8::::data(void)const -?data@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QBEPBVCFunction@2@XZ -; public: struct v8::CpuProfileDeoptFrame *__thiscall std::Cr::>::data(void) -?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEPAUCpuProfileDeoptFrame@v8@@XZ -; public: struct v8::CpuProfileDeoptFrame const *__thiscall std::Cr::>::data(void)const -?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEPBUCpuProfileDeoptFrame@v8@@XZ -; public: struct v8::CpuProfileDeoptInfo *__thiscall std::Cr::>::data(void) -?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEPAUCpuProfileDeoptInfo@v8@@XZ -; public: struct v8::CpuProfileDeoptInfo const *__thiscall std::Cr::>::data(void)const -?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEPBUCpuProfileDeoptInfo@v8@@XZ -; public: unsigned char const *__thiscall v8_inspector::protocol::Binary::data(void)const -?data@Binary@protocol@v8_inspector@@QBEPBEXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::data_view_count(void)const -?data_view_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: char const **__thiscall v8::Extension::dependencies(void)const -?dependencies@Extension@v8@@QBEPAPBDXZ -; public: int __thiscall v8::Extension::dependency_count(void)const -?dependency_count@Extension@v8@@QBEHXZ -; public: virtual class std::Cr::> __thiscall v8_inspector::V8InspectorClient::descriptionForValueSubtype(class v8::,class v8::) -?descriptionForValueSubtype@V8InspectorClient@v8_inspector@@UAE?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@V?$Local@VContext@v8@@@v8@@V?$Local@VValue@v8@@@7@@Z ; has WINAPI (@12) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::dispatchError(class v8::,class v8::,class v8::) -?dispatchError@V8InspectorClient@v8_inspector@@UAEXV?$Local@VContext@v8@@@v8@@V?$Local@VMessage@v8@@@4@V?$Local@VValue@v8@@@4@@Z ; has WINAPI (@12) -; public: unsigned int __thiscall v8::HeapStatistics::does_zap_garbage(void) -?does_zap_garbage@HeapStatistics@v8@@QAEIXZ -; private: static char const *const v8::internal::Version::embedder_ -?embedder_@Version@internal@v8@@0PBDB DATA -; public: bool __thiscall std::Cr::>::empty(void)const -?empty@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE_NXZ -; public: bool __thiscall std::Cr::>::empty(void)const -?empty@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE_NXZ -; public: class std::Cr:: __thiscall std::Cr::>::end(void) -?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::end(void)const -?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::end(void) -?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::end(void)const -?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: char const **__thiscall v8::ExtensionConfiguration::end(void)const -?end@ExtensionConfiguration@v8@@QBEPAPBDXZ -; public: virtual void __thiscall v8_inspector::V8InspectorClient::endEnsureAllContextsInGroup(int) -?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::endUserGesture(void) -?endUserGesture@V8InspectorClient@v8_inspector@@UAEXXZ -; public: virtual class v8:: __thiscall v8_inspector::V8InspectorClient::ensureDefaultContextInGroup(int) -?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UAE?AV?$Local@VContext@v8@@@v8@@H@Z ; has WINAPI (@8) -; public: bool __thiscall v8::PropertyDescriptor::enumerable(void)const -?enumerable@PropertyDescriptor@v8@@QBE_NXZ -; public: class node::Environment *__thiscall node::CommonEnvironmentSetup::env(void)const -?env@CommonEnvironmentSetup@node@@QBEPAVEnvironment@2@XZ -; public: class std::Cr:: __thiscall std::Cr::>::erase(class std::Cr::,class std::Cr::) -?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@0@Z ; has WINAPI (@12) -; public: class std::Cr:: __thiscall std::Cr::>::erase(class std::Cr::) -?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@@Z ; has WINAPI (@8) -; public: class std::Cr:: __thiscall std::Cr::>::erase(class std::Cr::,class std::Cr::) -?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@0@Z ; has WINAPI (@12) -; public: class std::Cr:: __thiscall std::Cr::>::erase(class std::Cr::) -?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@@Z ; has WINAPI (@8) -; public: struct uv_loop_s *__thiscall node::CommonEnvironmentSetup::event_loop(void)const -?event_loop@CommonEnvironmentSetup@node@@QBEPAUuv_loop_s@@XZ -; public: static int __cdecl v8_inspector::V8ContextInfo::executionContextId(class v8::) -?executionContextId@V8ContextInfo@v8_inspector@@SAHV?$Local@VContext@v8@@@v8@@@Z -; public: unsigned int __thiscall v8::HeapStatistics::external_memory(void) -?external_memory@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::external_object_count(void)const -?external_object_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::HeapCodeStatistics::external_script_source_size(void) -?external_script_source_size@HeapCodeStatistics@v8@@QAEIXZ -; public: static class v8_inspector::protocol::Binary __cdecl v8_inspector::protocol::Binary::fromBase64(class v8_inspector::String16 const &,bool *) -?fromBase64@Binary@protocol@v8_inspector@@SA?AV123@ABVString16@3@PA_N@Z -; public: static class std::Cr::> __cdecl v8_inspector::protocol::Schema::API::Domain::fromBinary(unsigned char const *,unsigned int) -?fromBinary@Domain@API@Schema@protocol@v8_inspector@@SA?AV?$unique_ptr@VDomain@API@Schema@protocol@v8_inspector@@U?$default_delete@VDomain@API@Schema@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PBEI@Z -; public: static class std::Cr::> __cdecl v8_inspector::protocol::Runtime::API::RemoteObject::fromBinary(unsigned char const *,unsigned int) -?fromBinary@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PBEI@Z -; public: static class std::Cr::> __cdecl v8_inspector::protocol::Debugger::API::SearchMatch::fromBinary(unsigned char const *,unsigned int) -?fromBinary@SearchMatch@API@Debugger@protocol@v8_inspector@@SA?AV?$unique_ptr@VSearchMatch@API@Debugger@protocol@v8_inspector@@U?$default_delete@VSearchMatch@API@Debugger@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PBEI@Z -; public: static class std::Cr::> __cdecl v8_inspector::protocol::Runtime::API::StackTrace::fromBinary(unsigned char const *,unsigned int) -?fromBinary@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PBEI@Z -; public: static class std::Cr::> __cdecl v8_inspector::protocol::Runtime::API::StackTraceId::fromBinary(unsigned char const *,unsigned int) -?fromBinary@StackTraceId@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTraceId@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTraceId@API@Runtime@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PBEI@Z -; public: static class v8_inspector::protocol::Binary __cdecl v8_inspector::protocol::Binary::fromSpan(unsigned char const *,unsigned int) -?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@PBEI@Z -; public: static class v8_inspector::String16 __cdecl v8_inspector::String16::fromUTF16LE(unsigned short const *,unsigned int) -?fromUTF16LE@String16@v8_inspector@@SA?AV12@PBGI@Z -; public: static class v8_inspector::String16 __cdecl v8_inspector::String16::fromUTF8(char const *,unsigned int) -?fromUTF8@String16@v8_inspector@@SA?AV12@PBDI@Z -; public: struct v8::CpuProfileDeoptFrame &__thiscall std::Cr::>::front(void) -?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptFrame@v8@@XZ -; public: struct v8::CpuProfileDeoptFrame const &__thiscall std::Cr::>::front(void)const -?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptFrame@v8@@XZ -; public: struct v8::CpuProfileDeoptInfo &__thiscall std::Cr::>::front(void) -?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEAAUCpuProfileDeoptInfo@v8@@XZ -; public: struct v8::CpuProfileDeoptInfo const &__thiscall std::Cr::>::front(void)const -?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEABUCpuProfileDeoptInfo@v8@@XZ -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::function_count(void)const -?function_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::function_count(void)const -?function_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: virtual __int64 __thiscall v8_inspector::V8InspectorClient::generateUniqueId(void) -?generateUniqueId@V8InspectorClient@v8_inspector@@UAE_JXZ -; public: class v8:: __thiscall v8::PropertyDescriptor::get(void)const -?get@PropertyDescriptor@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::get_allocator(void)const -?get_allocator@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr:: __thiscall std::Cr::>::get_allocator(void)const -?get_allocator@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ ; has WINAPI (@4) -; public: double __thiscall node::AsyncResource::get_async_id(void)const -?get_async_id@AsyncResource@node@@QBENXZ -; struct node::node_module *__cdecl node::binding::get_linked_module(char const *) -?get_linked_module@binding@node@@YAPAUnode_module@2@PBD@Z -; public: struct v8::PropertyDescriptor::PrivateData *__thiscall v8::PropertyDescriptor::get_private(void)const -?get_private@PropertyDescriptor@v8@@QBEPAUPrivateData@12@XZ -; public: class v8:: __thiscall node::AsyncResource::get_resource(void) -?get_resource@AsyncResource@node@@QAE?AV?$Local@VObject@v8@@@v8@@XZ ; has WINAPI (@4) -; public: double __thiscall node::AsyncResource::get_trigger_async_id(void)const -?get_trigger_async_id@AsyncResource@node@@QBENXZ -; private: static class cppgc::internal::GCInfoTable *cppgc::internal::GlobalGCInfoTable::global_table_ -?global_table_@GlobalGCInfoTable@internal@cppgc@@0PAVGCInfoTable@23@A DATA -; public: bool __thiscall v8::PropertyDescriptor::has_configurable(void)const -?has_configurable@PropertyDescriptor@v8@@QBE_NXZ -; public: bool __thiscall v8::PropertyDescriptor::has_enumerable(void)const -?has_enumerable@PropertyDescriptor@v8@@QBE_NXZ -; private: bool __thiscall v8::CpuProfilingOptions::has_filter_context(void)const -?has_filter_context@CpuProfilingOptions@v8@@ABE_NXZ -; public: bool __thiscall v8::PropertyDescriptor::has_get(void)const -?has_get@PropertyDescriptor@v8@@QBE_NXZ -; public: bool __thiscall v8::PropertyDescriptor::has_set(void)const -?has_set@PropertyDescriptor@v8@@QBE_NXZ -; public: bool __thiscall v8::PropertyDescriptor::has_value(void)const -?has_value@PropertyDescriptor@v8@@QBE_NXZ -; public: bool __thiscall v8::PropertyDescriptor::has_writable(void)const -?has_writable@PropertyDescriptor@v8@@QBE_NXZ -; public: unsigned int __thiscall v8::HeapStatistics::heap_size_limit(void) -?heap_size_limit@HeapStatistics@v8@@QAEIXZ -; public: struct v8::internal::ScriptStreamingData *__thiscall v8::ScriptCompiler::StreamedSource::impl(void)const -?impl@StreamedSource@ScriptCompiler@v8@@QBEPAUScriptStreamingData@internal@3@XZ -; public: unsigned int __thiscall v8::ResourceConstraints::initial_old_generation_size_in_bytes(void)const -?initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QBEIXZ -; public: unsigned int __thiscall v8::ResourceConstraints::initial_young_generation_size_in_bytes(void)const -?initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QBEIXZ -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,,struct v8::CpuProfileDeoptFrame *const) -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@$$QAUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@12) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,struct v8::CpuProfileDeoptFrame const &) -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@ABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@12) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,unsigned int,struct v8::CpuProfileDeoptFrame const &) -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@IABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@16) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,class std::) -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@23@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z ; has WINAPI (@16) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,,struct v8::CpuProfileDeoptInfo *const) -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@$$QAUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@12) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,struct v8::CpuProfileDeoptInfo const &) -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@ABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@12) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,unsigned int,struct v8::CpuProfileDeoptInfo const &) -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@IABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@16) -; public: class std::Cr:: __thiscall std::Cr::>::insert(class std::Cr::,class std::) -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@23@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z ; has WINAPI (@16) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::installAdditionalCommandLineAPI(class v8::,class v8::) -?installAdditionalCommandLineAPI@V8InspectorClient@v8_inspector@@UAEXV?$Local@VContext@v8@@@v8@@V?$Local@VObject@v8@@@4@@Z ; has WINAPI (@8) -; public: bool __thiscall v8_inspector::StringView::is8Bit(void)const -?is8Bit@StringView@v8_inspector@@QBE_NXZ -; public: virtual bool __thiscall v8_inspector::V8InspectorClient::isInspectableHeapObject(class v8::) -?isInspectableHeapObject@V8InspectorClient@v8_inspector@@UAE_NV?$Local@VObject@v8@@@v8@@@Z ; has WINAPI (@4) -; public: bool __thiscall v8_inspector::V8DebuggerId::isValid(void)const -?isValid@V8DebuggerId@v8_inspector@@QBE_NXZ -; public: class v8::Isolate *__thiscall node::CommonEnvironmentSetup::isolate(void)const -?isolate@CommonEnvironmentSetup@node@@QBEPAVIsolate@v8@@XZ -; public: class v8::Isolate *__thiscall v8::EmbedderHeapTracer::isolate(void)const -?isolate@EmbedderHeapTracer@v8@@QBEPAVIsolate@2@XZ -; public: class node::IsolateData *__thiscall node::CommonEnvironmentSetup::isolate_data(void)const -?isolate_data@CommonEnvironmentSetup@node@@QBEPAVIsolateData@2@XZ -; public: static int const v8::ArrayBuffer::kEmbedderFieldCount -?kEmbedderFieldCount@ArrayBuffer@v8@@2HB DATA -; public: static int const v8::ArrayBufferView::kEmbedderFieldCount -?kEmbedderFieldCount@ArrayBufferView@v8@@2HB DATA -; public: static int const v8::Promise::kEmbedderFieldCount -?kEmbedderFieldCount@Promise@v8@@2HB DATA -; public: static int const v8::RegExp::kFlagCount -?kFlagCount@RegExp@v8@@2HB DATA -; public: static char const *const const cppgc::NameProvider::kHiddenName -?kHiddenName@NameProvider@cppgc@@2QBDB DATA -; public: static unsigned short const cppgc::internal::GCInfoTable::kInitialWantedLimit -?kInitialWantedLimit@GCInfoTable@internal@cppgc@@2GB DATA -; public: static int const v8::ArrayBuffer::kInternalFieldCount -?kInternalFieldCount@ArrayBuffer@v8@@2HB DATA -; public: static int const v8::ArrayBufferView::kInternalFieldCount -?kInternalFieldCount@ArrayBufferView@v8@@2HB DATA -; public: static int const v8::SharedArrayBuffer::kInternalFieldCount -?kInternalFieldCount@SharedArrayBuffer@v8@@2HB DATA -; public: static int const v8::Function::kLineOffsetNotFound -?kLineOffsetNotFound@Function@v8@@2HB DATA -; private: static unsigned int const v8::ResourceConstraints::kMB -?kMB@ResourceConstraints@v8@@0IB DATA -; public: static unsigned int const v8::internal::TickSample::kMaxFramesCount -?kMaxFramesCount@TickSample@internal@v8@@2IB DATA -; public: static unsigned int const v8::internal::TickSample::kMaxFramesCountLog2 -?kMaxFramesCountLog2@TickSample@internal@v8@@2IB DATA -; public: static unsigned short const cppgc::internal::GCInfoTable::kMaxIndex -?kMaxIndex@GCInfoTable@internal@cppgc@@2GB DATA -; public: static int const v8::String::kMaxLength -?kMaxLength@String@v8@@2HB DATA -; public: static unsigned int const v8::TypedArray::kMaxLength -?kMaxLength@TypedArray@v8@@2IB DATA -; public: static unsigned int const v8::Isolate::kMinCodePagesBufferSize -?kMinCodePagesBufferSize@Isolate@v8@@2IB DATA -; public: static unsigned short const cppgc::internal::GCInfoTable::kMinIndex -?kMinIndex@GCInfoTable@internal@cppgc@@2GB DATA -; public: static int const v8::Message::kNoColumnInfo -?kNoColumnInfo@Message@v8@@2HB DATA -; public: static int const v8::AllocationProfile::kNoColumnNumberInfo -?kNoColumnNumberInfo@AllocationProfile@v8@@2HB DATA -; public: static int const v8::CpuProfileNode::kNoColumnNumberInfo -?kNoColumnNumberInfo@CpuProfileNode@v8@@2HB DATA -; public: static int const v8::AllocationProfile::kNoLineNumberInfo -?kNoLineNumberInfo@AllocationProfile@v8@@2HB DATA -; public: static int const v8::CpuProfileNode::kNoLineNumberInfo -?kNoLineNumberInfo@CpuProfileNode@v8@@2HB DATA -; public: static int const v8::Message::kNoLineNumberInfo -?kNoLineNumberInfo@Message@v8@@2HB DATA -; public: static char const *const const cppgc::NameProvider::kNoNameDeducible -?kNoNameDeducible@NameProvider@cppgc@@2QBDB DATA -; public: static unsigned int const v8::CpuProfilingOptions::kNoSampleLimit -?kNoSampleLimit@CpuProfilingOptions@v8@@2IB DATA -; public: static int const v8::UnboundScript::kNoScriptId -?kNoScriptId@UnboundScript@v8@@2HB DATA -; public: static int const v8::Message::kNoScriptIdInfo -?kNoScriptIdInfo@Message@v8@@2HB DATA -; public: static int const v8::Message::kNoWasmFunctionIndexInfo -?kNoWasmFunctionIndexInfo@Message@v8@@2HB DATA -; public: static unsigned short const v8::HeapProfiler::kPersistentHandleNoClassId -?kPersistentHandleNoClassId@HeapProfiler@v8@@2GB DATA -; public: static unsigned int const v8::HeapProfiler::kUnknownObjectId -?kUnknownObjectId@HeapProfiler@v8@@2IB DATA -; public: unsigned int __thiscall v8::FastApiTypedArrayBase::length(void)const -?length@FastApiTypedArrayBase@v8@@QBEIXZ -; public: unsigned int __thiscall v8_inspector::StringView::length(void)const -?length@StringView@v8_inspector@@QBEIXZ -; public: int __thiscall v8::String::Utf8Value::length(void)const -?length@Utf8Value@String@v8@@QBEHXZ -; public: int __thiscall v8::String::Value::length(void)const -?length@Value@String@v8@@QBEHXZ -; private: static int v8::internal::Version::major_ -?major_@Version@internal@v8@@0HA DATA -; public: unsigned int __thiscall v8::HeapStatistics::malloced_memory(void) -?malloced_memory@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::map_count(void)const -?map_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::map_count(void)const -?map_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: virtual void __thiscall v8_inspector::V8InspectorClient::maxAsyncCallStackDepthChanged(int) -?maxAsyncCallStackDepthChanged@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::ResourceConstraints::max_old_generation_size_in_bytes(void)const -?max_old_generation_size_in_bytes@ResourceConstraints@v8@@QBEIXZ -; public: unsigned int __thiscall v8::CpuProfilingOptions::max_samples(void)const -?max_samples@CpuProfilingOptions@v8@@QBEIXZ -; public: unsigned int __thiscall std::Cr::>::max_size(void)const -?max_size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEIXZ -; public: unsigned int __thiscall std::Cr::>::max_size(void)const -?max_size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEIXZ -; public: unsigned int __thiscall v8::ResourceConstraints::max_young_generation_size_in_bytes(void)const -?max_young_generation_size_in_bytes@ResourceConstraints@v8@@QBEIXZ -; public: virtual class v8:: __thiscall v8_inspector::V8InspectorClient::memoryInfo(class v8::Isolate *,class v8::) -?memoryInfo@V8InspectorClient@v8_inspector@@UAE?AV?$MaybeLocal@VValue@v8@@@v8@@PAVIsolate@4@V?$Local@VContext@v8@@@4@@Z ; has WINAPI (@12) -; private: static int v8::internal::Version::minor_ -?minor_@Version@internal@v8@@0HA DATA -; public: enum v8::CpuProfilingMode __thiscall v8::CpuProfilingOptions::mode(void)const -?mode@CpuProfilingOptions@v8@@QBE?AW4CpuProfilingMode@2@XZ -; public: virtual void __thiscall v8_inspector::V8InspectorClient::muteMetrics(int) -?muteMetrics@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: char const *__thiscall v8::Extension::name(void)const -?name@Extension@v8@@QBEPBDXZ -; public: unsigned int __thiscall v8::HeapStatistics::number_of_detached_contexts(void) -?number_of_detached_contexts@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapStatistics::number_of_native_contexts(void) -?number_of_native_contexts@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapObjectStatistics::object_count(void) -?object_count@HeapObjectStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::object_count(void)const -?object_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::object_count(void)const -?object_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::HeapObjectStatistics::object_size(void) -?object_size@HeapObjectStatistics@v8@@QAEIXZ -; public: char const *__thiscall v8::HeapObjectStatistics::object_sub_type(void) -?object_sub_type@HeapObjectStatistics@v8@@QAEPBDXZ -; public: char const *__thiscall v8::HeapObjectStatistics::object_type(void) -?object_type@HeapObjectStatistics@v8@@QAEPBDXZ -; public: struct std::Cr::<__int64,__int64> __thiscall v8_inspector::V8DebuggerId::pair(void)const -?pair@V8DebuggerId@v8_inspector@@QBE?AU?$pair@_J_J@Cr@std@@XZ ; has WINAPI (@4) -; private: static int v8::internal::Version::patch_ -?patch_@Version@internal@v8@@0HA DATA -; public: unsigned int __thiscall v8::HeapStatistics::peak_malloced_memory(void) -?peak_malloced_memory@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapSpaceStatistics::physical_space_size(void) -?physical_space_size@HeapSpaceStatistics@v8@@QAEIXZ -; public: void __thiscall std::Cr::>::pop_back(void) -?pop_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXXZ -; public: void __thiscall std::Cr::>::pop_back(void) -?pop_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXXZ -; public: void __thiscall v8::internal::TickSample::print(void)const -?print@TickSample@internal@v8@@QBEXXZ ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: void __thiscall std::Cr::>::push_back(,struct v8::CpuProfileDeoptFrame *const) -?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEX$$QAUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::push_back(struct v8::CpuProfileDeoptFrame const &) -?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::push_back(,struct v8::CpuProfileDeoptInfo *const) -?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEX$$QAUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::push_back(struct v8::CpuProfileDeoptInfo const &) -?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::quitMessageLoopOnPause(void) -?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UAEXXZ -; private: void *__thiscall v8::CpuProfilingOptions::raw_filter_context(void)const -?raw_filter_context@CpuProfilingOptions@v8@@ABEPAXXZ -; public: class std::Cr::> __thiscall std::Cr::>::rbegin(void) -?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$reverse_iterator@V?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::rbegin(void)const -?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::rbegin(void) -?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$reverse_iterator@V?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::rbegin(void)const -?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: unsigned int __thiscall v8::SharedMemoryStatistics::read_only_space_physical_size(void) -?read_only_space_physical_size@SharedMemoryStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::SharedMemoryStatistics::read_only_space_size(void) -?read_only_space_size@SharedMemoryStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::SharedMemoryStatistics::read_only_space_used_size(void) -?read_only_space_used_size@SharedMemoryStatistics@v8@@QAEIXZ -; public: class std::Cr::> __thiscall std::Cr::>::rend(void) -?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAE?AV?$reverse_iterator@V?$__wrap_iter@PAUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::rend(void)const -?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::rend(void) -?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAE?AV?$reverse_iterator@V?$__wrap_iter@PAUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall std::Cr::>::rend(void)const -?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBE?AV?$reverse_iterator@V?$__wrap_iter@PBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::reserve(unsigned int) -?reserve@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::reserve(unsigned int) -?reserve@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::resize(unsigned int) -?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::resize(unsigned int,struct v8::CpuProfileDeoptFrame const &) -?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXIABUCpuProfileDeoptFrame@v8@@@Z ; has WINAPI (@8) -; public: void __thiscall std::Cr::>::resize(unsigned int) -?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::resize(unsigned int,struct v8::CpuProfileDeoptInfo const &) -?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXIABUCpuProfileDeoptInfo@v8@@@Z ; has WINAPI (@8) -; public: virtual class std::Cr::> __thiscall v8_inspector::V8InspectorClient::resourceNameToUrl(class v8_inspector::StringView const &) -?resourceNameToUrl@V8InspectorClient@v8_inspector@@UAE?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@ABVStringView@2@@Z ; has WINAPI (@8) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::runIfWaitingForDebugger(int) -?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: virtual void __thiscall v8_inspector::V8InspectorClient::runMessageLoopOnInstrumentationPause(int) -?runMessageLoopOnInstrumentationPause@V8InspectorClient@v8_inspector@@UAEXH@Z ; Check!!! Couldn't determine function argument count. Function doesn't return. -; public: virtual void __thiscall v8_inspector::V8InspectorClient::runMessageLoopOnPause(int) -?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: int __thiscall v8::CpuProfilingOptions::sampling_interval_us(void)const -?sampling_interval_us@CpuProfilingOptions@v8@@QBEHXZ -; public: virtual class std::Cr::> __thiscall v8_inspector::V8InspectorClient::serializeToWebDriverValue(class v8::,int) -?serializeToWebDriverValue@V8InspectorClient@v8_inspector@@UAE?AV?$unique_ptr@VWebDriverValue@v8_inspector@@U?$default_delete@VWebDriverValue@v8_inspector@@@Cr@std@@@Cr@std@@V?$Local@VValue@v8@@@v8@@H@Z ; has WINAPI (@12) -; public: class v8:: __thiscall v8::PropertyDescriptor::set(void)const -?set@PropertyDescriptor@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: void __thiscall v8::Extension::set_auto_enable(bool) -?set_auto_enable@Extension@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::ResourceConstraints::set_code_range_size_in_bytes(unsigned int) -?set_code_range_size_in_bytes@ResourceConstraints@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::PropertyDescriptor::set_configurable(bool) -?set_configurable@PropertyDescriptor@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::PropertyDescriptor::set_enumerable(bool) -?set_enumerable@PropertyDescriptor@v8@@QAEX_N@Z ; has WINAPI (@4) -; public: void __thiscall v8::ResourceConstraints::set_initial_old_generation_size_in_bytes(unsigned int) -?set_initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::ResourceConstraints::set_initial_young_generation_size_in_bytes(unsigned int) -?set_initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::ResourceConstraints::set_max_old_generation_size_in_bytes(unsigned int) -?set_max_old_generation_size_in_bytes@ResourceConstraints@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::ResourceConstraints::set_max_young_generation_size_in_bytes(unsigned int) -?set_max_young_generation_size_in_bytes@ResourceConstraints@v8@@QAEXI@Z ; has WINAPI (@4) -; public: void __thiscall v8::ResourceConstraints::set_stack_limit(unsigned int *) -?set_stack_limit@ResourceConstraints@v8@@QAEXPAI@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::shrink_to_fit(void) -?shrink_to_fit@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXXZ -; public: void __thiscall std::Cr::>::shrink_to_fit(void) -?shrink_to_fit@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXXZ -; public: unsigned int __thiscall v8::::size(void)const -?size@?$MemorySpan@$$CBD@v8@@QBEIXZ -; public: unsigned int __thiscall v8::::size(void)const -?size@?$MemorySpan@$$CBE@v8@@QBEIXZ -; public: unsigned int __thiscall v8::::size(void)const -?size@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QBEIXZ -; public: unsigned int __thiscall std::Cr::>::size(void)const -?size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QBEIXZ -; public: unsigned int __thiscall std::Cr::>::size(void)const -?size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QBEIXZ -; public: unsigned int __thiscall v8_inspector::protocol::Binary::size(void)const -?size@Binary@protocol@v8_inspector@@QBEIXZ -; private: static char const *const v8::internal::Version::soname_ -?soname_@Version@internal@v8@@0PBDB DATA -; public: class v8::String::ExternalOneByteStringResource const *__thiscall v8::Extension::source(void)const -?source@Extension@v8@@QBEPBVExternalOneByteStringResource@String@2@XZ -; public: unsigned int __thiscall v8::Extension::source_length(void)const -?source_length@Extension@v8@@QBEIXZ -; public: class std::Cr::,class std::Cr::> const &__thiscall v8::CompiledWasmModule::source_url(void)const -?source_url@CompiledWasmModule@v8@@QBEABV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@XZ -; public: unsigned int __thiscall v8::HeapSpaceStatistics::space_available_size(void) -?space_available_size@HeapSpaceStatistics@v8@@QAEIXZ -; public: char const *__thiscall v8::HeapSpaceStatistics::space_name(void) -?space_name@HeapSpaceStatistics@v8@@QAEPBDXZ -; public: unsigned int __thiscall v8::HeapSpaceStatistics::space_size(void) -?space_size@HeapSpaceStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapSpaceStatistics::space_used_size(void) -?space_used_size@HeapSpaceStatistics@v8@@QAEIXZ -; public: unsigned int *__thiscall v8::ResourceConstraints::stack_limit(void)const -?stack_limit@ResourceConstraints@v8@@QBEPAIXZ -; public: virtual void __thiscall v8_inspector::V8InspectorClient::startRepeatingTimer(double,void(__cdecl *)(void *),void *) -?startRepeatingTimer@V8InspectorClient@v8_inspector@@UAEXNP6AXPAX@Z0@Z ; has WINAPI (@16) -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::string_count(void)const -?string_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::string_count(void)const -?string_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: void __thiscall std::Cr::>::swap(class std::Cr::> &) -?swap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QAEXAAV123@@Z ; has WINAPI (@4) -; public: void __thiscall std::Cr::>::swap(class std::Cr::> &) -?swap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QAEXAAV123@@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::internal::WebSnapshotDeserializer::symbol_count(void)const -?symbol_count@WebSnapshotDeserializer@internal@v8@@QBEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::symbol_count(void)const -?symbol_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: class v8_inspector::String16 __thiscall v8_inspector::protocol::Binary::toBase64(void)const -?toBase64@Binary@protocol@v8_inspector@@QBE?AVString16@3@XZ ; has WINAPI (@4) -; public: class std::Cr::> __thiscall v8_inspector::V8DebuggerId::toString(void)const -?toString@V8DebuggerId@v8_inspector@@QBE?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@XZ ; has WINAPI (@4) -; private: static struct std::Cr:: cppgc::ProcessHeapStatistics::total_allocated_object_size_ -?total_allocated_object_size_@ProcessHeapStatistics@cppgc@@0U?$atomic@I@Cr@std@@A DATA -; private: static struct std::Cr:: cppgc::ProcessHeapStatistics::total_allocated_space_ -?total_allocated_space_@ProcessHeapStatistics@cppgc@@0U?$atomic@I@Cr@std@@A DATA -; public: unsigned int __thiscall v8::HeapStatistics::total_available_size(void) -?total_available_size@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapStatistics::total_global_handles_size(void) -?total_global_handles_size@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapStatistics::total_heap_size(void) -?total_heap_size@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapStatistics::total_heap_size_executable(void) -?total_heap_size_executable@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapStatistics::total_physical_size(void) -?total_physical_size@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::internal::WebSnapshotSerializer::typed_array_count(void)const -?typed_array_count@WebSnapshotSerializer@internal@v8@@QBEIXZ -; public: virtual void __thiscall v8_inspector::V8InspectorClient::unmuteMetrics(int) -?unmuteMetrics@V8InspectorClient@v8_inspector@@UAEXH@Z ; has WINAPI (@4) -; public: unsigned int __thiscall v8::HeapStatistics::used_global_handles_size(void) -?used_global_handles_size@HeapStatistics@v8@@QAEIXZ -; public: unsigned int __thiscall v8::HeapStatistics::used_heap_size(void) -?used_heap_size@HeapStatistics@v8@@QAEIXZ -; public: class std::Cr::,class std::Cr::> __thiscall v8_inspector::String16::utf8(void)const -?utf8@String16@v8_inspector@@QBE?AV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@XZ ; has WINAPI (@4) -; public: class v8:: __thiscall v8::PropertyDescriptor::value(void)const -?value@PropertyDescriptor@v8@@QBE?AV?$Local@VValue@v8@@@2@XZ ; has WINAPI (@4) -; public: class v8::internal:: __thiscall v8::internal::WebSnapshotDeserializer::value(void)const -?value@WebSnapshotDeserializer@internal@v8@@QBE?AV?$MaybeHandle@VObject@internal@v8@@@23@XZ ; has WINAPI (@4) -; public: virtual class std::Cr::> __thiscall v8_inspector::V8InspectorClient::valueSubtype(class v8::) -?valueSubtype@V8InspectorClient@v8_inspector@@UAE?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@V?$Local@VValue@v8@@@v8@@@Z ; has WINAPI (@8) -; private: static char const *const v8::internal::Version::version_string_ -?version_string_@Version@internal@v8@@0PBDB DATA -; public: bool __thiscall v8::PropertyDescriptor::writable(void)const -?writable@PropertyDescriptor@v8@@QBE_NXZ -; private: static class cppgc::internal::AtomicEntryFlag cppgc::internal::WriteBarrier::write_barrier_enabled_ -?write_barrier_enabled_@WriteBarrier@internal@cppgc@@0VAtomicEntryFlag@23@A DATA -Cr_z_adler32 -Cr_z_adler32_combine -Cr_z_adler32_z -Cr_z_compress -Cr_z_compress2 -Cr_z_compressBound -Cr_z_crc32 -Cr_z_crc32_combine -Cr_z_crc32_combine_gen -Cr_z_crc32_combine_op -Cr_z_crc32_z -Cr_z_deflate -Cr_z_deflateBound -Cr_z_deflateCopy -Cr_z_deflateEnd -Cr_z_deflateGetDictionary -Cr_z_deflateInit2_ -Cr_z_deflateInit_ -Cr_z_deflateParams -Cr_z_deflatePending -Cr_z_deflatePrime -Cr_z_deflateReset -Cr_z_deflateResetKeep -Cr_z_deflateSetDictionary -Cr_z_deflateSetHeader -Cr_z_deflateTune -Cr_z_get_crc_table -Cr_z_uncompress -Cr_z_uncompress2 -Cr_z_zError -Cr_z_zlibCompileFlags -Cr_z_zlibVersion -GetHandleVerifier -IsSandboxedProcess -napi_acquire_threadsafe_function -napi_add_async_cleanup_hook -napi_add_env_cleanup_hook -napi_add_finalizer -napi_adjust_external_memory -napi_async_destroy -napi_async_init -napi_call_function -napi_call_threadsafe_function -napi_cancel_async_work -napi_check_object_type_tag -napi_close_callback_scope -napi_close_escapable_handle_scope -napi_close_handle_scope -napi_coerce_to_bool -napi_coerce_to_number -napi_coerce_to_object -napi_coerce_to_string -napi_create_array -napi_create_array_with_length -napi_create_arraybuffer -napi_create_async_work -napi_create_bigint_int64 -napi_create_bigint_uint64 -napi_create_bigint_words -napi_create_buffer -napi_create_buffer_copy -napi_create_dataview -napi_create_date -napi_create_double -napi_create_error -napi_create_external -napi_create_external_arraybuffer -napi_create_external_buffer -napi_create_function -napi_create_int32 -napi_create_int64 -napi_create_object -napi_create_promise -napi_create_range_error -napi_create_reference -napi_create_string_latin1 -napi_create_string_utf16 -napi_create_string_utf8 -napi_create_symbol -napi_create_threadsafe_function -napi_create_type_error -napi_create_typedarray -napi_create_uint32 -napi_define_class -napi_define_properties -napi_delete_async_work -napi_delete_element -napi_delete_property -napi_delete_reference -napi_detach_arraybuffer -napi_escape_handle -napi_fatal_error ; Check!!! Couldn't determine function argument count. Function doesn't return. -napi_fatal_exception -napi_get_all_property_names -napi_get_and_clear_last_exception -napi_get_array_length -napi_get_arraybuffer_info -napi_get_boolean -napi_get_buffer_info -napi_get_cb_info -napi_get_dataview_info -napi_get_date_value -napi_get_element -napi_get_global -napi_get_instance_data -napi_get_last_error_info -napi_get_named_property -napi_get_new_target -napi_get_node_version -napi_get_null -napi_get_property -napi_get_property_names -napi_get_prototype -napi_get_reference_value -napi_get_threadsafe_function_context -napi_get_typedarray_info -napi_get_undefined -napi_get_uv_event_loop -napi_get_value_bigint_int64 -napi_get_value_bigint_uint64 -napi_get_value_bigint_words -napi_get_value_bool -napi_get_value_double -napi_get_value_external -napi_get_value_int32 -napi_get_value_int64 -napi_get_value_string_latin1 -napi_get_value_string_utf16 -napi_get_value_string_utf8 -napi_get_value_uint32 -napi_get_version -napi_has_element -napi_has_named_property -napi_has_own_property -napi_has_property -napi_instanceof -napi_is_array -napi_is_arraybuffer -napi_is_buffer -napi_is_dataview -napi_is_date -napi_is_detached_arraybuffer -napi_is_error -napi_is_exception_pending -napi_is_promise -napi_is_typedarray -napi_make_callback -napi_module_register -napi_new_instance -napi_object_freeze -napi_object_seal -napi_open_callback_scope -napi_open_escapable_handle_scope -napi_open_handle_scope -napi_queue_async_work -napi_ref_threadsafe_function -napi_reference_ref -napi_reference_unref -napi_reject_deferred -napi_release_threadsafe_function -napi_remove_async_cleanup_hook -napi_remove_env_cleanup_hook -napi_remove_wrap -napi_resolve_deferred -napi_run_script -napi_set_element -napi_set_instance_data -napi_set_named_property -napi_set_property -napi_strict_equals -napi_throw -napi_throw_error -napi_throw_range_error -napi_throw_type_error -napi_type_tag_object -napi_typeof -napi_unref_threadsafe_function -napi_unwrap -napi_wrap -node_api_create_syntax_error -node_api_get_module_file_name -node_api_symbol_for -node_api_throw_syntax_error -qq_magic_node_register -uv_accept -uv_async_init -uv_async_send -uv_backend_fd -uv_backend_timeout -uv_barrier_destroy -uv_barrier_init -uv_barrier_wait -uv_buf_init -uv_cancel -uv_chdir -uv_check_init -uv_check_start -uv_check_stop -uv_close -uv_cond_broadcast -uv_cond_destroy -uv_cond_init -uv_cond_signal -uv_cond_timedwait -uv_cond_wait -uv_cpu_info -uv_cwd -uv_default_loop -uv_disable_stdio_inheritance -uv_dlclose -uv_dlerror -uv_dlopen -uv_dlsym -uv_err_name -uv_err_name_r -uv_exepath -uv_fileno -uv_free_cpu_info -uv_free_interface_addresses -uv_freeaddrinfo -uv_fs_access -uv_fs_chmod -uv_fs_chown -uv_fs_close -uv_fs_closedir -uv_fs_copyfile -uv_fs_event_getpath -uv_fs_event_init -uv_fs_event_start -uv_fs_event_stop -uv_fs_fchmod -uv_fs_fchown -uv_fs_fdatasync -uv_fs_fstat -uv_fs_fsync -uv_fs_ftruncate -uv_fs_futime -uv_fs_get_path -uv_fs_get_ptr -uv_fs_get_result -uv_fs_get_statbuf -uv_fs_get_system_error -uv_fs_get_type -uv_fs_lchown -uv_fs_link -uv_fs_lstat -uv_fs_lutime -uv_fs_mkdir -uv_fs_mkdtemp -uv_fs_mkstemp -uv_fs_open -uv_fs_opendir -uv_fs_poll_getpath -uv_fs_poll_init -uv_fs_poll_start -uv_fs_poll_stop -uv_fs_read -uv_fs_readdir -uv_fs_readlink -uv_fs_realpath -uv_fs_rename -uv_fs_req_cleanup -uv_fs_rmdir -uv_fs_scandir -uv_fs_scandir_next -uv_fs_sendfile -uv_fs_stat -uv_fs_statfs -uv_fs_symlink -uv_fs_unlink -uv_fs_utime -uv_fs_write -uv_get_constrained_memory -uv_get_free_memory -uv_get_osfhandle -uv_get_process_title -uv_get_total_memory -uv_getaddrinfo -uv_getnameinfo -uv_getrusage -uv_gettimeofday -uv_guess_handle -uv_handle_get_data -uv_handle_get_loop -uv_handle_get_type -uv_handle_set_data -uv_handle_size -uv_handle_type_name -uv_has_ref -uv_hrtime -uv_idle_init -uv_idle_start -uv_idle_stop -uv_if_indextoiid -uv_if_indextoname -uv_inet_ntop -uv_inet_pton -uv_interface_addresses -uv_ip4_addr -uv_ip4_name -uv_ip6_addr -uv_ip6_name -uv_ip_name -uv_is_active -uv_is_closing -uv_is_readable -uv_is_writable -uv_key_create -uv_key_delete -uv_key_get -uv_key_set -uv_kill -uv_library_shutdown -uv_listen -uv_loadavg -uv_loop_alive -uv_loop_close -uv_loop_configure -uv_loop_delete -uv_loop_fork -uv_loop_get_data -uv_loop_init -uv_loop_new -uv_loop_set_data -uv_loop_size -uv_metrics_idle_time -uv_mutex_destroy -uv_mutex_init -uv_mutex_init_recursive -uv_mutex_lock -uv_mutex_trylock -uv_mutex_unlock -uv_now -uv_once -uv_open_osfhandle -uv_os_environ -uv_os_free_environ -uv_os_free_passwd -uv_os_get_passwd -uv_os_getenv -uv_os_gethostname -uv_os_getpid ; Check!!! forwards to GetCurrentProcessId in KERNEL32.dll (ordinal 540) -uv_os_getppid -uv_os_getpriority -uv_os_homedir -uv_os_setenv -uv_os_setpriority -uv_os_tmpdir -uv_os_uname -uv_os_unsetenv -uv_pipe -uv_pipe_bind -uv_pipe_chmod -uv_pipe_connect -uv_pipe_getpeername -uv_pipe_getsockname -uv_pipe_init -uv_pipe_open -uv_pipe_pending_count -uv_pipe_pending_instances -uv_pipe_pending_type -uv_poll_init -uv_poll_init_socket -uv_poll_start -uv_poll_stop -uv_prepare_init -uv_prepare_start -uv_prepare_stop -uv_print_active_handles -uv_print_all_handles -uv_process_get_pid -uv_process_kill -uv_queue_work -uv_random -uv_read_start -uv_read_stop -uv_recv_buffer_size -uv_ref -uv_replace_allocator -uv_req_get_data -uv_req_get_type -uv_req_set_data -uv_req_size -uv_req_type_name -uv_resident_set_memory -uv_run -uv_rwlock_destroy -uv_rwlock_init -uv_rwlock_rdlock -uv_rwlock_rdunlock -uv_rwlock_tryrdlock -uv_rwlock_trywrlock -uv_rwlock_wrlock -uv_rwlock_wrunlock -uv_sem_destroy -uv_sem_init -uv_sem_post -uv_sem_trywait -uv_sem_wait -uv_send_buffer_size -uv_set_process_title -uv_setup_args -uv_shutdown -uv_signal_init -uv_signal_start -uv_signal_start_oneshot -uv_signal_stop -uv_sleep -uv_socketpair -uv_spawn -uv_stop -uv_stream_get_write_queue_size -uv_stream_set_blocking -uv_strerror -uv_strerror_r -uv_tcp_bind -uv_tcp_close_reset -uv_tcp_connect -uv_tcp_getpeername -uv_tcp_getsockname -uv_tcp_init -uv_tcp_init_ex -uv_tcp_keepalive -uv_tcp_nodelay -uv_tcp_open -uv_tcp_simultaneous_accepts -uv_thread_create -uv_thread_create_ex -uv_thread_equal -uv_thread_join -uv_thread_self -uv_timer_again -uv_timer_get_due_in -uv_timer_get_repeat -uv_timer_init -uv_timer_set_repeat -uv_timer_start -uv_timer_stop -uv_translate_sys_error -uv_try_write -uv_try_write2 -uv_tty_get_vterm_state -uv_tty_get_winsize -uv_tty_init -uv_tty_reset_mode -uv_tty_set_mode -uv_tty_set_vterm_state -uv_udp_bind -uv_udp_connect -uv_udp_get_send_queue_count -uv_udp_get_send_queue_size -uv_udp_getpeername -uv_udp_getsockname -uv_udp_init -uv_udp_init_ex -uv_udp_open -uv_udp_recv_start -uv_udp_recv_stop -uv_udp_send -uv_udp_set_broadcast -uv_udp_set_membership -uv_udp_set_multicast_interface -uv_udp_set_multicast_loop -uv_udp_set_multicast_ttl -uv_udp_set_source_membership -uv_udp_set_ttl -uv_udp_try_send -uv_udp_using_recvmmsg -uv_unref -uv_update_time -uv_uptime -uv_version -uv_version_string -uv_walk -uv_write -uv_write2 diff --git a/thirds/external/QQ64.def b/thirds/external/QQ64.def deleted file mode 100644 index 86f40c4..0000000 --- a/thirds/external/QQ64.def +++ /dev/null @@ -1,2867 +0,0 @@ -; -; Definition file of electron.exe -; Automatic generated by gendef -; written by Kai Tietz 2008 -; -LIBRARY "QQ.exe" -EXPORTS -??$TryToCopyAndConvertArrayToCppBuffer@$0DAAAA@H@v8@@YA_NV?$Local@VArray@v8@@@0@PEAHI@Z -??$TryToCopyAndConvertArrayToCppBuffer@$0EAAAA@I@v8@@YA_NV?$Local@VArray@v8@@@0@PEAII@Z -??$TryToCopyAndConvertArrayToCppBuffer@$0HAAAA@M@v8@@YA_NV?$Local@VArray@v8@@@0@PEAMI@Z -??$TryToCopyAndConvertArrayToCppBuffer@$0IAAAA@N@v8@@YA_NV?$Local@VArray@v8@@@0@PEANI@Z -??$ValidateCallbackInfo@VArray@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VArray@v8@@@1@@Z -??$ValidateCallbackInfo@VBoolean@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VBoolean@v8@@@1@@Z -??$ValidateCallbackInfo@VInteger@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VInteger@v8@@@1@@Z -??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@VValue@v8@@@1@@Z -??$ValidateCallbackInfo@VValue@v8@@@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@VValue@v8@@@1@@Z -??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$FunctionCallbackInfo@X@1@@Z -??$ValidateCallbackInfo@X@internal@v8@@YA_NAEBV?$PropertyCallbackInfo@X@1@@Z -??0?$MemorySpan@$$CBD@v8@@QEAA@PEBD_K@Z -??0?$MemorySpan@$$CBD@v8@@QEAA@XZ -??0?$MemorySpan@$$CBE@v8@@QEAA@PEBE_K@Z -??0?$MemorySpan@$$CBE@v8@@QEAA@XZ -??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAA@PEBVCFunction@1@_K@Z -??0?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAA@XZ -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@$$QEAV012@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@AEBV012@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@AEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@XZ -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@_K@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@_KAEBUCpuProfileDeoptFrame@v8@@@Z -??0?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@$$QEAV012@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@$$QEAV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@AEBV012@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@AEBV012@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@AEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@XZ -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@_K@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@_KAEBUCpuProfileDeoptInfo@v8@@@Z -??0?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@_KAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@12@@Z -??0ActivityControl@v8@@QEAA@AEBV01@@Z -??0ActivityControl@v8@@QEAA@XZ -??0AllocationProfile@v8@@QEAA@AEBV01@@Z -??0AllocationProfile@v8@@QEAA@XZ -??0Allocator@ArrayBuffer@v8@@QEAA@AEBV012@@Z -??0Allocator@ArrayBuffer@v8@@QEAA@XZ -??0AllowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@@Z -??0ArrayBufferAllocator@node@@QEAA@$$QEAV01@@Z -??0ArrayBufferAllocator@node@@QEAA@AEBV01@@Z -??0ArrayBufferAllocator@node@@QEAA@XZ -??0AsyncResource@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@PEBDN@Z -??0BackupIncumbentScope@Context@v8@@QEAA@V?$Local@VContext@v8@@@2@@Z -??0Binary@protocol@v8_inspector@@AEAA@V?$shared_ptr@V?$vector@EV?$allocator@E@Cr@std@@@Cr@std@@@Cr@std@@@Z -??0Binary@protocol@v8_inspector@@QEAA@$$QEAV012@@Z -??0Binary@protocol@v8_inspector@@QEAA@AEBV012@@Z -??0Binary@protocol@v8_inspector@@QEAA@XZ -??0CFunction@v8@@QEAA@PEBXPEBVCFunctionInfo@1@@Z -??0CFunction@v8@@QEAA@XZ -??0CFunctionInfo@v8@@QEAA@AEBVCTypeInfo@1@IPEBV21@@Z -??0CachedData@ScriptCompiler@v8@@QEAA@PEBEHW4BufferPolicy@012@@Z -??0CachedData@ScriptCompiler@v8@@QEAA@XZ -??0CallbackScope@AsyncResource@node@@QEAA@PEAV12@@Z -??0CallbackScope@node@@QEAA@PEAVEnvironment@1@V?$Local@VObject@v8@@@v8@@Uasync_context@1@@Z -??0CallbackScope@node@@QEAA@PEAVIsolate@v8@@V?$Local@VObject@v8@@@3@Uasync_context@1@@Z -??0Channel@V8Inspector@v8_inspector@@QEAA@AEBV012@@Z -??0Channel@V8Inspector@v8_inspector@@QEAA@XZ -??0CodeEventHandler@v8@@QEAA@PEAVIsolate@1@@Z -??0CommandLineAPIScope@V8InspectorSession@v8_inspector@@QEAA@AEBV012@@Z -??0CommandLineAPIScope@V8InspectorSession@v8_inspector@@QEAA@XZ -??0CommonEnvironmentSetup@node@@AEAA@PEAVMultiIsolatePlatform@1@PEAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@V?$function@$$A6APEAVEnvironment@node@@PEBVCommonEnvironmentSetup@2@@Z@45@@Z -??0CompiledWasmModule@v8@@AEAA@V?$shared_ptr@VNativeModule@wasm@internal@v8@@@Cr@std@@PEBD_K@Z -??0CompiledWasmModule@v8@@QEAA@$$QEAV01@@Z -??0CompiledWasmModule@v8@@QEAA@AEBV01@@Z -??0ConsumeCodeCacheTask@ScriptCompiler@v8@@AEAA@V?$unique_ptr@VBackgroundDeserializeTask@internal@v8@@U?$default_delete@VBackgroundDeserializeTask@internal@v8@@@Cr@std@@@Cr@std@@@Z -??0CppHeap@v8@@AEAA@XZ -??0CppHeap@v8@@QEAA@AEBV01@@Z -??0CppHeapCreateParams@v8@@QEAA@V?$vector@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@Cr@std@@@Cr@std@@V?$allocator@V?$unique_ptr@VCustomSpaceBase@cppgc@@U?$default_delete@VCustomSpaceBase@cppgc@@@Cr@std@@@Cr@std@@@23@@Cr@std@@UWrapperDescriptor@1@@Z -??0CpuProfileDeoptInfo@v8@@QEAA@$$QEAU01@@Z -??0CpuProfileDeoptInfo@v8@@QEAA@AEBU01@@Z -??0CpuProfileDeoptInfo@v8@@QEAA@XZ -??0CpuProfilingOptions@v8@@QEAA@$$QEAV01@@Z -??0CpuProfilingOptions@v8@@QEAA@W4CpuProfilingMode@1@IHV?$MaybeLocal@VContext@v8@@@1@@Z -??0CreateParams@Isolate@v8@@QEAA@$$QEAU012@@Z -??0CreateParams@Isolate@v8@@QEAA@AEBU012@@Z -??0CreateParams@Isolate@v8@@QEAA@XZ -??0CrossThreadPersistentRegion@internal@cppgc@@QEAA@AEBVFatalOutOfMemoryHandler@12@@Z -??0Delegate@ValueDeserializer@v8@@QEAA@AEBV012@@Z -??0Delegate@ValueDeserializer@v8@@QEAA@XZ -??0Delegate@ValueSerializer@v8@@QEAA@AEBV012@@Z -??0Delegate@ValueSerializer@v8@@QEAA@XZ -??0DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z -??0DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@PEAV12@W4OnFailure@012@@Z -??0DiscardedSamplesDelegate@v8@@QEAA@AEBV01@@Z -??0DiscardedSamplesDelegate@v8@@QEAA@XZ -??0Domain@API@Schema@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z -??0Domain@API@Schema@protocol@v8_inspector@@QEAA@AEBV01234@@Z -??0Domain@API@Schema@protocol@v8_inspector@@QEAA@XZ -??0EmbedderGraph@v8@@QEAA@AEBV01@@Z -??0EmbedderGraph@v8@@QEAA@XZ -??0EmbedderRootsHandler@v8@@QEAA@AEBV01@@Z -??0EmbedderRootsHandler@v8@@QEAA@XZ -??0EmbedderStateScope@v8@@QEAA@PEAVIsolate@1@V?$Local@VContext@v8@@@1@W4EmbedderStateTag@1@@Z -??0EscapableHandleScope@v8@@QEAA@PEAVIsolate@1@@Z -??0Exported@protocol@v8_inspector@@QEAA@AEBV012@@Z -??0Exported@protocol@v8_inspector@@QEAA@XZ -??0Extension@v8@@QEAA@PEBD0HPEAPEBDH@Z -??0ExtensionConfiguration@v8@@QEAA@HQEAPEBD@Z -??0ExtensionConfiguration@v8@@QEAA@XZ -??0ExternalOneByteStringResource@String@v8@@IEAA@XZ -??0ExternalResourceVisitor@v8@@QEAA@AEBV01@@Z -??0ExternalResourceVisitor@v8@@QEAA@XZ -??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@AEBV012@@Z -??0ExternalSourceStream@ScriptCompiler@v8@@QEAA@XZ -??0ExternalStringResource@String@v8@@IEAA@XZ -??0ExternalStringResourceBase@String@v8@@IEAA@XZ -??0GCInfoTable@internal@cppgc@@QEAA@AEAVPageAllocator@v8@@AEAVFatalOutOfMemoryHandler@12@@Z -??0HandleScope@v8@@QEAA@PEAVIsolate@1@@Z -??0Heap@cppgc@@AEAA@XZ -??0Heap@cppgc@@QEAA@AEBV01@@Z -??0HeapCodeStatistics@v8@@QEAA@XZ -??0HeapObjectStatistics@v8@@QEAA@XZ -??0HeapSpaceStatistics@v8@@QEAA@XZ -??0HeapStatistics@v8@@QEAA@XZ -??0InitializationResult@node@@AEAA@XZ -??0InitializationResult@node@@QEAA@AEBV01@@Z -??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@AEBV012@@Z -??0Inspectable@V8InspectorSession@v8_inspector@@QEAA@XZ -??0IsolatePlatformDelegate@node@@QEAA@$$QEAV01@@Z -??0IsolatePlatformDelegate@node@@QEAA@AEBV01@@Z -??0IsolatePlatformDelegate@node@@QEAA@XZ -??0Location@v8@@QEAA@HH@Z -??0Locker@v8@@QEAA@PEAVIsolate@1@@Z -??0LongTaskStats@metrics@v8@@QEAA@XZ -??0MeasureMemoryDelegate@v8@@QEAA@AEBV01@@Z -??0MeasureMemoryDelegate@v8@@QEAA@XZ -??0MicrotaskQueue@v8@@AEAA@XZ -??0MicrotasksScope@v8@@QEAA@PEAVIsolate@1@PEAVMicrotaskQueue@1@W4Type@01@@Z -??0MicrotasksScope@v8@@QEAA@PEAVIsolate@1@W4Type@01@@Z -??0MicrotasksScope@v8@@QEAA@V?$Local@VContext@v8@@@1@W4Type@01@@Z -??0MultiIsolatePlatform@node@@QEAA@AEBV01@@Z -??0MultiIsolatePlatform@node@@QEAA@XZ -??0NameProvider@cppgc@@QEAA@AEBV01@@Z -??0NameProvider@cppgc@@QEAA@XZ -??0NoGarbageCollectionScope@subtle@cppgc@@QEAA@AEAVHeapHandle@2@@Z -??0OutputStream@v8@@QEAA@AEBV01@@Z -??0OutputStream@v8@@QEAA@XZ -??0OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@AEAVHeapHandle@2@W4EmbedderStackState@2@@Z -??0PersistentHandleVisitor@v8@@QEAA@AEBV01@@Z -??0PersistentHandleVisitor@v8@@QEAA@XZ -??0PersistentRegion@internal@cppgc@@QEAA@AEBVFatalOutOfMemoryHandler@12@@Z -??0PersistentRegionBase@internal@cppgc@@IEAA@AEBVFatalOutOfMemoryHandler@12@@Z -??0PersistentRegionLock@internal@cppgc@@QEAA@XZ -??0Platform@cppgc@@QEAA@AEBV01@@Z -??0Platform@cppgc@@QEAA@XZ -??0PrefinalizerRegistration@internal@cppgc@@QEAA@PEAXP6A_NAEBVLivenessBroker@2@0@Z@Z -??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@0@Z -??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@@Z -??0PropertyDescriptor@v8@@QEAA@V?$Local@VValue@v8@@@1@_N@Z -??0PropertyDescriptor@v8@@QEAA@XZ -??0Recorder@metrics@v8@@QEAA@AEBV012@@Z -??0Recorder@metrics@v8@@QEAA@XZ -??0RegisterState@v8@@QEAA@AEBU01@@Z -??0RegisterState@v8@@QEAA@XZ -??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z -??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z -??0RemoteObject@API@Runtime@protocol@v8_inspector@@QEAA@XZ -??0ResourceConstraints@v8@@QEAA@XZ -??0RootVisitor@internal@cppgc@@QEAA@AEBV012@@Z -??0RootVisitor@internal@cppgc@@QEAA@VKey@Visitor@2@@Z -??0SafeForTerminationScope@Isolate@v8@@QEAA@PEAV12@@Z -??0SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAA@XZ -??0Scope@Isolate@v8@@QEAA@PEAV12@@Z -??0ScriptOrigin@v8@@QEAA@PEAVIsolate@1@V?$Local@VValue@v8@@@1@HH_NH1222V?$Local@VData@v8@@@1@@Z -??0ScriptStreamingTask@ScriptCompiler@v8@@AEAA@PEAUScriptStreamingData@internal@2@@Z -??0SealHandleScope@v8@@QEAA@PEAVIsolate@1@@Z -??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z -??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@AEBV01234@@Z -??0SearchMatch@API@Debugger@protocol@v8_inspector@@QEAA@XZ -??0SharedMemoryStatistics@v8@@QEAA@XZ -??0SharedValueConveyor@v8@@AEAA@PEAVIsolate@1@@Z -??0SharedValueConveyor@v8@@QEAA@$$QEAV01@@Z -??0SnapshotCreator@v8@@QEAA@PEAVIsolate@1@PEB_JPEBVStartupData@1@_N@Z -??0SnapshotCreator@v8@@QEAA@PEB_JPEBVStartupData@1@@Z -??0SourceLocation@v8@@AEAA@PEBD0_K@Z -??0SourceLocation@v8@@QEAA@XZ -??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z -??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z -??0StackTrace@API@Runtime@protocol@v8_inspector@@QEAA@XZ -??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@$$QEAV01234@@Z -??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@AEBV01234@@Z -??0StackTraceId@API@Runtime@protocol@v8_inspector@@QEAA@XZ -??0StandaloneTestingHeap@testing@cppgc@@QEAA@AEAVHeapHandle@2@@Z -??0StreamedSource@ScriptCompiler@v8@@QEAA@V?$unique_ptr@VExternalSourceStream@ScriptCompiler@v8@@U?$default_delete@VExternalSourceStream@ScriptCompiler@v8@@@Cr@std@@@Cr@std@@W4Encoding@012@@Z -??0String16@v8_inspector@@QEAA@PEBD@Z -??0String16@v8_inspector@@QEAA@PEBG@Z -??0StringBuffer@v8_inspector@@QEAA@AEBV01@@Z -??0StringBuffer@v8_inspector@@QEAA@XZ -??0StringView@v8_inspector@@QEAA@PEBE_K@Z -??0StringView@v8_inspector@@QEAA@PEBG_K@Z -??0StringView@v8_inspector@@QEAA@XZ -??0SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@PEAV12@PEAVMicrotaskQueue@2@@Z -??0TickSample@internal@v8@@QEAA@XZ -??0TryCatch@v8@@QEAA@PEAVIsolate@1@@Z -??0Unlocker@v8@@QEAA@PEAVIsolate@1@@Z -??0Utf8Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z -??0V8ContextInfo@v8_inspector@@QEAA@V?$Local@VContext@v8@@@v8@@HVStringView@1@@Z -??0V8DebuggerId@v8_inspector@@AEAA@U?$pair@_J_J@Cr@std@@@Z -??0V8DebuggerId@v8_inspector@@QEAA@XZ -??0V8Inspector@v8_inspector@@QEAA@AEBV01@@Z -??0V8Inspector@v8_inspector@@QEAA@XZ -??0V8InspectorClient@v8_inspector@@QEAA@AEBV01@@Z -??0V8InspectorClient@v8_inspector@@QEAA@XZ -??0V8InspectorSession@v8_inspector@@QEAA@AEBV01@@Z -??0V8InspectorSession@v8_inspector@@QEAA@XZ -??0V8StackFrame@v8_inspector@@QEAA@XZ -??0V8StackTrace@v8_inspector@@QEAA@AEBV01@@Z -??0V8StackTrace@v8_inspector@@QEAA@XZ -??0V8StackTraceId@v8_inspector@@QEAA@VStringView@1@@Z -??0V8StackTraceId@v8_inspector@@QEAA@XZ -??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@Cr@std@@@Z -??0V8StackTraceId@v8_inspector@@QEAA@_KU?$pair@_J_J@Cr@std@@_N@Z -??0Value@String@v8@@QEAA@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z -??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_K@Z -??0ValueDeserializer@v8@@QEAA@PEAVIsolate@1@PEBE_KPEAVDelegate@01@@Z -??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@@Z -??0ValueSerializer@v8@@QEAA@PEAVIsolate@1@PEAVDelegate@01@@Z -??0Visitor@cppgc@@QEAA@AEBV01@@Z -??0Visitor@cppgc@@QEAA@VKey@01@@Z -??0WasmStreaming@v8@@QEAA@V?$unique_ptr@VWasmStreamingImpl@WasmStreaming@v8@@U?$default_delete@VWasmStreamingImpl@WasmStreaming@v8@@@Cr@std@@@Cr@std@@@Z -??0WebDriverValue@v8_inspector@@QEAA@$$QEAV01@@Z -??0WebDriverValue@v8_inspector@@QEAA@V?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@V?$MaybeLocal@VValue@v8@@@v8@@@Z -??1?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA@XZ -??1?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA@XZ -??1ActivityControl@v8@@UEAA@XZ -??1AllocationProfile@v8@@UEAA@XZ -??1Allocator@ArrayBuffer@v8@@UEAA@XZ -??1AllowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ -??1ArrayBufferAllocator@node@@UEAA@XZ -??1AsyncResource@node@@UEAA@XZ -??1BackingStore@v8@@QEAA@XZ -??1BackupIncumbentScope@Context@v8@@QEAA@XZ -??1Binary@protocol@v8_inspector@@QEAA@XZ -??1CachedData@ScriptCompiler@v8@@QEAA@XZ -??1CallbackScope@AsyncResource@node@@QEAA@XZ -??1CallbackScope@node@@QEAA@XZ -??1Channel@V8Inspector@v8_inspector@@UEAA@XZ -??1CodeEventHandler@v8@@UEAA@XZ -??1CommandLineAPIScope@V8InspectorSession@v8_inspector@@UEAA@XZ -??1CommonEnvironmentSetup@node@@QEAA@XZ -??1CompiledWasmModule@v8@@QEAA@XZ -??1ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAA@XZ -??1CppHeap@v8@@UEAA@XZ -??1CppHeapCreateParams@v8@@QEAA@XZ -??1CpuProfileDeoptInfo@v8@@QEAA@XZ -??1CpuProfilingOptions@v8@@QEAA@XZ -??1CreateParams@Isolate@v8@@QEAA@XZ -??1CrossThreadPersistentRegion@internal@cppgc@@QEAA@XZ -??1Delegate@ValueDeserializer@v8@@UEAA@XZ -??1Delegate@ValueSerializer@v8@@UEAA@XZ -??1DisallowGarbageCollectionScope@subtle@cppgc@@QEAA@XZ -??1DisallowJavascriptExecutionScope@Isolate@v8@@QEAA@XZ -??1DiscardedSamplesDelegate@v8@@UEAA@XZ -??1Domain@API@Schema@protocol@v8_inspector@@UEAA@XZ -??1EmbedderGraph@v8@@UEAA@XZ -??1EmbedderRootsHandler@v8@@UEAA@XZ -??1EmbedderStateScope@v8@@QEAA@XZ -??1EscapableHandleScope@v8@@QEAA@XZ -??1Exported@protocol@v8_inspector@@UEAA@XZ -??1Extension@v8@@UEAA@XZ -??1ExternalOneByteStringResource@String@v8@@UEAA@XZ -??1ExternalResourceVisitor@v8@@UEAA@XZ -??1ExternalSourceStream@ScriptCompiler@v8@@UEAA@XZ -??1ExternalStringResource@String@v8@@UEAA@XZ -??1ExternalStringResourceBase@String@v8@@UEAA@XZ -??1GCInfoTable@internal@cppgc@@QEAA@XZ -??1HandleScope@v8@@QEAA@XZ -??1Heap@cppgc@@UEAA@XZ -??1InitializationResult@node@@UEAA@XZ -??1Inspectable@V8InspectorSession@v8_inspector@@UEAA@XZ -??1Locker@v8@@QEAA@XZ -??1MeasureMemoryDelegate@v8@@UEAA@XZ -??1MicrotaskQueue@v8@@UEAA@XZ -??1MicrotasksScope@v8@@QEAA@XZ -??1MultiIsolatePlatform@node@@UEAA@XZ -??1NameProvider@cppgc@@UEAA@XZ -??1NoGarbageCollectionScope@subtle@cppgc@@QEAA@XZ -??1OutputStream@v8@@UEAA@XZ -??1OverrideEmbedderStackStateScope@testing@cppgc@@QEAA@XZ -??1PersistentHandleVisitor@v8@@UEAA@XZ -??1PersistentRegion@internal@cppgc@@QEAA@XZ -??1PersistentRegionBase@internal@cppgc@@QEAA@XZ -??1PersistentRegionLock@internal@cppgc@@QEAA@XZ -??1Platform@cppgc@@UEAA@XZ -??1PropertyDescriptor@v8@@QEAA@XZ -??1Recorder@metrics@v8@@UEAA@XZ -??1RegisterState@v8@@QEAA@XZ -??1RemoteObject@API@Runtime@protocol@v8_inspector@@UEAA@XZ -??1RootVisitor@internal@cppgc@@UEAA@XZ -??1SafeForTerminationScope@Isolate@v8@@QEAA@XZ -??1Scope@Isolate@v8@@QEAA@XZ -??1SealHandleScope@v8@@QEAA@XZ -??1SearchMatch@API@Debugger@protocol@v8_inspector@@UEAA@XZ -??1SharedValueConveyor@v8@@QEAA@XZ -??1SnapshotCreator@v8@@QEAA@XZ -??1StackTrace@API@Runtime@protocol@v8_inspector@@UEAA@XZ -??1StackTraceId@API@Runtime@protocol@v8_inspector@@UEAA@XZ -??1StreamedSource@ScriptCompiler@v8@@QEAA@XZ -??1StringBuffer@v8_inspector@@UEAA@XZ -??1SuppressMicrotaskExecutionScope@Isolate@v8@@QEAA@XZ -??1TryCatch@v8@@QEAA@XZ -??1Unlocker@v8@@QEAA@XZ -??1Utf8Value@String@v8@@QEAA@XZ -??1V8Inspector@v8_inspector@@UEAA@XZ -??1V8InspectorClient@v8_inspector@@UEAA@XZ -??1V8InspectorSession@v8_inspector@@UEAA@XZ -??1V8StackTrace@v8_inspector@@UEAA@XZ -??1Value@String@v8@@QEAA@XZ -??1ValueDeserializer@v8@@QEAA@XZ -??1ValueSerializer@v8@@QEAA@XZ -??1Visitor@cppgc@@UEAA@XZ -??1WasmStreaming@v8@@QEAA@XZ -??1WebDriverValue@v8_inspector@@QEAA@XZ -??2EscapableHandleScope@v8@@CAPEAX_K@Z -??2GlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z -??2HandleScope@v8@@CAPEAX_K@Z -??2SealHandleScope@v8@@CAPEAX_K@Z -??2TryCatch@v8@@CAPEAX_K@Z -??3BackingStore@v8@@SAXPEAX@Z -??3EscapableHandleScope@v8@@CAXPEAX_K@Z -??3GlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z -??3HandleScope@v8@@CAXPEAX_K@Z -??3SealHandleScope@v8@@CAXPEAX_K@Z -??3TryCatch@v8@@CAXPEAX_K@Z -??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$CTypeInfoBuilder@H$S@v8@@QEAAAEAV01@AEBV01@@Z -??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$CTypeInfoBuilder@I$S@v8@@QEAAAEAV01@AEBV01@@Z -??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$CTypeInfoBuilder@M$S@v8@@QEAAAEAV01@AEBV01@@Z -??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$CTypeInfoBuilder@N$S@v8@@QEAAAEAV01@AEBV01@@Z -??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$MemorySpan@$$CBD@v8@@QEAAAEAV01@AEBV01@@Z -??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$MemorySpan@$$CBE@v8@@QEAAAEAV01@AEBV01@@Z -??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@$$QEAV01@@Z -??4?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEAAAEAV01@AEBV01@@Z -??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAV012@$$QEAV012@@Z -??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAV012@AEBV012@@Z -??4?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@2@@Z -??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAV012@$$QEAV012@@Z -??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAV012@AEBV012@@Z -??4?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAV012@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@2@@Z -??4ActivityControl@v8@@QEAAAEAV01@AEBV01@@Z -??4AgeTable@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4AgeTable@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4AllocationHandle@cppgc@@QEAAAEAV01@$$QEAV01@@Z -??4AllocationHandle@cppgc@@QEAAAEAV01@AEBV01@@Z -??4AllocationProfile@v8@@QEAAAEAV01@AEBV01@@Z -??4Allocator@ArrayBuffer@v8@@QEAAAEAV012@AEBV012@@Z -??4Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Array@v8@@QEAAAEAV01@AEBV01@@Z -??4ArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z -??4ArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z -??4ArrayBufferAllocator@node@@QEAAAEAV01@$$QEAV01@@Z -??4ArrayBufferAllocator@node@@QEAAAEAV01@AEBV01@@Z -??4ArrayBufferView@v8@@QEAAAEAV01@$$QEAV01@@Z -??4ArrayBufferView@v8@@QEAAAEAV01@AEBV01@@Z -??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@$$QEAV012@@Z -??4AtomicsWaitWakeHandle@Isolate@v8@@QEAAAEAV012@AEBV012@@Z -??4BackingStore@v8@@QEAAAEAV01@AEBV01@@Z -??4BackupIncumbentScope@Context@v8@@QEAAAEAV012@AEBV012@@Z -??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z -??4BaseObjectSizeTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z -??4BigInt64Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4BigInt64Array@v8@@QEAAAEAV01@AEBV01@@Z -??4BigInt@v8@@QEAAAEAV01@$$QEAV01@@Z -??4BigInt@v8@@QEAAAEAV01@AEBV01@@Z -??4BigIntObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4BigIntObject@v8@@QEAAAEAV01@AEBV01@@Z -??4BigUint64Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4BigUint64Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Binary@protocol@v8_inspector@@QEAAAEAV012@$$QEAV012@@Z -??4Binary@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z -??4Boolean@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Boolean@v8@@QEAAAEAV01@AEBV01@@Z -??4BooleanObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4BooleanObject@v8@@QEAAAEAV01@AEBV01@@Z -??4CFunction@v8@@QEAAAEAV01@$$QEAV01@@Z -??4CFunction@v8@@QEAAAEAV01@AEBV01@@Z -??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4CageBaseGlobal@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4CagedHeapBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4Channel@V8Inspector@v8_inspector@@QEAAAEAV012@AEBV012@@Z -??4CodeEvent@v8@@QEAAAEAV01@$$QEAV01@@Z -??4CodeEvent@v8@@QEAAAEAV01@AEBV01@@Z -??4CommandLineAPIScope@V8InspectorSession@v8_inspector@@QEAAAEAV012@AEBV012@@Z -??4Context@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Context@v8@@QEAAAEAV01@AEBV01@@Z -??4CppHeap@v8@@QEAAAEAV01@AEBV01@@Z -??4CpuProfile@v8@@QEAAAEAV01@$$QEAV01@@Z -??4CpuProfile@v8@@QEAAAEAV01@AEBV01@@Z -??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@$$QEAU01@@Z -??4CpuProfileDeoptInfo@v8@@QEAAAEAU01@AEBU01@@Z -??4CpuProfileNode@v8@@QEAAAEAV01@$$QEAV01@@Z -??4CpuProfileNode@v8@@QEAAAEAV01@AEBV01@@Z -??4CpuProfilingOptions@v8@@QEAAAEAV01@$$QEAV01@@Z -??4CreateParams@Isolate@v8@@QEAAAEAU012@$$QEAU012@@Z -??4CreateParams@Isolate@v8@@QEAAAEAU012@AEBU012@@Z -??4Data@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Data@v8@@QEAAAEAV01@AEBV01@@Z -??4DataView@v8@@QEAAAEAV01@$$QEAV01@@Z -??4DataView@v8@@QEAAAEAV01@AEBV01@@Z -??4Date@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Date@v8@@QEAAAEAV01@AEBV01@@Z -??4Delegate@ValueDeserializer@v8@@QEAAAEAV012@AEBV012@@Z -??4Delegate@ValueSerializer@v8@@QEAAAEAV012@AEBV012@@Z -??4DeleteACHHandle@node@@QEAAAEAU01@$$QEAU01@@Z -??4DeleteACHHandle@node@@QEAAAEAU01@AEBU01@@Z -??4DiscardedSamplesDelegate@v8@@QEAAAEAV01@AEBV01@@Z -??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z -??4Domain@API@Schema@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z -??4EmbedderGraph@v8@@QEAAAEAV01@AEBV01@@Z -??4EmbedderRootsHandler@v8@@QEAAAEAV01@AEBV01@@Z -??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z -??4EnsureGCInfoIndexTrait@internal@cppgc@@QEAAAEAU012@AEBU012@@Z -??4Exception@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Exception@v8@@QEAAAEAV01@AEBV01@@Z -??4Exported@protocol@v8_inspector@@QEAAAEAV012@AEBV012@@Z -??4External@v8@@QEAAAEAV01@$$QEAV01@@Z -??4External@v8@@QEAAAEAV01@AEBV01@@Z -??4ExternalResourceVisitor@v8@@QEAAAEAV01@AEBV01@@Z -??4ExternalSourceStream@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z -??4FixedArray@v8@@QEAAAEAV01@$$QEAV01@@Z -??4FixedArray@v8@@QEAAAEAV01@AEBV01@@Z -??4Float32Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Float32Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Float64Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Float64Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Function@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Function@v8@@QEAAAEAV01@AEBV01@@Z -??4FunctionTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z -??4FunctionTemplate@v8@@QEAAAEAV01@AEBV01@@Z -??4Heap@cppgc@@QEAAAEAV01@AEBV01@@Z -??4HeapCodeStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapCodeStatistics@v8@@QEAAAEAV01@AEBV01@@Z -??4HeapGraphEdge@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapGraphEdge@v8@@QEAAAEAV01@AEBV01@@Z -??4HeapGraphNode@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapGraphNode@v8@@QEAAAEAV01@AEBV01@@Z -??4HeapObjectStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapObjectStatistics@v8@@QEAAAEAV01@AEBV01@@Z -??4HeapSnapshot@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapSnapshot@v8@@QEAAAEAV01@AEBV01@@Z -??4HeapSpaceStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapSpaceStatistics@v8@@QEAAAEAV01@AEBV01@@Z -??4HeapState@subtle@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4HeapState@subtle@cppgc@@QEAAAEAV012@AEBV012@@Z -??4HeapStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z -??4HeapStatistics@v8@@QEAAAEAV01@AEBV01@@Z -??4InitializationResult@node@@QEAAAEAV01@AEBV01@@Z -??4Inspectable@V8InspectorSession@v8_inspector@@QEAAAEAV012@AEBV012@@Z -??4Int16Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Int16Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Int32@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Int32@v8@@QEAAAEAV01@AEBV01@@Z -??4Int32Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Int32Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Int8Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Int8Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Integer@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Integer@v8@@QEAAAEAV01@AEBV01@@Z -??4IsolatePlatformDelegate@node@@QEAAAEAV01@$$QEAV01@@Z -??4IsolatePlatformDelegate@node@@QEAAAEAV01@AEBV01@@Z -??4JSON@v8@@QEAAAEAV01@$$QEAV01@@Z -??4JSON@v8@@QEAAAEAV01@AEBV01@@Z -??4LivenessBroker@cppgc@@QEAAAEAV01@$$QEAV01@@Z -??4LivenessBroker@cppgc@@QEAAAEAV01@AEBV01@@Z -??4Location@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Location@v8@@QEAAAEAV01@AEBV01@@Z -??4LongTaskStats@metrics@v8@@QEAAAEAU012@$$QEAU012@@Z -??4LongTaskStats@metrics@v8@@QEAAAEAU012@AEBU012@@Z -??4MakeGarbageCollectedTraitInternal@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4MakeGarbageCollectedTraitInternal@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4Map@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Map@v8@@QEAAAEAV01@AEBV01@@Z -??4MeasureMemoryDelegate@v8@@QEAAAEAV01@AEBV01@@Z -??4Message@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Message@v8@@QEAAAEAV01@AEBV01@@Z -??4Module@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Module@v8@@QEAAAEAV01@AEBV01@@Z -??4ModuleRequest@v8@@QEAAAEAV01@$$QEAV01@@Z -??4ModuleRequest@v8@@QEAAAEAV01@AEBV01@@Z -??4MultiIsolatePlatform@node@@QEAAAEAV01@AEBV01@@Z -??4Name@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Name@v8@@QEAAAEAV01@AEBV01@@Z -??4NameProvider@cppgc@@QEAAAEAV01@AEBV01@@Z -??4NameTraitBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4NameTraitBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4Number@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Number@v8@@QEAAAEAV01@AEBV01@@Z -??4NumberObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4NumberObject@v8@@QEAAAEAV01@AEBV01@@Z -??4Object@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Object@v8@@QEAAAEAV01@AEBV01@@Z -??4ObjectTemplate@v8@@QEAAAEAV01@$$QEAV01@@Z -??4ObjectTemplate@v8@@QEAAAEAV01@AEBV01@@Z -??4OutputStream@v8@@QEAAAEAV01@AEBV01@@Z -??4PersistentHandleVisitor@v8@@QEAAAEAV01@AEBV01@@Z -??4PersistentRegionLock@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4Platform@cppgc@@QEAAAEAV01@AEBV01@@Z -??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4PrefinalizerRegistration@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4Primitive@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Primitive@v8@@QEAAAEAV01@AEBV01@@Z -??4PrimitiveArray@v8@@QEAAAEAV01@$$QEAV01@@Z -??4PrimitiveArray@v8@@QEAAAEAV01@AEBV01@@Z -??4Private@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Private@v8@@QEAAAEAV01@AEBV01@@Z -??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@$$QEAV01@@Z -??4ProcessHeapStatistics@cppgc@@QEAAAEAV01@AEBV01@@Z -??4Promise@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Promise@v8@@QEAAAEAV01@AEBV01@@Z -??4Proxy@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Proxy@v8@@QEAAAEAV01@AEBV01@@Z -??4Recorder@metrics@v8@@QEAAAEAV012@AEBV012@@Z -??4RegExp@v8@@QEAAAEAV01@$$QEAV01@@Z -??4RegExp@v8@@QEAAAEAV01@AEBV01@@Z -??4RegisterState@v8@@QEAAAEAU01@AEBU01@@Z -??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z -??4RemoteObject@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z -??4Resolver@Promise@v8@@QEAAAEAV012@$$QEAV012@@Z -??4Resolver@Promise@v8@@QEAAAEAV012@AEBV012@@Z -??4ResourceConstraints@v8@@QEAAAEAV01@$$QEAV01@@Z -??4ResourceConstraints@v8@@QEAAAEAV01@AEBV01@@Z -??4RootVisitor@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4SameThreadEnabledCheckingPolicyBase@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4ScriptOrModule@v8@@QEAAAEAV01@$$QEAV01@@Z -??4ScriptOrModule@v8@@QEAAAEAV01@AEBV01@@Z -??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@$$QEAV012@@Z -??4ScriptStreamingTask@ScriptCompiler@v8@@QEAAAEAV012@AEBV012@@Z -??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z -??4SearchMatch@API@Debugger@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z -??4Set@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Set@v8@@QEAAAEAV01@AEBV01@@Z -??4SharedArrayBuffer@v8@@QEAAAEAV01@$$QEAV01@@Z -??4SharedArrayBuffer@v8@@QEAAAEAV01@AEBV01@@Z -??4SharedMemoryStatistics@v8@@QEAAAEAV01@$$QEAV01@@Z -??4SharedMemoryStatistics@v8@@QEAAAEAV01@AEBV01@@Z -??4SharedValueConveyor@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Signature@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Signature@v8@@QEAAAEAV01@AEBV01@@Z -??4SourceLocation@v8@@QEAAAEAV01@$$QEAV01@@Z -??4SourceLocation@v8@@QEAAAEAV01@AEBV01@@Z -??4StackFrame@v8@@QEAAAEAV01@$$QEAV01@@Z -??4StackFrame@v8@@QEAAAEAV01@AEBV01@@Z -??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z -??4StackTrace@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z -??4StackTrace@v8@@QEAAAEAV01@$$QEAV01@@Z -??4StackTrace@v8@@QEAAAEAV01@AEBV01@@Z -??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@$$QEAV01234@@Z -??4StackTraceId@API@Runtime@protocol@v8_inspector@@QEAAAEAV01234@AEBV01234@@Z -??4StartupData@v8@@QEAAAEAV01@$$QEAV01@@Z -??4StartupData@v8@@QEAAAEAV01@AEBV01@@Z -??4String@v8@@QEAAAEAV01@$$QEAV01@@Z -??4String@v8@@QEAAAEAV01@AEBV01@@Z -??4StringBuffer@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4StringObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4StringObject@v8@@QEAAAEAV01@AEBV01@@Z -??4StringView@v8_inspector@@QEAAAEAV01@$$QEAV01@@Z -??4StringView@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4Symbol@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Symbol@v8@@QEAAAEAV01@AEBV01@@Z -??4SymbolObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4SymbolObject@v8@@QEAAAEAV01@AEBV01@@Z -??4Template@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Template@v8@@QEAAAEAV01@AEBV01@@Z -??4TickSample@internal@v8@@QEAAAEAU012@$$QEAU012@@Z -??4TickSample@internal@v8@@QEAAAEAU012@AEBU012@@Z -??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@$$QEAU012@@Z -??4TraceTraitFromInnerAddressImpl@internal@cppgc@@QEAAAEAU012@AEBU012@@Z -??4TypedArray@v8@@QEAAAEAV01@$$QEAV01@@Z -??4TypedArray@v8@@QEAAAEAV01@AEBV01@@Z -??4Uint16Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Uint16Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Uint32@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Uint32@v8@@QEAAAEAV01@AEBV01@@Z -??4Uint32Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Uint32Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Uint8Array@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Uint8Array@v8@@QEAAAEAV01@AEBV01@@Z -??4Uint8ClampedArray@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Uint8ClampedArray@v8@@QEAAAEAV01@AEBV01@@Z -??4UnboundModuleScript@v8@@QEAAAEAV01@$$QEAV01@@Z -??4UnboundModuleScript@v8@@QEAAAEAV01@AEBV01@@Z -??4UnboundScript@v8@@QEAAAEAV01@$$QEAV01@@Z -??4UnboundScript@v8@@QEAAAEAV01@AEBV01@@Z -??4Unlocker@v8@@QEAAAEAV01@AEBV01@@Z -??4Unwinder@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Unwinder@v8@@QEAAAEAV01@AEBV01@@Z -??4V8@v8@@QEAAAEAV01@$$QEAV01@@Z -??4V8@v8@@QEAAAEAV01@AEBV01@@Z -??4V8DebuggerId@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4V8Inspector@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4V8InspectorClient@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4V8InspectorSession@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4V8StackFrame@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z -??4V8StackFrame@v8_inspector@@QEAAAEAU01@AEBU01@@Z -??4V8StackTrace@v8_inspector@@QEAAAEAV01@AEBV01@@Z -??4V8StackTraceId@v8_inspector@@QEAAAEAU01@$$QEAU01@@Z -??4V8StackTraceId@v8_inspector@@QEAAAEAU01@AEBU01@@Z -??4Value@v8@@QEAAAEAV01@$$QEAV01@@Z -??4Value@v8@@QEAAAEAV01@AEBV01@@Z -??4Version@internal@v8@@QEAAAEAV012@$$QEAV012@@Z -??4Version@internal@v8@@QEAAAEAV012@AEBV012@@Z -??4Visitor@cppgc@@QEAAAEAV01@AEBV01@@Z -??4WasmMemoryObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4WasmMemoryObject@v8@@QEAAAEAV01@AEBV01@@Z -??4WasmModuleObject@v8@@QEAAAEAV01@$$QEAV01@@Z -??4WasmModuleObject@v8@@QEAAAEAV01@AEBV01@@Z -??4WebDriverValue@v8_inspector@@QEAAAEAV01@$$QEAV01@@Z -??4WriteBarrier@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4WriteBarrier@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4WriteBarrierTypeForCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@$$QEAV012@@Z -??4WriteBarrierTypeForNonCagedHeapPolicy@internal@cppgc@@QEAAAEAV012@AEBV012@@Z -??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z -??A?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z -??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z -??A?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z -??DUtf8Value@String@v8@@QEAAPEADXZ -??DUtf8Value@String@v8@@QEBAPEBDXZ -??DValue@String@v8@@QEAAPEAGXZ -??DValue@String@v8@@QEBAPEBGXZ -??RDeleteACHHandle@node@@QEBAXPEAUACHHandle@1@@Z -??_7ActivityControl@v8@@6B@ DATA -??_7AllocationProfile@v8@@6B@ DATA -??_7Allocator@ArrayBuffer@v8@@6B@ DATA -??_7ArrayBufferAllocator@node@@6B@ DATA -??_7AsyncResource@node@@6B@ DATA -??_7Channel@V8Inspector@v8_inspector@@6B@ DATA -??_7CodeEventHandler@v8@@6B@ DATA -??_7CommandLineAPIScope@V8InspectorSession@v8_inspector@@6B@ DATA -??_7CppHeap@v8@@6B@ DATA -??_7Delegate@ValueDeserializer@v8@@6B@ DATA -??_7Delegate@ValueSerializer@v8@@6B@ DATA -??_7DiscardedSamplesDelegate@v8@@6B@ DATA -??_7Domain@API@Schema@protocol@v8_inspector@@6B@ DATA -??_7EmbedderGraph@v8@@6B@ DATA -??_7EmbedderRootsHandler@v8@@6B@ DATA -??_7Exported@protocol@v8_inspector@@6B@ DATA -??_7Extension@v8@@6B@ DATA -??_7ExternalOneByteStringResource@String@v8@@6B@ DATA -??_7ExternalResourceVisitor@v8@@6B@ DATA -??_7ExternalSourceStream@ScriptCompiler@v8@@6B@ DATA -??_7ExternalStringResource@String@v8@@6B@ DATA -??_7ExternalStringResourceBase@String@v8@@6B@ DATA -??_7Heap@cppgc@@6B@ DATA -??_7InitializationResult@node@@6B@ DATA -??_7Inspectable@V8InspectorSession@v8_inspector@@6B@ DATA -??_7IsolatePlatformDelegate@node@@6B@ DATA -??_7MeasureMemoryDelegate@v8@@6B@ DATA -??_7MicrotaskQueue@v8@@6B@ DATA -??_7MultiIsolatePlatform@node@@6B@ DATA -??_7NameProvider@cppgc@@6B@ DATA -??_7OutputStream@v8@@6B@ DATA -??_7PersistentHandleVisitor@v8@@6B@ DATA -??_7Platform@cppgc@@6B@ DATA -??_7Recorder@metrics@v8@@6B@ DATA -??_7RemoteObject@API@Runtime@protocol@v8_inspector@@6B@ DATA -??_7RootVisitor@internal@cppgc@@6B@ DATA -??_7SearchMatch@API@Debugger@protocol@v8_inspector@@6B@ DATA -??_7StackTrace@API@Runtime@protocol@v8_inspector@@6B@ DATA -??_7StackTraceId@API@Runtime@protocol@v8_inspector@@6B@ DATA -??_7StringBuffer@v8_inspector@@6B@ DATA -??_7V8Inspector@v8_inspector@@6B@ DATA -??_7V8InspectorClient@v8_inspector@@6B@ DATA -??_7V8InspectorSession@v8_inspector@@6B@ DATA -??_7V8StackTrace@v8_inspector@@6B@ DATA -??_7Visitor@cppgc@@6B@ DATA -??_FCpuProfilingOptions@v8@@QEAAXXZ -??_FSnapshotCreator@v8@@QEAAXXZ -??_UEscapableHandleScope@v8@@CAPEAX_K@Z -??_UGlobalGCInfoTable@internal@cppgc@@CAPEAX_K@Z -??_UHandleScope@v8@@CAPEAX_K@Z -??_USealHandleScope@v8@@CAPEAX_K@Z -??_UTryCatch@v8@@CAPEAX_K@Z -??_VEscapableHandleScope@v8@@CAXPEAX_K@Z -??_VGlobalGCInfoTable@internal@cppgc@@CAXPEAX_K@Z -??_VHandleScope@v8@@CAXPEAX_K@Z -??_VSealHandleScope@v8@@CAXPEAX_K@Z -??_VTryCatch@v8@@CAXPEAX_K@Z -?Abort@WasmStreaming@v8@@QEAAXV?$MaybeLocal@VValue@v8@@@2@@Z -?Add@Set@v8@@QEAA?AV?$MaybeLocal@VSet@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?AddBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z -?AddBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z -?AddCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z -?AddContext@SnapshotCreator@v8@@QEAA_KV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@@Z -?AddData@SnapshotCreator@v8@@AEAA_KV?$Local@VContext@v8@@@2@_K@Z -?AddData@SnapshotCreator@v8@@AEAA_K_K@Z -?AddEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z -?AddEnvironmentCleanupHookInternal@node@@YAPEAUACHHandle@1@PEAVIsolate@v8@@P6AXPEAXP6AX1@Z1@Z1@Z -?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z -?AddGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z -?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z1@Z -?AddGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z31@Z -?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnapi_module@@@Z -?AddLinkedBinding@node@@YAXPEAVEnvironment@1@AEBUnode_module@1@@Z -?AddLinkedBinding@node@@YAXPEAVEnvironment@1@PEBDP6AXV?$Local@VObject@v8@@@v8@@V?$Local@VValue@v8@@@4@V?$Local@VContext@v8@@@4@PEAX@Z5@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalMark@metrics@v8@@@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBU?$GarbageCollectionBatchedEvents@UGarbageCollectionFullMainThreadIncrementalSweep@metrics@v8@@@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullCycle@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalMark@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionFullMainThreadIncrementalSweep@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUGarbageCollectionYoungCycle@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleCompiled@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleDecoded@23@VContextId@123@@Z -?AddMainThreadEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModuleInstantiated@23@VContextId@123@@Z -?AddMessageListener@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z1@Z -?AddMessageListenerWithErrorLevel@Isolate@v8@@QEAA_NP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@ZH1@Z -?AddMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z -?AddNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z0@Z -?AddThreadSafeEvent@Recorder@metrics@v8@@UEAAXAEBUWasmModulesPerIsolate@23@@Z -?AdjustAmountOfExternalAllocatedMemory@Isolate@v8@@QEAA_J_J@Z -?AdoptSharedValueConveyor@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@$$QEAVSharedValueConveyor@3@@Z -?Allocate@Isolate@v8@@SAPEAV12@XZ -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KG@Z -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KGUCustomSpaceIndex@3@@Z -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@G@Z -?Allocate@MakeGarbageCollectedTraitInternal@internal@cppgc@@CAPEAXAEAVAllocationHandle@3@_KW4AlignVal@23@GUCustomSpaceIndex@3@@Z -?AllocateEnvironmentThreadId@node@@YA?AUThreadId@1@XZ -?AllocateNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z -?AllocateNode@PersistentRegion@internal@cppgc@@QEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z -?AllowCodeGenerationFromStrings@Context@v8@@QEAAX_N@Z -?AllowWasmCodeGenerationCallback@node@@YA_NV?$Local@VContext@v8@@@v8@@V?$Local@VString@v8@@@3@@Z -?Ambiguous@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?AnnotateStrongRetainer@api_internal@v8@@YAXPEA_KPEBD@Z -?AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z -?ArgumentCount@CFunction@v8@@QEBAIXZ -?ArgumentCount@CFunctionInfo@v8@@QEBAIXZ -?ArgumentInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@I@Z -?ArgumentInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@I@Z -?AsArray@Map@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ -?AsArray@Set@v8@@QEBA?AV?$Local@VArray@v8@@@2@XZ -?Assert@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?AssertLocked@PersistentRegionLock@internal@cppgc@@SAXXZ -?AsyncHooksGetExecutionAsyncId@node@@YANPEAVIsolate@v8@@@Z -?AsyncHooksGetTriggerAsyncId@node@@YANPEAVIsolate@v8@@@Z -?AtExit@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z -?AttachCppHeap@Isolate@v8@@QEAAXPEAVCppHeap@2@@Z -?AutomaticallyRestoreInitialHeapLimit@Isolate@v8@@QEAAXN@Z -?BindToCurrentContext@UnboundScript@v8@@QEAA?AV?$Local@VScript@v8@@@2@XZ -?BooleanValue@Value@v8@@QEBA_NPEAVIsolate@2@@Z -?Buffer@ArrayBufferView@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ -?Buffer@WasmMemoryObject@v8@@QEAA?AV?$Local@VArrayBuffer@v8@@@2@XZ -?Build@?$CTypeInfoBuilder@H$S@v8@@SA?AVCTypeInfo@2@XZ -?Build@?$CTypeInfoBuilder@I$S@v8@@SA?AVCTypeInfo@2@XZ -?Build@?$CTypeInfoBuilder@M$S@v8@@SA?AVCTypeInfo@2@XZ -?Build@?$CTypeInfoBuilder@N$S@v8@@SA?AVCTypeInfo@2@XZ -?ByteLength@ArrayBuffer@v8@@QEBA_KXZ -?ByteLength@ArrayBufferView@v8@@QEAA_KXZ -?ByteLength@BackingStore@v8@@QEBA_KXZ -?ByteLength@SharedArrayBuffer@v8@@QEBA_KXZ -?ByteOffset@ArrayBufferView@v8@@QEAA_KXZ -?CSPViolation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?Call@Function@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z -?CallAsConstructor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z -?CallAsFunction@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@HQEAV52@@Z -?CanBeRehashed@StartupData@v8@@QEBA_NXZ -?CanContinue@TryCatch@v8@@QEBA_NXZ -?CanMakeExternal@String@v8@@QEBA_NW4Encoding@12@@Z -?CanMakeExternal@String@v8@@QEBA_NXZ -?CancelTerminateExecution@Isolate@v8@@QEAAXXZ -?Cast@Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@ArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@ArrayBufferView@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@BigInt64Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@BigInt@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@BigIntObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@BigUint64Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Boolean@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@BooleanObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Context@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@DataView@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Date@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@External@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@FixedArray@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Float32Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Float64Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Function@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@FunctionTemplate@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Int16Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Int32@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Int32Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Int8Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Integer@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Map@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Module@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@ModuleRequest@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Name@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Number@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@NumberObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Object@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@ObjectTemplate@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@PrimitiveArray@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Private@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Promise@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Proxy@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@RegExp@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Resolver@Promise@v8@@SAPEAV123@PEAVValue@3@@Z -?Cast@Set@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@SharedArrayBuffer@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Signature@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@String@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@StringObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Symbol@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@SymbolObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@TypedArray@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Uint16Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Uint32@v8@@SAPEAV12@PEAVData@2@@Z -?Cast@Uint32Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Uint8Array@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@Uint8ClampedArray@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@WasmMemoryObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Cast@WasmModuleObject@v8@@SAPEAV12@PEAVValue@2@@Z -?Catch@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z -?CheckCachedDataInvariants@ExternalOneByteStringResource@String@v8@@AEBAXXZ -?CheckCachedDataInvariants@ExternalStringResource@String@v8@@AEBAXXZ -?CheckCast@Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@ArrayBuffer@v8@@CAXPEAVValue@2@@Z -?CheckCast@ArrayBufferView@v8@@CAXPEAVValue@2@@Z -?CheckCast@BigInt64Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@BigInt@v8@@CAXPEAVData@2@@Z -?CheckCast@BigIntObject@v8@@CAXPEAVValue@2@@Z -?CheckCast@BigUint64Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Boolean@v8@@CAXPEAVData@2@@Z -?CheckCast@BooleanObject@v8@@CAXPEAVValue@2@@Z -?CheckCast@Context@v8@@CAXPEAVData@2@@Z -?CheckCast@DataView@v8@@CAXPEAVValue@2@@Z -?CheckCast@Date@v8@@CAXPEAVValue@2@@Z -?CheckCast@External@v8@@CAXPEAVValue@2@@Z -?CheckCast@FixedArray@v8@@CAXPEAVData@2@@Z -?CheckCast@Float32Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Float64Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Function@v8@@CAXPEAVValue@2@@Z -?CheckCast@FunctionTemplate@v8@@CAXPEAVData@2@@Z -?CheckCast@Int16Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Int32@v8@@CAXPEAVData@2@@Z -?CheckCast@Int32Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Int8Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Integer@v8@@CAXPEAVData@2@@Z -?CheckCast@Map@v8@@CAXPEAVValue@2@@Z -?CheckCast@Module@v8@@CAXPEAVData@2@@Z -?CheckCast@ModuleRequest@v8@@CAXPEAVData@2@@Z -?CheckCast@Name@v8@@CAXPEAVData@2@@Z -?CheckCast@Number@v8@@CAXPEAVData@2@@Z -?CheckCast@NumberObject@v8@@CAXPEAVValue@2@@Z -?CheckCast@Object@v8@@CAXPEAVValue@2@@Z -?CheckCast@ObjectTemplate@v8@@CAXPEAVData@2@@Z -?CheckCast@PrimitiveArray@v8@@CAXPEAVData@2@@Z -?CheckCast@Private@v8@@CAXPEAVData@2@@Z -?CheckCast@Promise@v8@@CAXPEAVValue@2@@Z -?CheckCast@Proxy@v8@@CAXPEAVValue@2@@Z -?CheckCast@RegExp@v8@@CAXPEAVValue@2@@Z -?CheckCast@Resolver@Promise@v8@@CAXPEAVValue@3@@Z -?CheckCast@Set@v8@@CAXPEAVValue@2@@Z -?CheckCast@SharedArrayBuffer@v8@@CAXPEAVValue@2@@Z -?CheckCast@Signature@v8@@CAXPEAVData@2@@Z -?CheckCast@String@v8@@CAXPEAVData@2@@Z -?CheckCast@StringObject@v8@@CAXPEAVValue@2@@Z -?CheckCast@Symbol@v8@@CAXPEAVData@2@@Z -?CheckCast@SymbolObject@v8@@CAXPEAVValue@2@@Z -?CheckCast@TypedArray@v8@@CAXPEAVValue@2@@Z -?CheckCast@Uint16Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Uint32@v8@@CAXPEAVData@2@@Z -?CheckCast@Uint32Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Uint8Array@v8@@CAXPEAVValue@2@@Z -?CheckCast@Uint8ClampedArray@v8@@CAXPEAVValue@2@@Z -?CheckCast@Value@v8@@CAXPEAVData@2@@Z -?CheckCast@WasmMemoryObject@v8@@CAXPEAVValue@2@@Z -?CheckCast@WasmModuleObject@v8@@CAXPEAVValue@2@@Z -?CheckInitializedImpl@Internals@internal@v8@@SAXPEAVIsolate@3@@Z -?CheckMemoryIsZeroed@GCInfoTable@internal@cppgc@@AEAAXPEA_K_K@Z -?CheckParams@WriteBarrier@internal@cppgc@@SAXW4Type@123@AEBUParams@123@@Z -?CheckPointerImpl@SameThreadEnabledCheckingPolicyBase@internal@cppgc@@IEAAXPEBX_N1@Z -?CheckValue@TracedReferenceBase@v8@@IEBAXXZ -?Clear@Map@v8@@QEAAXXZ -?Clear@Set@v8@@QEAAXXZ -?ClearAllUsedNodes@CrossThreadPersistentRegion@internal@cppgc@@QEAAXXZ -?ClearAllUsedNodes@PersistentRegionBase@internal@cppgc@@QEAAXXZ -?ClearCachesForTesting@Isolate@v8@@QEAAXXZ -?ClearKeptObjects@Isolate@v8@@QEAAXXZ -?ClearObjectIds@HeapProfiler@v8@@QEAAXXZ -?ClearWeak@api_internal@v8@@YAPEAXPEA_K@Z -?Clone@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ -?CollectCustomSpaceStatisticsAtLastGC@CppHeap@v8@@QEAAXV?$vector@UCustomSpaceIndex@cppgc@@V?$allocator@UCustomSpaceIndex@cppgc@@@Cr@std@@@Cr@std@@V?$unique_ptr@VCustomSpaceStatisticsReceiver@v8@@U?$default_delete@VCustomSpaceStatisticsReceiver@v8@@@Cr@std@@@45@@Z -?CollectGarbageForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z -?CollectGarbageInYoungGenerationForTesting@CppHeap@v8@@QEAAXW4EmbedderStackState@cppgc@@@Z -?CollectSample@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z -?CollectStatistics@CppHeap@v8@@QEAA?AUHeapStatistics@cppgc@@W4DetailLevel@34@@Z -?ColumnOffset@ScriptOrigin@v8@@QEBAHXZ -?Compile@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@V?$MemorySpan@$$CBE@2@@Z -?Concat@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@V32@1@Z -?ConfigureDefaults@ResourceConstraints@v8@@QEAAX_K0@Z -?ConfigureDefaultsFromHeapSize@ResourceConstraints@v8@@QEAAX_K0@Z -?ContainsOnlyOneByte@String@v8@@QEBA_NXZ -?ContextDisposedNotification@Isolate@v8@@QEAAH_N@Z -?Copy@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEBD_K@Z -?CopyCodePages@Isolate@v8@@QEAA_K_KPEAUMemoryRange@2@@Z -?CopyContents@ArrayBufferView@v8@@QEAA_KPEAX_K@Z -?CopyGlobalReference@api_internal@v8@@YAPEA_KPEA_K@Z -?CopyTracedReference@internal@v8@@YAXPEBQEB_KPEAPEA_K@Z -?Create@ArrayBufferAllocator@node@@SA?AV?$unique_ptr@VArrayBufferAllocator@node@@U?$default_delete@VArrayBufferAllocator@node@@@Cr@std@@@Cr@std@@_N@Z -?Create@CppHeap@v8@@SA?AV?$unique_ptr@VCppHeap@v8@@U?$default_delete@VCppHeap@v8@@@Cr@std@@@Cr@std@@PEAVPlatform@2@AEBUCppHeapCreateParams@2@@Z -?Create@Heap@cppgc@@SA?AV?$unique_ptr@VHeap@cppgc@@U?$default_delete@VHeap@cppgc@@@Cr@std@@@Cr@std@@V?$shared_ptr@VPlatform@cppgc@@@45@UHeapOptions@12@@Z -?Create@MultiIsolatePlatform@node@@SA?AV?$unique_ptr@VMultiIsolatePlatform@node@@U?$default_delete@VMultiIsolatePlatform@node@@@Cr@std@@@Cr@std@@HPEAVTracingController@v8@@PEAVPageAllocator@7@@Z -?CreateAgent@node@@YAPEAVAgent@tracing@1@XZ -?CreateArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@XZ -?CreateBlob@SnapshotCreator@v8@@QEAA?AVStartupData@2@W4FunctionCodeHandling@12@@Z -?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z -?CreateDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?CreateEnvironment@node@@YAPEAVEnvironment@1@PEAVIsolateData@1@V?$Local@VContext@v8@@@v8@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@2W4Flags@EnvironmentFlags@1@UThreadId@1@V?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@Cr@std@@@78@@Z -?CreateHandle@HandleScope@v8@@KAPEA_KPEAVIsolate@internal@2@_K@Z -?CreateIsolateData@node@@YAPEAVIsolateData@1@PEAVIsolate@v8@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@PEAVArrayBufferAllocator@1@@Z -?CreateMessage@Exception@v8@@SA?AV?$Local@VMessage@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z -?CreatePlatform@node@@YAPEAVMultiIsolatePlatform@1@HPEAVTracingController@v8@@@Z -?CreateSyntheticModule@Module@v8@@SA?AV?$Local@VModule@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@AEBV?$vector@V?$Local@VString@v8@@@v8@@V?$allocator@V?$Local@VString@v8@@@v8@@@Cr@std@@@Cr@std@@P6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V32@@Z@Z -?Current@SourceLocation@v8@@SA?AV12@PEBD0_K@Z -?CurrentScriptNameOrSourceURL@StackTrace@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z -?CurrentStackTrace@StackTrace@v8@@SA?AV?$Local@VStackTrace@v8@@@2@PEAVIsolate@2@HW4StackTraceOptions@12@@Z -?DCheckImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z -?DOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?Data@ArrayBuffer@v8@@QEBAPEAXXZ -?Data@BackingStore@v8@@QEBAPEAXXZ -?Data@Buffer@node@@YAPEADV?$Local@VObject@v8@@@v8@@@Z -?Data@Buffer@node@@YAPEADV?$Local@VValue@v8@@@v8@@@Z -?Data@SharedArrayBuffer@v8@@QEBAPEAXXZ -?DateTimeConfigurationChangeNotification@Isolate@v8@@QEAAXW4TimeZoneDetection@12@@Z -?DebugCommand@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?DecodeBytes@node@@YA_JPEAVIsolate@v8@@V?$Local@VValue@v8@@@3@W4encoding@1@@Z -?DecodeWrite@node@@YA_JPEAVIsolate@v8@@PEAD_KV?$Local@VValue@v8@@@3@W4encoding@1@@Z -?DeepFreeze@Context@v8@@QEAA?AV?$Maybe@X@2@PEAVDeepFreezeDelegate@12@@Z -?Default@MeasureMemoryDelegate@v8@@SA?AV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@Cr@std@@@Cr@std@@PEAVIsolate@2@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@W4MeasureMemoryMode@2@@Z -?DefaultProcessExitHandler@node@@YAXPEAVEnvironment@1@H@Z -?DeferTraceToMutatorThreadIfConcurrent@Visitor@cppgc@@UEAA_NPEBXP6AXPEAV12@0@Z_K@Z -?DefineOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@V?$Local@VValue@v8@@@2@W4PropertyAttribute@2@@Z -?DefineProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@AEAVPropertyDescriptor@2@@Z -?Delete@CpuProfile@v8@@QEAAXXZ -?Delete@HeapSnapshot@v8@@QEAAXXZ -?Delete@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z -?Delete@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Delete@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?DeleteAllHeapSnapshots@HeapProfiler@v8@@QEAAXXZ -?DeletePrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z -?Description@Symbol@v8@@QEBA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@@Z -?Detach@ArrayBuffer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VValue@v8@@@2@@Z -?Detach@ArrayBuffer@v8@@QEAAXXZ -?DetachCppHeap@Isolate@v8@@QEAAXXZ -?DetachGlobal@Context@v8@@QEAAXXZ -?DijkstraMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z -?DijkstraMarkingBarrierRange@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z -?DijkstraMarkingBarrierRangeSlow@WriteBarrier@internal@cppgc@@CAXAEAVHeapHandle@3@PEBX_K2P6AXPEAVVisitor@3@1@Z@Z -?DijkstraMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z -?DijkstraMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z -?Disable@CodeEventHandler@v8@@QEAAXXZ -?DisableMemorySavingsMode@Isolate@v8@@QEAAXXZ -?DiscardThreadSpecificMetadata@Isolate@v8@@QEAAXXZ -?Dispose@CpuProfiler@v8@@QEAAXXZ -?Dispose@ExternalStringResourceBase@String@v8@@MEAAXXZ -?Dispose@Isolate@v8@@QEAAXXZ -?Dispose@V8@v8@@SA_NXZ -?DisposeGlobal@api_internal@v8@@YAXPEA_K@Z -?DisposePlatform@V8@v8@@SAXXZ -?DisposeTracedReference@internal@v8@@YAXPEA_K@Z -?DumpAndResetStats@Isolate@v8@@QEAAXXZ -?DumpAsyncTaskStacksStateForTest@v8_inspector@@YAXPEAVV8Inspector@1@@Z -?EmitAsyncDestroy@node@@YAXPEAVEnvironment@1@Uasync_context@1@@Z -?EmitAsyncDestroy@node@@YAXPEAVIsolate@v8@@Uasync_context@1@@Z -?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@PEBDN@Z -?EmitAsyncInit@node@@YA?AUasync_context@1@PEAVIsolate@v8@@V?$Local@VObject@v8@@@4@V?$Local@VString@v8@@@4@N@Z -?EmitBeforeExit@node@@YAXPEAVEnvironment@1@@Z -?EmitExit@node@@YAHPEAVEnvironment@1@@Z -?EmitProcessBeforeExit@node@@YA?AV?$Maybe@_N@v8@@PEAVEnvironment@1@@Z -?EmitProcessExit@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z -?Empty@String@v8@@SA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z -?EmptyDeleter@BackingStore@v8@@SAXPEAX_K0@Z -?Enable@CodeEventHandler@v8@@QEAAXXZ -?EnableDetachedGarbageCollectionsForTesting@CppHeap@v8@@QEAAXXZ -?EnableMemorySavingsMode@Isolate@v8@@QEAAXXZ -?EnableTrapHandler@trap_handler@internal@v8@@YA_N_N@Z -?EnableWebAssemblyTrapHandler@V8@v8@@SA_N_N@Z -?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBD_KW4encoding@1@@Z -?Encode@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@PEBG_K@Z -?EnqueueMicrotask@Isolate@v8@@QEAAXP6AXPEAX@Z0@Z -?EnqueueMicrotask@Isolate@v8@@QEAAXV?$Local@VFunction@v8@@@2@@Z -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@Z@Z -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@Z@Z -?EnsureGCInfoIndexNonPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@Z@Z -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@Z@Z -?EnsureGCInfoIndexPolymorphic@EnsureGCInfoIndexTrait@internal@cppgc@@CUXAEAU?$atomic@G@Cr@std@@P6AXPEAVVisitor@3@PEBX@ZP6AXPEAX@ZP6A?AUHeapObjectName@23@2W4HeapObjectNameForUnnamedObject@23@@Z@Z -?Enter@Context@v8@@QEAAXXZ -?Enter@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z -?Enter@Isolate@v8@@QEAAXXZ -?Enter@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z -?Equals@Value@v8@@QEBA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?ErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z -?Error@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?ErrorLevel@Message@v8@@QEBAHXZ -?Escape@EscapableHandleScope@v8@@AEAAPEA_KPEA_K@Z -?Eternalize@api_internal@v8@@YAPEA_KPEAVIsolate@2@PEAVValue@2@@Z -?Evaluate@Module@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?EventListener@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?Exception@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?Exception@TryCatch@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?Exec@RegExp@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z -?Exit@Context@v8@@QEAAXXZ -?Exit@Isolate@v8@@QEAAXXZ -?Experimental_IsNopFunction@Function@v8@@QEBA_NXZ -?Fatal@internal@cppgc@@YAXAEBV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@AEBVSourceLocation@v8@@@Z -?FatalException@node@@YAXPEAVIsolate@v8@@AEBVTryCatch@3@@Z -?FatalImpl@internal@cppgc@@YAXPEBDAEBVSourceLocation@v8@@@Z -?FileName@SourceLocation@v8@@QEBAPEBDXZ -?FinalizeGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXW4EmbedderStackState@3@@Z -?FindInstanceInPrototypeChain@Object@v8@@QEAA?AV?$Local@VObject@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -?FindObjectById@HeapProfiler@v8@@QEAA?AV?$Local@VValue@v8@@@2@I@Z -?Finish@WasmStreaming@v8@@QEAAX_N@Z -?For@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?ForApi@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?ForApi@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?ForceCompactionForNextGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ -?ForceGarbageCollectionSlow@Heap@cppgc@@QEAAXPEBD0W4EmbedderStackState@2@@Z -?FreeArrayBufferAllocator@node@@YAXPEAVArrayBufferAllocator@1@@Z -?FreeBufferMemory@Delegate@ValueSerializer@v8@@UEAAXPEAX@Z -?FreeEnvironment@node@@YAXPEAVEnvironment@1@@Z -?FreeIsolateData@node@@YAXPEAVIsolateData@1@@Z -?FreeNode@CrossThreadPersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z -?FreeNode@PersistentRegion@internal@cppgc@@QEAAXPEAVPersistentNode@23@@Z -?FreeNode@PersistentRegionBase@internal@cppgc@@IEAAXPEAVPersistentNode@23@@Z -?FreePlatform@node@@YAXPEAVMultiIsolatePlatform@1@@Z -?FreeUnreferencedObject@ExplicitManagementImpl@internal@cppgc@@CAXAEAVHeapHandle@3@PEAX@Z -?FromCompiledModule@WasmModuleObject@v8@@SA?AV?$MaybeLocal@VWasmModuleObject@v8@@@2@PEAVIsolate@2@AEBVCompiledWasmModule@2@@Z -?FromJustIsNothing@api_internal@v8@@YAXXZ -?FromSnapshot@Context@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@PEAVIsolate@2@_KUDeserializeInternalFieldsCallback@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VValue@v8@@@2@PEAVMicrotaskQueue@2@@Z -?FullIsNull@Value@v8@@AEBA_NXZ -?FullIsString@Value@v8@@AEBA_NXZ -?FullIsUndefined@Value@v8@@AEBA_NXZ -?Function@SourceLocation@v8@@QEBAPEBDXZ -?FunctionProtoToString@Function@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?GCInfoFromIndex@GCInfoTable@internal@cppgc@@QEBAAEBUGCInfo@23@G@Z -?GCInfoFromIndex@GlobalGCInfoTable@internal@cppgc@@SAAEBUGCInfo@23@G@Z -?GenerationalBarrierForSourceObjectSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@PEBXPEAVHeapHandle@3@@Z -?GenerationalBarrierForUncompressedSlotSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z -?GenerationalBarrierSlow@WriteBarrier@internal@cppgc@@CAXAEBUCagedHeapLocalData@23@AEBVAgeTable@23@PEBX_KPEAVHeapHandle@3@@Z -?Get@CageBaseGlobal@internal@cppgc@@SA_KXZ -?Get@FixedArray@v8@@QEBA?AV?$Local@VData@v8@@@2@V?$Local@VContext@v8@@@2@H@Z -?Get@GlobalGCInfoTable@internal@cppgc@@SAAEBVGCInfoTable@23@XZ -?Get@LongTaskStats@metrics@v8@@SA?AU123@PEAVIsolate@3@@Z -?Get@Map@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Get@Message@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@I@Z -?Get@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Get@PrimitiveArray@v8@@QEAA?AV?$Local@VPrimitive@v8@@@2@PEAVIsolate@2@H@Z -?GetAddress@CFunction@v8@@QEBAPEBXXZ -?GetAge@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K@Z -?GetAgeForRange@AgeTable@internal@cppgc@@QEBA?AW4Age@123@_K0@Z -?GetAlignedPointerFromEmbedderData@Context@v8@@QEAAPEAXH@Z -?GetAlignedPointerFromEmbedderDataInCreationContext@Object@v8@@QEAAPEAXH@Z -?GetAlignedPointerFromInternalField@Object@v8@@QEAAPEAXH@Z -?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$BasicTracedReference@VObject@v8@@@2@H@Z -?GetAlignedPointerFromInternalField@Object@v8@@SAPEAXAEBV?$PersistentBase@VObject@v8@@@2@H@Z -?GetAllocationHandle@CppHeap@v8@@QEAAAEAVAllocationHandle@cppgc@@XZ -?GetAllocationHandle@Heap@cppgc@@QEAAAEAVAllocationHandle@2@XZ -?GetAllocationProfile@HeapProfiler@v8@@QEAAPEAVAllocationProfile@2@XZ -?GetArrayBufferAllocator@Isolate@v8@@QEAAPEAVAllocator@ArrayBuffer@2@XZ -?GetArrayBufferAllocator@node@@YAPEAVArrayBufferAllocator@1@PEAVIsolateData@1@@Z -?GetAsyncIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetBackingStore@ArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@Cr@std@@XZ -?GetBackingStore@SharedArrayBuffer@v8@@QEAA?AV?$shared_ptr@VBackingStore@v8@@@Cr@std@@XZ -?GetBailoutReason@CpuProfileNode@v8@@QEBAPEBDXZ -?GetBase@CagedHeapBase@internal@cppgc@@SA_KXZ -?GetBoundFunction@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetBuild@Version@internal@v8@@SAHXZ -?GetChild@CpuProfileNode@v8@@QEBAPEBV12@H@Z -?GetChild@HeapGraphNode@v8@@QEBAPEBVHeapGraphEdge@2@H@Z -?GetChildrenCount@CpuProfileNode@v8@@QEBAHXZ -?GetChildrenCount@HeapGraphNode@v8@@QEBAHXZ -?GetChunkSize@OutputStream@v8@@UEAAHXZ -?GetCodeEventTypeName@CodeEvent@v8@@SAPEBDW4CodeEventType@2@@Z -?GetCodeRange@Isolate@v8@@QEAAXPEAPEAXPEA_K@Z -?GetCodeSize@CodeEvent@v8@@QEAA_KXZ -?GetCodeStartAddress@CodeEvent@v8@@QEAA_KXZ -?GetCodeType@CodeEvent@v8@@QEAA?AW4CodeEventType@2@XZ -?GetColumn@StackFrame@v8@@QEBAHXZ -?GetColumnNumber@CpuProfileNode@v8@@QEBAHXZ -?GetColumnNumber@Location@v8@@QEAAHXZ -?GetColumnNumber@UnboundScript@v8@@QEAAHH@Z -?GetComment@CodeEvent@v8@@QEAAPEBDXZ -?GetCompiledModule@WasmModuleObject@v8@@QEAA?AVCompiledWasmModule@2@XZ -?GetConstructorName@Object@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ -?GetContext@Recorder@metrics@v8@@SA?AV?$MaybeLocal@VContext@v8@@@3@PEAVIsolate@3@VContextId@123@@Z -?GetContextId@Recorder@metrics@v8@@SA?AVContextId@123@V?$Local@VContext@v8@@@3@@Z -?GetContinuationPreservedEmbedderData@Context@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetCppHeap@Isolate@v8@@QEBAPEAVCppHeap@2@XZ -?GetCreationContext@Object@v8@@QEAA?AV?$MaybeLocal@VContext@v8@@@2@XZ -?GetCreationContext@Object@v8@@SA?AV?$MaybeLocal@VContext@v8@@@2@AEBV?$PersistentBase@VObject@v8@@@2@@Z -?GetCreationContextChecked@Object@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ -?GetCurrent@Isolate@v8@@SAPEAV12@XZ -?GetCurrentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ -?GetCurrentDepth@MicrotasksScope@v8@@SAHPEAVIsolate@2@@Z -?GetCurrentEnvironment@node@@YAPEAVEnvironment@1@V?$Local@VContext@v8@@@v8@@@Z -?GetCurrentEventLoop@node@@YAPEAUuv_loop_s@@PEAVIsolate@v8@@@Z -?GetData@Isolate@v8@@QEAAPEAXI@Z -?GetDataFromSnapshotOnce@Context@v8@@AEAAPEA_K_K@Z -?GetDataFromSnapshotOnce@Isolate@v8@@AEAAPEA_K_K@Z -?GetDebugName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetDeoptInfos@CpuProfileNode@v8@@QEBAAEBV?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@XZ -?GetEmbeddedCodeRange@Isolate@v8@@QEAAXPEAPEBXPEA_K@Z -?GetEmbedder@Version@internal@v8@@SAPEBDXZ -?GetEmbedderData@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@H@Z -?GetEndColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z -?GetEndColumn@Message@v8@@QEBAHXZ -?GetEndPosition@Message@v8@@QEBAHXZ -?GetEndTime@CpuProfile@v8@@QEBA_JXZ -?GetEnteredOrMicrotaskContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ -?GetEnvironmentIsolateData@node@@YAPEAVIsolateData@1@PEAVEnvironment@1@@Z -?GetException@Module@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetExternalOneByteStringResource@String@v8@@QEBAPEBVExternalOneByteStringResource@12@XZ -?GetExternalStringResource@String@v8@@QEBAPEAVExternalStringResource@12@XZ -?GetExternalStringResourceBase@String@v8@@QEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z -?GetExternalStringResourceBaseSlow@String@v8@@AEBAPEAVExternalStringResourceBase@12@PEAW4Encoding@12@@Z -?GetExternalStringResourceSlow@String@v8@@AEBAPEAVExternalStringResource@12@XZ -?GetExtrasBindingObject@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ -?GetFlags@RegExp@v8@@QEBA?AW4Flags@12@XZ -?GetForegroundTaskRunner@Platform@cppgc@@UEAA?AV?$shared_ptr@VTaskRunner@v8@@@Cr@std@@XZ -?GetFrame@StackTrace@v8@@QEBA?AV?$Local@VStackFrame@v8@@@2@PEAVIsolate@2@I@Z -?GetFrameCount@StackTrace@v8@@QEBAHXZ -?GetFromNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ -?GetFunction@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?GetFunctionName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ -?GetFunctionName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetFunctionName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetFunctionNameStr@CpuProfileNode@v8@@QEBAPEBDXZ -?GetHandler@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetHasInstance@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetHeapCodeAndMetadataStatistics@Isolate@v8@@QEAA_NPEAVHeapCodeStatistics@2@@Z -?GetHeapHandle@CppHeap@v8@@QEAAAEAVHeapHandle@cppgc@@XZ -?GetHeapHandle@Heap@cppgc@@QEAAAEAVHeapHandle@2@XZ -?GetHeapObjectStatisticsAtLastGC@Isolate@v8@@QEAA_NPEAVHeapObjectStatistics@2@_K@Z -?GetHeapProfiler@Isolate@v8@@QEAAPEAVHeapProfiler@2@XZ -?GetHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@H@Z -?GetHeapSpaceStatistics@Isolate@v8@@QEAA_NPEAVHeapSpaceStatistics@2@_K@Z -?GetHeapStatistics@Isolate@v8@@QEAAXPEAVHeapStatistics@2@@Z -?GetHeapStats@HeapProfiler@v8@@QEAAIPEAVOutputStream@2@PEA_J@Z -?GetHitCount@CpuProfileNode@v8@@QEBAIXZ -?GetHitLineCount@CpuProfileNode@v8@@QEBAIXZ -?GetHostDefinedOptions@ScriptOrigin@v8@@QEBA?AV?$Local@VData@v8@@@2@XZ -?GetId@DiscardedSamplesDelegate@v8@@QEBAIXZ -?GetId@HeapGraphNode@v8@@QEBAIXZ -?GetId@UnboundScript@v8@@QEBAHXZ -?GetIdentityHash@Module@v8@@QEBAHXZ -?GetIdentityHash@Name@v8@@QEAAHXZ -?GetIdentityHash@Object@v8@@QEAAHXZ -?GetImportAssertions@ModuleRequest@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ -?GetIncumbentContext@Isolate@v8@@QEAA?AV?$Local@VContext@v8@@@2@XZ -?GetInferredName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetInspectorParentHandle@node@@YA?AV?$unique_ptr@UInspectorParentHandle@node@@U?$default_delete@UInspectorParentHandle@node@@@Cr@std@@@Cr@std@@PEAVEnvironment@1@UThreadId@1@PEBD@Z -?GetInternalField@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@H@Z -?GetIsConcatSpreadable@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetIsolate@Context@v8@@QEAAPEAVIsolate@2@XZ -?GetIsolate@HandleScope@v8@@QEBAPEAVIsolate@2@XZ -?GetIsolate@Message@v8@@QEBAPEAVIsolate@2@XZ -?GetIsolate@Object@v8@@QEAAPEAVIsolate@2@XZ -?GetIsolate@Object@v8@@SAPEAVIsolate@2@AEBV?$TracedReference@VObject@v8@@@2@@Z -?GetIsolate@SnapshotCreator@v8@@QEAAPEAVIsolate@2@XZ -?GetIterator@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetJSEntryStubs@Isolate@v8@@QEAA?AUJSEntryStubs@2@XZ -?GetLineNumber@CpuProfileNode@v8@@QEBAHXZ -?GetLineNumber@Location@v8@@QEAAHXZ -?GetLineNumber@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z -?GetLineNumber@StackFrame@v8@@QEBAHXZ -?GetLineNumber@UnboundScript@v8@@QEAAHH@Z -?GetLineTicks@CpuProfileNode@v8@@QEBA_NPEAULineTick@12@I@Z -?GetLocation@StackFrame@v8@@QEBA?AVLocation@2@XZ -?GetMajor@Version@internal@v8@@SAHXZ -?GetMatch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetMaxSnapshotJSObjectId@HeapSnapshot@v8@@QEBAIXZ -?GetMicrotaskQueue@Context@v8@@QEAAPEAVMicrotaskQueue@2@XZ -?GetMicrotasksPolicy@Isolate@v8@@QEBA?AW4MicrotasksPolicy@2@XZ -?GetMinor@Version@internal@v8@@SAHXZ -?GetModuleNamespace@Module@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetModuleRequests@Module@v8@@QEBA?AV?$Local@VFixedArray@v8@@@2@XZ -?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVEnvironment@1@@Z -?GetMultiIsolatePlatform@node@@YAPEAVMultiIsolatePlatform@1@PEAVIsolateData@1@@Z -?GetMutable@GlobalGCInfoTable@internal@cppgc@@SAAEAVGCInfoTable@23@XZ -?GetName@Function@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetName@HeapGraphEdge@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetName@HeapGraphNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetNameFromTypeSignature@NameTraitBase@internal@cppgc@@KA?AUHeapObjectName@23@PEBD@Z -?GetNativeFunctionTemplate@Extension@v8@@UEAA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?GetNode@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@H@Z -?GetNodeById@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@I@Z -?GetNodeId@CpuProfileNode@v8@@QEBAIXZ -?GetNodeReport@node@@YAXPEAVEnvironment@1@PEBD1V?$Local@VValue@v8@@@v8@@AEAV?$basic_ostream@DU?$char_traits@D@Cr@std@@@Cr@std@@@Z -?GetNodeReport@node@@YAXPEAVIsolate@v8@@PEBD1V?$Local@VValue@v8@@@3@AEAV?$basic_ostream@DU?$char_traits@D@Cr@std@@@Cr@std@@@Z -?GetNodesCount@HeapSnapshot@v8@@QEBAHXZ -?GetNumberOfDataSlots@Isolate@v8@@SAIXZ -?GetNumberOfEmbedderDataFields@Context@v8@@QEAAIXZ -?GetObjectId@HeapProfiler@v8@@QEAAIPEAX@Z -?GetObjectId@HeapProfiler@v8@@QEAAIV?$Local@VValue@v8@@@2@@Z -?GetObjectSizeForGarbageCollected@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z -?GetObjectSizeForGarbageCollectedMixin@BaseObjectSizeTrait@internal@cppgc@@KA_KPEBX@Z -?GetOverloadResolution@CFunction@v8@@QEAA?AW4OverloadResolution@12@PEBV12@@Z -?GetOwnPropertyDescriptor@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?GetOwnPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4PropertyFilter@2@W4KeyConversionMode@2@@Z -?GetParent@CpuProfileNode@v8@@QEBAPEBV12@XZ -?GetPatch@Version@internal@v8@@SAHXZ -?GetPersistentRegion@StrongCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z -?GetPersistentRegion@StrongPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z -?GetPersistentRegion@WeakCrossThreadPersistentPolicy@internal@cppgc@@SAAEAVCrossThreadPersistentRegion@23@PEBX@Z -?GetPersistentRegion@WeakPersistentPolicy@internal@cppgc@@SAAEAVPersistentRegion@23@PEBX@Z -?GetPreviousCodeStartAddress@CodeEvent@v8@@QEAA_KXZ -?GetPrivate@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z -?GetPromise@Resolver@Promise@v8@@QEAA?AV?$Local@VPromise@v8@@@3@XZ -?GetPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?GetPropertyNames@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@V?$Local@VContext@v8@@@2@W4KeyCollectionMode@2@W4PropertyFilter@2@W4IndexFilter@2@W4KeyConversionMode@2@@Z -?GetPrototype@Object@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetRealNamedProperty@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?GetRealNamedPropertyAttributes@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?GetRealNamedPropertyAttributesInPrototypeChain@Object@v8@@QEAA?AV?$Maybe@W4PropertyAttribute@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?GetRealNamedPropertyInPrototypeChain@Object@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?GetRecoveredTrapCount@trap_handler@internal@v8@@YA_KXZ -?GetReplace@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetResourceName@ScriptOrModule@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetRoot@HeapSnapshot@v8@@QEBAPEBVHeapGraphNode@2@XZ -?GetSONAME@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z -?GetSample@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@H@Z -?GetSampleEmbedderState@CpuProfile@v8@@QEBA?AW4EmbedderStateTag@2@H@Z -?GetSampleState@CpuProfile@v8@@QEBA?AW4StateTag@2@H@Z -?GetSampleTimestamp@CpuProfile@v8@@QEBA_JH@Z -?GetSamplesCount@CpuProfile@v8@@QEBAHXZ -?GetSandboxAddressSpace@V8@v8@@SAPEAVVirtualAddressSpace@2@XZ -?GetSandboxReservationSizeInBytes@V8@v8@@SA_KXZ -?GetSandboxSizeInBytes@V8@v8@@SA_KXZ -?GetScriptColumn@CodeEvent@v8@@QEAAHXZ -?GetScriptColumnNumber@Function@v8@@QEBAHXZ -?GetScriptId@CpuProfileNode@v8@@QEBAHXZ -?GetScriptId@StackFrame@v8@@QEBAHXZ -?GetScriptLine@CodeEvent@v8@@QEAAHXZ -?GetScriptLineNumber@Function@v8@@QEBAHXZ -?GetScriptName@CodeEvent@v8@@QEAA?AV?$Local@VString@v8@@@2@XZ -?GetScriptName@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetScriptName@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetScriptNameOrSourceURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetScriptOrigin@Function@v8@@QEBA?AVScriptOrigin@2@XZ -?GetScriptOrigin@Message@v8@@QEBA?AVScriptOrigin@2@XZ -?GetScriptResourceName@CpuProfileNode@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetScriptResourceName@Message@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?GetScriptResourceNameStr@CpuProfileNode@v8@@QEBAPEBDXZ -?GetScriptSource@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetScriptSourceMappingURL@StackFrame@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetSearch@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetSecurityToken@Context@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetShallowSize@HeapGraphNode@v8@@QEBA_KXZ -?GetSharedArrayBufferFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VSharedArrayBuffer@v8@@@3@PEAVIsolate@3@I@Z -?GetSharedArrayBufferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VSharedArrayBuffer@v8@@@3@@Z -?GetSharedMemoryStatistics@V8@v8@@SAXPEAVSharedMemoryStatistics@2@@Z -?GetSharedValueConveyor@Delegate@ValueDeserializer@v8@@UEAAPEBVSharedValueConveyor@3@PEAVIsolate@3@@Z -?GetSnapshotCount@HeapProfiler@v8@@QEAAHXZ -?GetSource@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?GetSource@RegExp@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetSourceLine@Message@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?GetSourceMappingURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetSourceMappingURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetSourceOffset@ModuleRequest@v8@@QEBAHXZ -?GetSourceType@CpuProfileNode@v8@@QEBA?AW4SourceType@12@XZ -?GetSourceURL@UnboundModuleScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetSourceURL@UnboundScript@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetSpecifier@ModuleRequest@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetSplit@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetStackSample@Isolate@v8@@QEAAXAEBURegisterState@2@PEAPEAX_KPEAUSampleInfo@2@@Z -?GetStackSample@TickSample@internal@v8@@SA_NPEAVIsolate@23@PEAURegisterState@3@W4RecordCEntryFrame@123@PEAPEAX_KPEAUSampleInfo@3@PEAW4StateTag@3@_N@Z -?GetStackTrace@Exception@v8@@SA?AV?$Local@VStackTrace@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?GetStackTrace@Message@v8@@QEBA?AV?$Local@VStackTrace@v8@@@2@XZ -?GetStalledTopLevelAwaitMessage@Module@v8@@QEAA?AV?$vector@V?$tuple@V?$Local@VModule@v8@@@v8@@V?$Local@VMessage@v8@@@2@@Cr@std@@V?$allocator@V?$tuple@V?$Local@VModule@v8@@@v8@@V?$Local@VMessage@v8@@@2@@Cr@std@@@23@@Cr@std@@PEAVIsolate@2@@Z -?GetStartColumn@Message@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z -?GetStartColumn@Message@v8@@QEBAHXZ -?GetStartPosition@Message@v8@@QEBAHXZ -?GetStartTime@CpuProfile@v8@@QEBA_JXZ -?GetStatus@Module@v8@@QEBA?AW4Status@12@XZ -?GetString@Version@internal@v8@@SAXV?$Vector@D@base@3@@Z -?GetTarget@Proxy@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?GetThreadInWasmThreadLocalAddress@trap_handler@internal@v8@@YAPEAHXZ -?GetTitle@CpuProfile@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?GetToNode@HeapGraphEdge@v8@@QEBAPEBVHeapGraphNode@2@XZ -?GetToPrimitive@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetToStringTag@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetTopDownRoot@CpuProfile@v8@@QEBAPEBVCpuProfileNode@2@XZ -?GetTraceDescriptor@TraceTraitFromInnerAddressImpl@internal@cppgc@@SA?AUTraceDescriptor@3@PEBX@Z -?GetTracingController@Platform@cppgc@@UEAAPEAVTracingController@v8@@XZ -?GetTracingController@node@@YAPEAVTracingController@v8@@XZ -?GetType@HeapGraphEdge@v8@@QEBA?AW4Type@12@XZ -?GetType@HeapGraphNode@v8@@QEBA?AW4Type@12@XZ -?GetTypeInfo@CFunction@v8@@QEBAPEBVCFunctionInfo@2@XZ -?GetUnboundModuleScript@Module@v8@@QEAA?AV?$Local@VUnboundModuleScript@v8@@@2@XZ -?GetUnboundScript@Function@v8@@QEBA?AV?$MaybeLocal@VUnboundScript@v8@@@2@XZ -?GetUnscopables@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@@Z -?GetVersion@V8@v8@@SAPEBDXZ -?GetVersion@Version@internal@v8@@SAPEBDXZ -?GetWasmFunctionIndex@Message@v8@@QEBAHXZ -?GetWasmModuleFromId@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VWasmModuleObject@v8@@@3@PEAVIsolate@3@I@Z -?GetWasmModuleTransferId@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@I@3@PEAVIsolate@3@V?$Local@VWasmModuleObject@v8@@@3@@Z -?GetWireBytesRef@CompiledWasmModule@v8@@QEAA?AV?$MemorySpan@$$CBE@2@XZ -?GetWireFormatVersion@ValueDeserializer@v8@@QEBAIXZ -?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBX0AEAUParams@123@@Z -?GetWriteBarrierType@WriteBarrier@internal@cppgc@@SA?AW4Type@123@PEBXAEAUParams@123@@Z -?Global@Context@v8@@QEAA?AV?$Local@VObject@v8@@@2@XZ -?GlobalizeReference@api_internal@v8@@YAPEA_KPEAVIsolate@internal@2@_K@Z -?GlobalizeTracedReference@internal@v8@@YAPEA_KPEAVIsolate@12@_KPEA_KW4GlobalHandleStoreMode@12@@Z -?HandleMovableReference@Visitor@cppgc@@MEAAXPEAPEBX@Z -?Has@Map@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z -?Has@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Has@Set@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?HasBuffer@ArrayBufferView@v8@@QEBA_NXZ -?HasCaught@TryCatch@v8@@QEBA_NXZ -?HasCustomHostObject@Delegate@ValueSerializer@v8@@UEAA_NPEAVIsolate@3@@Z -?HasHandler@Promise@v8@@QEBA_NXZ -?HasIndexedLookupInterceptor@Object@v8@@QEBA_NXZ -?HasInstance@Buffer@node@@YA_NV?$Local@VObject@v8@@@v8@@@Z -?HasInstance@Buffer@node@@YA_NV?$Local@VValue@v8@@@v8@@@Z -?HasInstance@FunctionTemplate@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z -?HasNamedLookupInterceptor@Object@v8@@QEBA_NXZ -?HasOptions@CFunctionInfo@v8@@QEBA_NXZ -?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z -?HasOwnProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?HasPendingBackgroundTasks@Isolate@v8@@QEAA_NXZ -?HasPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@@Z -?HasRealIndexedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@I@Z -?HasRealNamedCallbackProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?HasRealNamedProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@@Z -?HasTemplateLiteralObject@Context@v8@@QEAA_NV?$Local@VValue@v8@@@2@@Z -?HasTerminated@TryCatch@v8@@QEBA_NXZ -?Hash@Version@internal@v8@@SAIXZ -?HostDefinedOptions@ScriptOrModule@v8@@QEAA?AV?$Local@VData@v8@@@2@XZ -?IdleNotificationDeadline@Isolate@v8@@QEAA_NN@Z -?InContext@Isolate@v8@@QEAA_NXZ -?IncreaseHeapLimitForDebugging@Isolate@v8@@QEAAXXZ -?Inherit@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z -?Init@TickSample@internal@v8@@QEAAXPEAVIsolate@23@AEBURegisterState@3@W4RecordCEntryFrame@123@_N3VTimeDelta@base@3@@Z -?InitialTableLimit@GCInfoTable@internal@cppgc@@AEBAGXZ -?Initialize@GlobalGCInfoTable@internal@cppgc@@SAXAEAVPageAllocator@v8@@@Z -?Initialize@HandleScope@v8@@IEAAXPEAVIsolate@2@@Z -?Initialize@Isolate@v8@@SAXPEAV12@AEBUCreateParams@12@@Z -?Initialize@Locker@v8@@AEAAXPEAVIsolate@2@@Z -?Initialize@Unlocker@v8@@AEAAXPEAVIsolate@2@@Z -?Initialize@V8@v8@@CA_NH@Z -?Initialize@V8@v8@@SA_NXZ -?InitializeContext@node@@YA?AV?$Maybe@_N@v8@@V?$Local@VContext@v8@@@3@@Z -?InitializeExternalStartupData@V8@v8@@SAXPEBD@Z -?InitializeExternalStartupDataFromFile@V8@v8@@SAXPEBD@Z -?InitializeICU@V8@v8@@SA_NPEBD@Z -?InitializeICUDefaultLocation@V8@v8@@SA_NPEBD0@Z -?InitializeNodeWithArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@00@Z -?InitializeNodeWithArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@00W4Flags@ProcessFlags@1@@Z -?InitializeOncePerProcess@node@@YA?AV?$unique_ptr@VInitializationResult@node@@U?$default_delete@VInitializationResult@node@@@Cr@std@@@Cr@std@@AEBV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@34@W4Flags@ProcessFlags@1@@Z -?InitializePlatform@V8@v8@@SAXPEAVPlatform@2@@Z -?InitializeProcess@cppgc@@YAXPEAVPageAllocator@v8@@@Z -?InstallConditionalFeatures@Isolate@v8@@QEAAXV?$Local@VContext@v8@@@2@@Z -?InstanceOf@Value@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@@Z -?InstanceTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ -?InstantiateModule@Module@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@P6A?AV?$MaybeLocal@VModule@v8@@@2@0V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@V?$Local@VModule@v8@@@2@@Z@Z -?Instrumentation@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?Int32Value@Value@v8@@QEBA?AV?$Maybe@H@2@V?$Local@VContext@v8@@@2@@Z -?Int64Value@BigInt@v8@@QEBA_JPEA_N@Z -?IntegerValue@Value@v8@@QEBA?AV?$Maybe@_J@2@V?$Local@VContext@v8@@@2@@Z -?InternalFieldCount@Object@v8@@QEBAHXZ -?InternalFieldCount@Object@v8@@SAHAEBV?$BasicTracedReference@VObject@v8@@@2@@Z -?InternalFieldCount@Object@v8@@SAHAEBV?$PersistentBase@VObject@v8@@@2@@Z -?InternalFieldCount@ObjectTemplate@v8@@QEBAHXZ -?InternalFieldOutOfBounds@api_internal@v8@@YAXH@Z -?IsApiWrapper@Object@v8@@QEBA_NXZ -?IsArgumentsObject@Value@v8@@QEBA_NXZ -?IsArray@Value@v8@@QEBA_NXZ -?IsArrayBuffer@Value@v8@@QEBA_NXZ -?IsArrayBufferView@Value@v8@@QEBA_NXZ -?IsAsyncFunction@Value@v8@@QEBA_NXZ -?IsBaseConsistent@CageBaseGlobal@internal@cppgc@@CA_NXZ -?IsBigInt64Array@Value@v8@@QEBA_NXZ -?IsBigInt@Value@v8@@QEBA_NXZ -?IsBigIntObject@Value@v8@@QEBA_NXZ -?IsBigUint64Array@Value@v8@@QEBA_NXZ -?IsBoolean@Value@v8@@QEBA_NXZ -?IsBooleanObject@Value@v8@@QEBA_NXZ -?IsCacheable@ExternalStringResourceBase@String@v8@@UEBA_NXZ -?IsCallable@Object@v8@@QEBA_NXZ -?IsCandidate@Version@internal@v8@@SA_NXZ -?IsCodeGenerationFromStringsAllowed@Context@v8@@QEBA_NXZ -?IsCodeLike@Object@v8@@QEBA_NPEAVIsolate@2@@Z -?IsCodeLike@ObjectTemplate@v8@@QEBA_NXZ -?IsConstructor@Object@v8@@QEBA_NXZ -?IsConstructor@StackFrame@v8@@QEBA_NXZ -?IsContext@Data@v8@@QEBA_NXZ -?IsCookieEncryptionEnabled@fuses@electron@@YA_NXZ -?IsCreationThread@PersistentRegion@internal@cppgc@@AEAA_NXZ -?IsCurrent@Isolate@v8@@QEBA_NXZ -?IsDataView@Value@v8@@QEBA_NXZ -?IsDate@Value@v8@@QEBA_NXZ -?IsDead@Isolate@v8@@QEAA_NXZ -?IsDetachable@ArrayBuffer@v8@@QEBA_NXZ -?IsEmbeddedAsarIntegrityValidationEnabled@fuses@electron@@YA_NXZ -?IsEnabled@WriteBarrier@internal@cppgc@@SA_NXZ -?IsEval@StackFrame@v8@@QEBA_NXZ -?IsExecutionTerminating@Isolate@v8@@QEAA_NXZ -?IsExternal@String@v8@@QEBA_NXZ -?IsExternal@Value@v8@@QEBA_NXZ -?IsExternalOneByte@String@v8@@QEBA_NXZ -?IsExternalTwoByte@String@v8@@QEBA_NXZ -?IsFalse@Value@v8@@QEBA_NXZ -?IsFixedArray@Data@v8@@QEBA_NXZ -?IsFloat32Array@Value@v8@@QEBA_NXZ -?IsFloat64Array@Value@v8@@QEBA_NXZ -?IsFunction@Value@v8@@QEBA_NXZ -?IsFunctionTemplate@Data@v8@@QEBA_NXZ -?IsGarbageCollectionAllowed@DisallowGarbageCollectionScope@subtle@cppgc@@SA_NAEAVHeapHandle@3@@Z -?IsGeneratorFunction@Value@v8@@QEBA_NXZ -?IsGeneratorObject@Value@v8@@QEBA_NXZ -?IsGraphAsync@Module@v8@@QEBA_NXZ -?IsHeapLimitIncreasedForDebugging@Isolate@v8@@QEAA_NXZ -?IsHeapObjectAliveImpl@LivenessBroker@cppgc@@AEBA_NPEBX@Z -?IsHeapObjectOld@testing@cppgc@@YA_NPEAX@Z -?IsHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z -?IsImmutableProto@ObjectTemplate@v8@@QEBA_NXZ -?IsInAtomicPause@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z -?IsInUse@Isolate@v8@@QEAA_NXZ -?IsInt16Array@Value@v8@@QEBA_NXZ -?IsInt32@Value@v8@@QEBA_NXZ -?IsInt32Array@Value@v8@@QEBA_NXZ -?IsInt8Array@Value@v8@@QEBA_NXZ -?IsInvalid@V8StackTraceId@v8_inspector@@QEBA_NXZ -?IsLeafTemplateForApiObject@FunctionTemplate@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z -?IsLoadBrowserProcessSpecificV8SnapshotEnabled@fuses@electron@@YA_NXZ -?IsLocked@Locker@v8@@SA_NPEAVIsolate@2@@Z -?IsMap@Value@v8@@QEBA_NXZ -?IsMapIterator@Value@v8@@QEBA_NXZ -?IsMarking@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z -?IsModule@Data@v8@@QEBA_NXZ -?IsModuleNamespaceObject@Value@v8@@QEBA_NXZ -?IsName@Value@v8@@QEBA_NXZ -?IsNativeError@Value@v8@@QEBA_NXZ -?IsNodeCliInspectEnabled@fuses@electron@@YA_NXZ -?IsNodeOptionsEnabled@fuses@electron@@YA_NXZ -?IsNull@Value@v8@@QEBA_NXZ -?IsNullOrUndefined@Value@v8@@QEBA_NXZ -?IsNumber@Value@v8@@QEBA_NXZ -?IsNumberObject@Value@v8@@QEBA_NXZ -?IsObject@Value@v8@@QEBA_NXZ -?IsObjectTemplate@Data@v8@@QEBA_NXZ -?IsOneByte@String@v8@@QEBA_NXZ -?IsOnlyLoadAppFromAsarEnabled@fuses@electron@@YA_NXZ -?IsOpaque@Message@v8@@QEBA_NXZ -?IsPrivate@Data@v8@@QEBA_NXZ -?IsPromise@Value@v8@@QEBA_NXZ -?IsProxy@Value@v8@@QEBA_NXZ -?IsRegExp@Value@v8@@QEBA_NXZ -?IsResizableByUserJavaScript@BackingStore@v8@@QEBA_NXZ -?IsRevoked@Proxy@v8@@QEBA_NXZ -?IsRunAsNodeEnabled@fuses@electron@@YA_NXZ -?IsRunningMicrotasks@MicrotasksScope@v8@@SA_NPEAVIsolate@2@@Z -?IsSandboxConfiguredSecurely@V8@v8@@SA_NXZ -?IsScriptSharedCrossOrigin@CpuProfileNode@v8@@QEBA_NXZ -?IsSet@CageBaseGlobal@internal@cppgc@@SA_NXZ -?IsSet@Value@v8@@QEBA_NXZ -?IsSetIterator@Value@v8@@QEBA_NXZ -?IsShared@BackingStore@v8@@QEBA_NXZ -?IsSharedArrayBuffer@Value@v8@@QEBA_NXZ -?IsSharedCrossOrigin@Message@v8@@QEBA_NXZ -?IsSourceTextModule@Module@v8@@QEBA_NXZ -?IsString@Value@v8@@QEBA_NXZ -?IsStringObject@Value@v8@@QEBA_NXZ -?IsSweeping@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z -?IsSweepingOnOwningThread@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z -?IsSymbol@Value@v8@@QEBA_NXZ -?IsSymbolObject@Value@v8@@QEBA_NXZ -?IsSyntheticModule@Module@v8@@QEBA_NXZ -?IsTrue@Value@v8@@QEBA_NXZ -?IsTypedArray@Value@v8@@QEBA_NXZ -?IsUint16Array@Value@v8@@QEBA_NXZ -?IsUint32@Value@v8@@QEBA_NXZ -?IsUint32Array@Value@v8@@QEBA_NXZ -?IsUint8Array@Value@v8@@QEBA_NXZ -?IsUint8ClampedArray@Value@v8@@QEBA_NXZ -?IsUndefined@Value@v8@@QEBA_NXZ -?IsUndetectable@Object@v8@@QEBA_NXZ -?IsUserJavaScript@StackFrame@v8@@QEBA_NXZ -?IsValid@StartupData@v8@@QEBA_NXZ -?IsValue@Data@v8@@QEBA_NXZ -?IsVerbose@TryCatch@v8@@QEBA_NXZ -?IsWasm@StackFrame@v8@@QEBA_NXZ -?IsWasmMemoryObject@Value@v8@@QEBA_NXZ -?IsWasmModuleObject@Value@v8@@QEBA_NXZ -?IsWasmNull@Value@v8@@QEBA_NXZ -?IsWeakMap@Value@v8@@QEBA_NXZ -?IsWeakRef@Value@v8@@QEBA_NXZ -?IsWeakSet@Value@v8@@QEBA_NXZ -?IsWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX@Z -?IsolateFromNeverReadOnlySpaceObject@internal@v8@@YAPEAVIsolate@12@_K@Z -?IsolateInBackgroundNotification@Isolate@v8@@QEAAXXZ -?IsolateInForegroundNotification@Isolate@v8@@QEAAXXZ -?Iterate@CrossThreadPersistentRegion@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z -?Iterate@PersistentRegionBase@internal@cppgc@@QEAAXAEAVRootVisitor@23@@Z -?JSStackComparableAddressPrivate@BackupIncumbentScope@Context@v8@@AEBA_KXZ -?JSStackComparableAddressPrivate@TryCatch@v8@@AEAA_KXZ -?Leave@DisallowGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z -?Leave@NoGarbageCollectionScope@subtle@cppgc@@SAXAEAVHeapHandle@3@@Z -?Length@Array@v8@@QEBAIXZ -?Length@Buffer@node@@YA_KV?$Local@VObject@v8@@@v8@@@Z -?Length@Buffer@node@@YA_KV?$Local@VValue@v8@@@v8@@@Z -?Length@FixedArray@v8@@QEBAHXZ -?Length@PrimitiveArray@v8@@QEBAHXZ -?Length@String@v8@@QEBAHXZ -?Length@TypedArray@v8@@QEAA_KXZ -?LimitForTesting@GCInfoTable@internal@cppgc@@QEBAGXZ -?Line@SourceLocation@v8@@QEBA_KXZ -?LineOffset@ScriptOrigin@v8@@QEBAHXZ -?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@PEBD@Z -?LoadEnvironment@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVEnvironment@1@V?$function@$$A6A?AV?$MaybeLocal@VValue@v8@@@v8@@AEBUStartExecutionCallbackInfo@node@@@Z@Cr@std@@@Z -?LocaleConfigurationChangeNotification@Isolate@v8@@QEAAXXZ -?Lock@ExternalStringResourceBase@String@v8@@MEBAXXZ -?LowMemoryNotification@Isolate@v8@@QEAAXXZ -?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEBDHPEAV?$Local@VValue@v8@@@4@@Z -?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VFunction@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z -?MakeCallback@AsyncResource@node@@QEAA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VString@v8@@@4@HPEAV?$Local@VValue@v8@@@4@@Z -?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV23@@Z -?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV23@@Z -?MakeCallback@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV23@@Z -?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@PEBDHPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z -?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VFunction@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z -?MakeCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@3@V?$Local@VObject@v8@@@3@V?$Local@VString@v8@@@3@HPEAV?$Local@VValue@v8@@@3@Uasync_context@1@@Z -?MakeExternal@String@v8@@QEAA_NPEAVExternalOneByteStringResource@12@@Z -?MakeExternal@String@v8@@QEAA_NPEAVExternalStringResource@12@@Z -?MakeWeak@api_internal@v8@@YAXPEAPEA_K@Z -?MakeWeak@api_internal@v8@@YAXPEA_KPEAXP6AXAEBV?$WeakCallbackInfo@X@2@@ZW4WeakCallbackType@2@@Z -?MarkAsHandled@Promise@v8@@QEAAXXZ -?MarkAsSilent@Promise@v8@@QEAAXXZ -?MarkAsUndetectable@ObjectTemplate@v8@@QEAAXXZ -?MarkObjectAsFullyConstructed@MakeGarbageCollectedTraitInternal@internal@cppgc@@KAXPEBX@Z -?MaxByteLength@ArrayBuffer@v8@@QEBA_KXZ -?MaxByteLength@BackingStore@v8@@QEBA_KXZ -?MaxByteLength@SharedArrayBuffer@v8@@QEBA_KXZ -?MaxTableSize@GCInfoTable@internal@cppgc@@AEBA_KXZ -?MeasureMemory@Isolate@v8@@QEAA_NV?$unique_ptr@VMeasureMemoryDelegate@v8@@U?$default_delete@VMeasureMemoryDelegate@v8@@@Cr@std@@@Cr@std@@W4MeasureMemoryExecution@2@@Z -?MemoryPressureNotification@Isolate@v8@@QEAAXW4MemoryPressureLevel@2@@Z -?MergeFlags@?$CTypeInfoBuilder@H$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -?MergeFlags@?$CTypeInfoBuilder@I$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -?MergeFlags@?$CTypeInfoBuilder@M$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -?MergeFlags@?$CTypeInfoBuilder@N$S@v8@@CA?AW4Flags@CTypeInfo@2@XZ -?MergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ -?Message@TryCatch@v8@@QEBA?AV?$Local@VMessage@v8@@@2@XZ -?MoveGlobalReference@api_internal@v8@@YAXPEAPEA_K0@Z -?MoveTracedReference@internal@v8@@YAXPEAPEA_K0@Z -?Name@Private@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@H@Z -?New@Array@v8@@SA?AV?$Local@VArray@v8@@@2@PEAVIsolate@2@PEAV?$Local@VValue@v8@@@2@_K@Z -?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@Cr@std@@@Z -?New@ArrayBuffer@v8@@SA?AV?$Local@VArrayBuffer@v8@@@2@PEAVIsolate@2@_K@Z -?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@BigInt64Array@v8@@SA?AV?$Local@VBigInt64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_J@Z -?New@BigIntObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_J@Z -?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@BigUint64Array@v8@@SA?AV?$Local@VBigUint64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Boolean@v8@@SA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@_N@Z -?New@BooleanObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@_N@Z -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_K@Z -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@PEAD_KP6AX1PEAX@Z3@Z -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@V?$Local@VString@v8@@@4@W4encoding@2@@Z -?New@Buffer@node@@YA?AV?$MaybeLocal@VObject@v8@@@v8@@PEAVIsolate@4@_K@Z -?New@Buffer@node@@YA?AV?$MaybeLocal@VUint8Array@v8@@@v8@@PEAVIsolate@4@V?$Local@VArrayBuffer@v8@@@4@_K2@Z -?New@Context@v8@@SA?AV?$Local@VContext@v8@@@2@PEAVIsolate@2@PEAVExtensionConfiguration@2@V?$MaybeLocal@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@UDeserializeInternalFieldsCallback@2@PEAVMicrotaskQueue@2@@Z -?New@CpuProfiler@v8@@SAPEAV12@PEAVIsolate@2@W4CpuProfilingNamingMode@2@W4CpuProfilingLoggingMode@2@@Z -?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@DataView@v8@@SA?AV?$Local@VDataView@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Date@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@N@Z -?New@External@v8@@SA?AV?$Local@VExternal@v8@@@2@PEAVIsolate@2@PEAX@Z -?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Float32Array@v8@@SA?AV?$Local@VFloat32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Float64Array@v8@@SA?AV?$Local@VFloat64Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Function@v8@@SA?AV?$MaybeLocal@VFunction@v8@@@2@V?$Local@VContext@v8@@@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@@Z -?New@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@PEBVCFunction@2@GGG@Z -?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Int16Array@v8@@SA?AV?$Local@VInt16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Int32Array@v8@@SA?AV?$Local@VInt32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Int8Array@v8@@SA?AV?$Local@VInt8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@H@Z -?New@Isolate@v8@@SAPEAV12@AEBUCreateParams@12@@Z -?New@Map@v8@@SA?AV?$Local@VMap@v8@@@2@PEAVIsolate@2@@Z -?New@MicrotaskQueue@v8@@SA?AV?$unique_ptr@VMicrotaskQueue@v8@@U?$default_delete@VMicrotaskQueue@v8@@@Cr@std@@@Cr@std@@PEAVIsolate@2@W4MicrotasksPolicy@2@@Z -?New@Number@v8@@SA?AV?$Local@VNumber@v8@@@2@PEAVIsolate@2@N@Z -?New@NumberObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@N@Z -?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@@Z -?New@Object@v8@@SA?AV?$Local@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VValue@v8@@@2@PEAV?$Local@VName@v8@@@2@PEAV52@_K@Z -?New@ObjectTemplate@v8@@CA?AV?$Local@VObjectTemplate@v8@@@2@PEAVIsolate@internal@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -?New@ObjectTemplate@v8@@SA?AV?$Local@VObjectTemplate@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -?New@PrimitiveArray@v8@@SA?AV?$Local@VPrimitiveArray@v8@@@2@PEAVIsolate@2@H@Z -?New@Private@v8@@SA?AV?$Local@VPrivate@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?New@Proxy@v8@@SA?AV?$MaybeLocal@VProxy@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@1@Z -?New@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@@Z -?New@Resolver@Promise@v8@@SA?AV?$MaybeLocal@VResolver@Promise@v8@@@3@V?$Local@VContext@v8@@@3@@Z -?New@Set@v8@@SA?AV?$Local@VSet@v8@@@2@PEAVIsolate@2@@Z -?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@V?$shared_ptr@VBackingStore@v8@@@Cr@std@@@Z -?New@SharedArrayBuffer@v8@@SA?AV?$Local@VSharedArrayBuffer@v8@@@2@PEAVIsolate@2@_K@Z -?New@Signature@v8@@SA?AV?$Local@VSignature@v8@@@2@PEAVIsolate@2@V?$Local@VFunctionTemplate@v8@@@2@@Z -?New@StringObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?New@Symbol@v8@@SA?AV?$Local@VSymbol@v8@@@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@@Z -?New@SymbolObject@v8@@SA?AV?$Local@VValue@v8@@@2@PEAVIsolate@2@V?$Local@VSymbol@v8@@@2@@Z -?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Uint16Array@v8@@SA?AV?$Local@VUint16Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Uint32Array@v8@@SA?AV?$Local@VUint32Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Uint8Array@v8@@SA?AV?$Local@VUint8Array@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VArrayBuffer@v8@@@2@_K1@Z -?New@Uint8ClampedArray@v8@@SA?AV?$Local@VUint8ClampedArray@v8@@@2@V?$Local@VSharedArrayBuffer@v8@@@2@_K1@Z -?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PEAVIsolate@2@_K@Z -?NewBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PEAX_KP6AX010@Z0@Z -?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PEAVIsolate@2@_K@Z -?NewBackingStore@SharedArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PEAX_KP6AX010@Z0@Z -?NewContext@node@@YA?AV?$Local@VContext@v8@@@v8@@PEAVIsolate@3@V?$Local@VObjectTemplate@v8@@@3@@Z -?NewDefaultAllocator@Allocator@ArrayBuffer@v8@@SAPEAV123@XZ -?NewExternalOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalOneByteStringResource@12@@Z -?NewExternalTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEAVExternalStringResource@12@@Z -?NewFromOneByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBEW4NewStringType@2@H@Z -?NewFromTwoByte@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBGW4NewStringType@2@H@Z -?NewFromUnsigned@BigInt@v8@@SA?AV?$Local@VBigInt@v8@@@2@PEAVIsolate@2@_K@Z -?NewFromUnsigned@Integer@v8@@SA?AV?$Local@VInteger@v8@@@2@PEAVIsolate@2@I@Z -?NewFromUtf8@String@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z -?NewFromUtf8Literal@String@v8@@CA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@PEBDW4NewStringType@2@H@Z -?NewFromWords@BigInt@v8@@SA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@HHPEB_K@Z -?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?NewInstance@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@@Z -?NewInstance@ObjectTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?NewInstanceWithSideEffectType@Function@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@HQEAV?$Local@VValue@v8@@@2@W4SideEffectType@2@@Z -?NewIsolate@node@@YAPEAVIsolate@v8@@PEAVArrayBufferAllocator@1@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@@Z -?NewIsolate@node@@YAPEAVIsolate@v8@@V?$shared_ptr@VArrayBufferAllocator@node@@@Cr@std@@PEAUuv_loop_s@@PEAVMultiIsolatePlatform@1@@Z -?NewRemoteContext@Context@v8@@SA?AV?$MaybeLocal@VObject@v8@@@2@PEAVIsolate@2@V?$Local@VObjectTemplate@v8@@@2@V?$MaybeLocal@VValue@v8@@@2@@Z -?NewRemoteInstance@FunctionTemplate@v8@@QEAA?AV?$MaybeLocal@VObject@v8@@@2@XZ -?NewResizableBackingStore@ArrayBuffer@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@_K0@Z -?NewWithBacktrackLimit@RegExp@v8@@SA?AV?$MaybeLocal@VRegExp@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@W4Flags@12@I@Z -?NewWithCFunctionOverloads@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4ConstructorBehavior@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z -?NewWithCache@FunctionTemplate@v8@@SA?AV?$Local@VFunctionTemplate@v8@@@2@PEAVIsolate@2@P6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VSignature@v8@@@2@HW4SideEffectType@2@@Z -?NodesInUse@CrossThreadPersistentRegion@internal@cppgc@@QEBA_KXZ -?NodesInUse@PersistentRegionBase@internal@cppgc@@QEBA_KXZ -?NotifyIsolateDisposal@Recorder@metrics@v8@@UEAAXXZ -?NumberOfGCInfos@GCInfoTable@internal@cppgc@@QEBAGXZ -?NumberOfHandles@HandleScope@v8@@SAHPEAVIsolate@2@@Z -?NumberOfHeapSpaces@Isolate@v8@@QEAA_KXZ -?NumberOfTrackedHeapObjectTypes@Isolate@v8@@QEAA_KXZ -?NumberValue@Value@v8@@QEBA?AV?$Maybe@N@2@V?$Local@VContext@v8@@@2@@Z -?OOM@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?ObjectProtoToString@Object@v8@@QEAA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?OffsetFromAddress@CagedHeapBase@internal@cppgc@@SA_KPEBX@Z -?OnBytesReceived@WasmStreaming@v8@@QEAAXPEBE_K@Z -?OnFatalError@node@@YAXPEBD0@Z -?Options@ScriptOrigin@v8@@QEBA?AVScriptOriginOptions@2@XZ -?Other@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?PCIsInV8@Unwinder@v8@@SA_N_KPEBUMemoryRange@2@PEAX@Z -?Parse@JSON@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z -?ParseEncoding@node@@YA?AW4encoding@1@PEAVIsolate@v8@@V?$Local@VValue@v8@@@4@W421@@Z -?PerformCheckpoint@MicrotasksScope@v8@@SAXPEAVIsolate@2@@Z -?PerformMarkingStep@StandaloneTestingHeap@testing@cppgc@@QEAA_NW4EmbedderStackState@3@@Z -?PerformMicrotaskCheckpoint@Isolate@v8@@QEAAXXZ -?PostJob@Platform@cppgc@@UEAA?AV?$unique_ptr@VJobHandle@v8@@U?$default_delete@VJobHandle@v8@@@Cr@std@@@Cr@std@@W4TaskPriority@v8@@V?$unique_ptr@VJobTask@v8@@U?$default_delete@VJobTask@v8@@@Cr@std@@@45@@Z -?PrepareStackTraceCallback@node@@YA?AV?$MaybeLocal@VValue@v8@@@v8@@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@V?$Local@VArray@v8@@@3@@Z -?PreviewEntries@Object@v8@@QEAA?AV?$MaybeLocal@VArray@v8@@@2@PEA_N@Z -?PreviousGCWasConservative@HeapState@subtle@cppgc@@SA_NAEBVHeapHandle@3@@Z -?PrintCurrentStackTrace@Message@v8@@SAXPEAVIsolate@2@AEAV?$basic_ostream@DU?$char_traits@D@Cr@std@@@Cr@std@@@Z -?ProcessGlobalArgs@node@@YAHPEAV?$vector@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@V?$allocator@V?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@23@@Cr@std@@00W4OptionEnvvarSettings@1@@Z -?PromiseRejectCallback@node@@YAXVPromiseRejectMessage@v8@@@Z -?PromiseRejection@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?PrototypeTemplate@FunctionTemplate@v8@@QEAA?AV?$Local@VObjectTemplate@v8@@@2@XZ -?QuickIsNull@Value@v8@@AEBA_NXZ -?QuickIsNullOrUndefined@Value@v8@@AEBA_NXZ -?QuickIsString@Value@v8@@AEBA_NXZ -?QuickIsUndefined@Value@v8@@AEBA_NXZ -?RangeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?ReThrow@TryCatch@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?ReadDouble@ValueDeserializer@v8@@QEAA_NPEAN@Z -?ReadHeader@ValueDeserializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@@Z -?ReadHostObject@Delegate@ValueDeserializer@v8@@UEAA?AV?$MaybeLocal@VObject@v8@@@3@PEAVIsolate@3@@Z -?ReadOnlyPrototype@FunctionTemplate@v8@@QEAAXXZ -?ReadRawBytes@ValueDeserializer@v8@@QEAA_N_KPEAPEBX@Z -?ReadUint32@ValueDeserializer@v8@@QEAA_NPEAI@Z -?ReadUint64@ValueDeserializer@v8@@QEAA_NPEA_K@Z -?ReadValue@ValueDeserializer@v8@@QEAA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?Reallocate@Allocator@ArrayBuffer@v8@@UEAAPEAXPEAX_K1@Z -?Reallocate@BackingStore@v8@@SA?AV?$unique_ptr@VBackingStore@v8@@U?$default_delete@VBackingStore@v8@@@Cr@std@@@Cr@std@@PEAVIsolate@2@V345@_K@Z -?ReallocateBufferMemory@Delegate@ValueSerializer@v8@@UEAAPEAXPEAX_KPEA_K@Z -?ReferenceError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?RefillFreeList@PersistentRegionBase@internal@cppgc@@AEAAXXZ -?RefillFreeListAndAllocateNode@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z -?RegisterExtension@v8@@YAXV?$unique_ptr@VExtension@v8@@U?$default_delete@VExtension@v8@@@Cr@std@@@Cr@std@@@Z -?RegisterHandlerData@trap_handler@internal@v8@@YAH_K00PEBUProtectedInstructionData@123@@Z -?RegisterNewGCInfo@GCInfoTable@internal@cppgc@@QEAAGAEAU?$atomic@G@Cr@std@@AEBUGCInfo@23@@Z -?RegisterWeakCallback@Visitor@cppgc@@UEAAXP6AXAEBVLivenessBroker@2@PEBX@Z1@Z -?Reject@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z -?Release@ValueSerializer@v8@@QEAA?AU?$pair@PEAE_K@Cr@std@@XZ -?ReleaseHandlerData@trap_handler@internal@v8@@YAXH@Z -?RemoveBeforeCallEnteredCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z -?RemoveBuildEmbedderGraphCallback@HeapProfiler@v8@@QEAAXP6AXPEAVIsolate@2@PEAVEmbedderGraph@2@PEAX@Z2@Z -?RemoveCallCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@@Z@Z -?RemoveEnvironmentCleanupHook@node@@YAXPEAVIsolate@v8@@P6AXPEAX@Z1@Z -?RemoveEnvironmentCleanupHookInternal@node@@YAXPEAUACHHandle@1@@Z -?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z -?RemoveGCEpilogueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z -?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@@Z@Z -?RemoveGCPrologueCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4GCType@2@W4GCCallbackFlags@2@PEAX@Z3@Z -?RemoveMessageListeners@Isolate@v8@@QEAAXP6AXV?$Local@VMessage@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z -?RemoveMicrotasksCompletedCallback@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z -?RemoveNearHeapLimitCallback@Isolate@v8@@QEAAXP6A_KPEAX_K1@Z1@Z -?RemovePrototype@FunctionTemplate@v8@@QEAAXXZ -?RemoveTrapHandler@trap_handler@internal@v8@@YAXXZ -?ReportExternalAllocationLimitReached@Isolate@v8@@AEAAXXZ -?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@@Z -?RequestGarbageCollectionForTesting@Isolate@v8@@QEAAXW4GarbageCollectionType@12@W4EmbedderStackState@cppgc@@@Z -?RequestInterrupt@Isolate@v8@@QEAAXP6AXPEAV12@PEAX@Z1@Z -?RequestInterrupt@node@@YAXPEAVEnvironment@1@P6AXPEAX@Z1@Z -?Reset@LongTaskStats@metrics@v8@@SAXPEAVIsolate@3@@Z -?Reset@TryCatch@v8@@QEAAXXZ -?ResetForTesting@AgeTable@internal@cppgc@@QEAAXXZ -?ResetInternal@TryCatch@v8@@AEAAXXZ -?Resize@ExplicitManagementImpl@internal@cppgc@@CA_NPEAX_K@Z -?Resize@GCInfoTable@internal@cppgc@@AEAAXXZ -?Resolve@Resolver@Promise@v8@@QEAA?AV?$Maybe@_N@3@V?$Local@VContext@v8@@@3@V?$Local@VValue@v8@@@3@@Z -?ResourceName@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?RestoreOriginalHeapLimit@Isolate@v8@@QEAAXXZ -?Result@Promise@v8@@QEAA?AV?$Local@VValue@v8@@@2@XZ -?ReturnInfo@CFunction@v8@@QEBAAEBVCTypeInfo@2@XZ -?ReturnInfo@CFunctionInfo@v8@@QEBAAEBVCTypeInfo@2@XZ -?Revoke@Proxy@v8@@QEAAXXZ -?Run@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXXZ -?Run@ScriptStreamingTask@ScriptCompiler@v8@@QEAAXXZ -?RunAtExit@node@@YAXPEAVEnvironment@1@@Z -?SameValue@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z -?ScriptId@Function@v8@@QEBAHXZ -?ScriptId@Module@v8@@QEBAHXZ -?ScriptId@ScriptOrigin@v8@@QEBAHXZ -?Serialize@CompiledWasmModule@v8@@QEAA?AUOwnedBuffer@2@XZ -?Serialize@CpuProfile@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z -?Serialize@HeapSnapshot@v8@@QEBAXPEAVOutputStream@2@W4SerializationFormat@12@@Z -?Set@Map@v8@@QEAA?AV?$MaybeLocal@VMap@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z -?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@IV?$Local@VValue@v8@@@2@@Z -?Set@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@1@Z -?Set@PrimitiveArray@v8@@QEAAXPEAVIsolate@2@HV?$Local@VPrimitive@v8@@@2@@Z -?Set@Template@v8@@QEAAXPEAVIsolate@2@PEBDV?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z -?Set@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z -?SetAbortOnUncaughtExceptionCallback@Isolate@v8@@QEAAXP6A_NPEAV12@@Z@Z -?SetAbortScriptExecution@Context@v8@@QEAAXP6AXPEAVIsolate@2@V?$Local@VContext@v8@@@2@@Z@Z -?SetAcceptAnyReceiver@FunctionTemplate@v8@@QEAAX_N@Z -?SetAccessCheckCallback@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@Z2@Z -?SetAccessCheckCallbackAndHandler@ObjectTemplate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VObject@v8@@@2@V?$Local@VValue@v8@@@2@@ZAEBUNamedPropertyHandlerConfiguration@2@AEBUIndexedPropertyHandlerConfiguration@2@2@Z -?SetAccessor@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@ZV?$MaybeLocal@VValue@v8@@@2@W4AccessControl@2@W4PropertyAttribute@2@W4SideEffectType@2@W4SideEffectType@2@@Z -?SetAccessor@ObjectTemplate@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4AccessControl@2@W4PropertyAttribute@2@W4SideEffectType@2@8@Z -?SetAccessor@ObjectTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4AccessControl@2@W4PropertyAttribute@2@W4SideEffectType@2@8@Z -?SetAccessorProperty@Object@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunction@v8@@@2@1W4PropertyAttribute@2@W4AccessControl@2@@Z -?SetAccessorProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@V?$Local@VFunctionTemplate@v8@@@2@1W4PropertyAttribute@2@W4AccessControl@2@@Z -?SetAddCrashKeyCallback@Isolate@v8@@QEAAXP6AXW4CrashKeyId@2@AEBV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@@Z@Z -?SetAddHistogramSampleFunction@Isolate@v8@@QEAAXP6AXPEAXH@Z@Z -?SetAge@AgeTable@internal@cppgc@@QEAAX_KW4Age@123@@Z -?SetAgeForRange@AgeTable@internal@cppgc@@QEAAX_K0W4Age@123@W4AdjacentCardsPolicy@123@@Z -?SetAlignedPointerInEmbedderData@Context@v8@@QEAAXHPEAX@Z -?SetAlignedPointerInInternalField@Object@v8@@QEAAXHPEAX@Z -?SetAlignedPointerInInternalFields@Object@v8@@QEAAXHQEAHQEAPEAX@Z -?SetAllowAtomicsWait@Isolate@v8@@QEAAX_N@Z -?SetAllowWasmCodeGenerationCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@V?$Local@VString@v8@@@2@@Z@Z -?SetAtomicsWaitCallback@Isolate@v8@@QEAAXP6AXW4AtomicsWaitEvent@12@V?$Local@VSharedArrayBuffer@v8@@@2@_K_JNPEAVAtomicsWaitWakeHandle@12@PEAX@Z5@Z -?SetCallAsFunctionHandler@ObjectTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@@Z -?SetCallHandler@FunctionTemplate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4SideEffectType@2@AEBV?$MemorySpan@$$CBVCFunction@v8@@@2@@Z -?SetCaptureMessage@TryCatch@v8@@QEAAX_N@Z -?SetCaptureStackTraceForUncaughtExceptions@Isolate@v8@@QEAAX_NHW4StackTraceOptions@StackTrace@2@@Z -?SetClassName@FunctionTemplate@v8@@QEAAXV?$Local@VString@v8@@@2@@Z -?SetCodeLike@ObjectTemplate@v8@@QEAAXXZ -?SetCompiledModuleBytes@WasmStreaming@v8@@QEAA_NPEBE_K@Z -?SetContinuationPreservedEmbedderData@Context@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z -?SetCounterFunction@Isolate@v8@@QEAAXP6APEAHPEBD@Z@Z -?SetCreateHistogramFunction@Isolate@v8@@QEAAXP6APEAXPEBDHH_K@Z@Z -?SetData@Isolate@v8@@QEAAXIPEAX@Z -?SetDcheckErrorHandler@V8@v8@@SAXP6AXPEBDH0@Z@Z -?SetDefaultContext@SnapshotCreator@v8@@QEAAXV?$Local@VContext@v8@@@2@USerializeInternalFieldsCallback@2@@Z -?SetDetachKey@ArrayBuffer@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z -?SetEmbedderData@Context@v8@@QEAAXHV?$Local@VValue@v8@@@2@@Z -?SetEmbedderRootsHandler@Isolate@v8@@QEAAXPEAVEmbedderRootsHandler@2@@Z -?SetEntropySource@V8@v8@@SAXP6A_NPEAE_K@Z@Z -?SetErrorMessageForCodeGenerationFromStrings@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z -?SetErrorMessageForWasmCodeGeneration@Context@v8@@QEAAXV?$Local@VString@v8@@@2@@Z -?SetEventLogger@Isolate@v8@@QEAAXP6AXPEBDH@Z@Z -?SetFailedAccessCheckCallbackFunction@Isolate@v8@@QEAAXP6AXV?$Local@VObject@v8@@@2@W4AccessType@2@V?$Local@VValue@v8@@@2@@Z@Z -?SetFatalErrorHandler@Isolate@v8@@QEAAXP6AXPEBD0@Z@Z -?SetFatalMemoryErrorCallback@V8@v8@@SAXP6AXPEBDAEBUOOMDetails@2@@Z@Z -?SetFlagsFromCommandLine@V8@v8@@SAXPEAHPEAPEAD_N@Z -?SetFlagsFromString@V8@v8@@SAXPEBD@Z -?SetFlagsFromString@V8@v8@@SAXPEBD_K@Z -?SetGetDetachednessCallback@HeapProfiler@v8@@QEAAXP6A?AW4Detachedness@Node@EmbedderGraph@2@PEAVIsolate@2@AEBV?$Local@VValue@v8@@@2@GPEAX@Z2@Z -?SetGetExternallyAllocatedMemoryInBytesCallback@Isolate@v8@@QEAAXP6A_KXZ@Z -?SetHandler@ObjectTemplate@v8@@QEAAXAEBUIndexedPropertyHandlerConfiguration@2@@Z -?SetHandler@ObjectTemplate@v8@@QEAAXAEBUNamedPropertyHandlerConfiguration@2@@Z -?SetHostCreateShadowRealmContextCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VContext@v8@@@2@V?$Local@VContext@v8@@@2@@Z@Z -?SetHostImportModuleDynamicallyCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VData@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@V?$Local@VFixedArray@v8@@@2@@Z@Z -?SetHostInitializeImportMetaObjectCallback@Isolate@v8@@QEAAXP6AXV?$Local@VContext@v8@@@2@V?$Local@VModule@v8@@@2@V?$Local@VObject@v8@@@2@@Z@Z -?SetId@DiscardedSamplesDelegate@v8@@AEAAXI@Z -?SetIdle@Isolate@v8@@QEAAX_N@Z -?SetImmutableProto@ObjectTemplate@v8@@QEAAXXZ -?SetIndexedPropertyHandler@ObjectTemplate@v8@@QEAAXP6AXIAEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AXIV?$Local@VValue@v8@@@2@0@ZP6AXIAEBV?$PropertyCallbackInfo@VInteger@v8@@@2@@ZP6AXIAEBV?$PropertyCallbackInfo@VBoolean@v8@@@2@@ZP6AXAEBV?$PropertyCallbackInfo@VArray@v8@@@2@@Z2@Z -?SetIntegrityLevel@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@W4IntegrityLevel@2@@Z -?SetInternalField@Object@v8@@QEAAXHV?$Local@VValue@v8@@@2@@Z -?SetInternalFieldCount@ObjectTemplate@v8@@QEAAXH@Z -?SetIntrinsicDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@W4Intrinsic@2@W4PropertyAttribute@2@@Z -?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@@Z -?SetIsolateUpForNode@node@@YAXPEAVIsolate@v8@@AEBUIsolateSettings@1@@Z -?SetJitCodeEventHandler@Isolate@v8@@QEAAXW4JitCodeEventOptions@2@P6AXPEBUJitCodeEvent@2@@Z@Z -?SetLazyDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@6@Z -?SetLazyDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZV?$Local@VValue@v8@@@2@W4PropertyAttribute@2@W4SideEffectType@2@5@Z -?SetLength@FunctionTemplate@v8@@QEAAXH@Z -?SetMaxAsyncTaskStacksForTest@v8_inspector@@YAXPEAVV8Inspector@1@H@Z -?SetMetricsRecorder@Isolate@v8@@QEAAXAEBV?$shared_ptr@VRecorder@metrics@v8@@@Cr@std@@@Z -?SetMicrotaskQueue@Context@v8@@QEAAXPEAVMicrotaskQueue@2@@Z -?SetMicrotasksPolicy@Isolate@v8@@QEAAXW4MicrotasksPolicy@2@@Z -?SetModifyCodeGenerationFromStringsCallback@Isolate@v8@@QEAAXP6A?AUModifyCodeGenerationFromStringsResult@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@_N@Z@Z -?SetMoreFunctionsCanBeSerializedCallback@WasmStreaming@v8@@QEAAXV?$function@$$A6AXVCompiledWasmModule@v8@@@Z@Cr@std@@@Z -?SetName@Function@v8@@QEAAXV?$Local@VString@v8@@@2@@Z -?SetNativeDataProperty@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VName@v8@@@2@P6AX1AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX1V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z4W4PropertyAttribute@2@W4SideEffectType@2@8@Z -?SetNativeDataProperty@Template@v8@@QEAAXV?$Local@VName@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4AccessControl@2@W4SideEffectType@2@8@Z -?SetNativeDataProperty@Template@v8@@QEAAXV?$Local@VString@v8@@@2@P6AX0AEBV?$PropertyCallbackInfo@VValue@v8@@@2@@ZP6AX0V?$Local@VValue@v8@@@2@AEBV?$PropertyCallbackInfo@X@2@@Z3W4PropertyAttribute@2@W4AccessControl@2@W4SideEffectType@2@8@Z -?SetOOMErrorHandler@Isolate@v8@@QEAAXP6AXPEBDAEBUOOMDetails@2@@Z@Z -?SetPrepareStackTraceCallback@Isolate@v8@@QEAAXP6A?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VArray@v8@@@2@@Z@Z -?SetPrivate@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VPrivate@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?SetPrivate@Template@v8@@QEAAXV?$Local@VPrivate@v8@@@2@V?$Local@VData@v8@@@2@W4PropertyAttribute@2@@Z -?SetProcessExitHandler@node@@YAXPEAVEnvironment@1@$$QEAV?$function@$$A6AXPEAVEnvironment@node@@H@Z@Cr@std@@@Z -?SetPromiseHook@Isolate@v8@@QEAAXP6AXW4PromiseHookType@2@V?$Local@VPromise@v8@@@2@V?$Local@VValue@v8@@@2@@Z@Z -?SetPromiseHooks@Context@v8@@QEAAXV?$Local@VFunction@v8@@@2@000@Z -?SetPromiseRejectCallback@Isolate@v8@@QEAAXP6AXVPromiseRejectMessage@2@@Z@Z -?SetPrototype@Object@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?SetPrototypeProviderTemplate@FunctionTemplate@v8@@QEAAXV?$Local@VFunctionTemplate@v8@@@2@@Z -?SetRAILMode@Isolate@v8@@QEAAXW4RAILMode@2@@Z -?SetReturnAddressLocationResolver@V8@v8@@SAXP6A_K_K@Z@Z -?SetSamplingInterval@CpuProfiler@v8@@QEAAXH@Z -?SetSecurityToken@Context@v8@@QEAAXV?$Local@VValue@v8@@@2@@Z -?SetSharedArrayBufferConstructorEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z -?SetSnapshotDataBlob@V8@v8@@SAXPEAVStartupData@2@@Z -?SetStackLimit@Isolate@v8@@QEAAX_K@Z -?SetSupportsLegacyWireFormat@ValueDeserializer@v8@@QEAAX_N@Z -?SetSyntheticModuleExport@Module@v8@@QEAA?AV?$Maybe@_N@2@PEAVIsolate@2@V?$Local@VString@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?SetTracingController@node@@YAXPEAVTracingController@v8@@@Z -?SetTreatArrayBufferViewsAsHostObjects@ValueSerializer@v8@@QEAAX_N@Z -?SetUnhandledExceptionCallback@V8@v8@@SAXP6AHPEAU_EXCEPTION_POINTERS@@@Z@Z -?SetUrl@WasmStreaming@v8@@QEAAXPEBD_K@Z -?SetUseCounterCallback@Isolate@v8@@QEAAXP6AXPEAV12@W4UseCounterFeature@12@@Z@Z -?SetUsePreciseSampling@CpuProfiler@v8@@QEAAX_N@Z -?SetVerbose@TryCatch@v8@@QEAAX_N@Z -?SetWasmAsyncResolvePromiseCallback@Isolate@v8@@QEAAXP6AXPEAV12@V?$Local@VContext@v8@@@2@V?$Local@VResolver@Promise@v8@@@2@V?$Local@VValue@v8@@@2@W4WasmAsyncSuccess@2@@Z@Z -?SetWasmGCEnabledCallback@Isolate@v8@@QEAAXP6A_NV?$Local@VContext@v8@@@2@@Z@Z -?SetWasmInstanceCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z -?SetWasmLoadSourceMapCallback@Isolate@v8@@QEAAXP6A?AV?$Local@VString@v8@@@2@PEAV12@PEBD@Z@Z -?SetWasmModuleCallback@Isolate@v8@@QEAAXP6A_NAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z -?SetWasmStreamingCallback@Isolate@v8@@QEAAXP6AXAEBV?$FunctionCallbackInfo@VValue@v8@@@2@@Z@Z -?ShouldAbortOnUncaughtException@node@@YA_NPEAVIsolate@v8@@@Z -?ShouldMergeWithExistingScript@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEBA_NXZ -?ShouldThrowOnError@internal@v8@@YA_NPEAVIsolate@12@@Z -?ShutdownProcess@cppgc@@YAXXZ -?Size@Map@v8@@QEBA_KXZ -?Size@Set@v8@@QEBA_KXZ -?SlowGetAlignedPointerFromEmbedderData@Context@v8@@AEAAPEAXH@Z -?SlowGetAlignedPointerFromInternalField@Object@v8@@AEAAPEAXH@Z -?SlowGetEmbedderData@Context@v8@@AEAA?AV?$Local@VValue@v8@@@2@H@Z -?SlowGetInternalField@Object@v8@@AEAA?AV?$Local@VValue@v8@@@2@H@Z -?SourceMapUrl@ScriptOrigin@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?SourceOffsetToLocation@Module@v8@@QEBA?AVLocation@2@H@Z -?SourceTextAvailable@ConsumeCodeCacheTask@ScriptCompiler@v8@@QEAAXPEAVIsolate@3@V?$Local@VString@v8@@@3@AEBVScriptOrigin@3@@Z -?SpinEventLoop@node@@YA?AV?$Maybe@H@v8@@PEAVEnvironment@1@@Z -?StackTrace@TryCatch@v8@@QEBA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?StackTrace@TryCatch@v8@@SA?AV?$MaybeLocal@VValue@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@Cr@std@@@Cr@std@@@Z -?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z -?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@V?$Local@VString@v8@@@2@_N@Z -?Start@CpuProfiler@v8@@QEAA?AUCpuProfilingResult@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@Cr@std@@@Cr@std@@@Z -?Start@node@@YAHHQEAPEAD@Z -?StartGarbageCollection@StandaloneTestingHeap@testing@cppgc@@QEAAXXZ -?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@VCpuProfilingOptions@2@V?$unique_ptr@VDiscardedSamplesDelegate@v8@@U?$default_delete@VDiscardedSamplesDelegate@v8@@@Cr@std@@@Cr@std@@@Z -?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@W4CpuProfilingMode@2@_NI@Z -?StartProfiling@CpuProfiler@v8@@QEAA?AW4CpuProfilingStatus@2@V?$Local@VString@v8@@@2@_N@Z -?StartSamplingHeapProfiler@HeapProfiler@v8@@QEAA_N_KHW4SamplingFlags@12@@Z -?StartTrackingHeapObjects@HeapProfiler@v8@@QEAAX_N@Z -?State@Promise@v8@@QEAA?AW4PromiseState@12@XZ -?SteeleMarkingBarrier@WriteBarrier@internal@cppgc@@SAXAEBUParams@123@PEBX@Z -?SteeleMarkingBarrierSlow@WriteBarrier@internal@cppgc@@CAXPEBX@Z -?SteeleMarkingBarrierSlowWithSentinelCheck@WriteBarrier@internal@cppgc@@CAXPEBX@Z -?Step@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?Stop@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@I@Z -?Stop@node@@YAHPEAVEnvironment@1@_N@Z -?StopProfiling@CpuProfiler@v8@@QEAAPEAVCpuProfile@2@V?$Local@VString@v8@@@2@@Z -?StopSamplingHeapProfiler@HeapProfiler@v8@@QEAAXXZ -?StopTrackingHeapObjects@HeapProfiler@v8@@QEAAXXZ -?StrictEquals@Value@v8@@QEBA_NV?$Local@VValue@v8@@@2@@Z -?StringEquals@String@v8@@QEBA_NV?$Local@VString@v8@@@2@@Z -?Stringify@JSON@v8@@SA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?SupportsCppClassNamesAsObjectNames@NameProvider@cppgc@@SA_NXZ -?SyntaxError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?SystemClockTimeMillis@Platform@v8@@KANXZ -?TableSlotForTesting@GCInfoTable@internal@cppgc@@QEAAAEAUGCInfo@23@G@Z -?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@AEBUHeapSnapshotOptions@12@@Z -?TakeHeapSnapshot@HeapProfiler@v8@@QEAAPEBVHeapSnapshot@2@PEAVActivityControl@2@PEAVObjectNameResolver@12@_N2@Z -?TearDownOncePerProcess@node@@YAXXZ -?Terminate@CppHeap@v8@@QEAAXXZ -?TerminateExecution@Isolate@v8@@QEAAXXZ -?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@1@Z -?Then@Promise@v8@@QEAA?AV?$MaybeLocal@VPromise@v8@@@2@V?$Local@VContext@v8@@@2@V?$Local@VFunction@v8@@@2@@Z -?ThrowError@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?ThrowException@Isolate@v8@@QEAA?AV?$Local@VValue@v8@@@2@V32@@Z -?ToArrayIndex@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToBigInt@Value@v8@@QEBA?AV?$MaybeLocal@VBigInt@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToBoolean@Value@v8@@QEBA?AV?$Local@VBoolean@v8@@@2@PEAVIsolate@2@@Z -?ToDetailString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToISOString@Date@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?ToInt32@Value@v8@@QEBA?AV?$MaybeLocal@VInt32@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToInteger@Value@v8@@QEBA?AV?$MaybeLocal@VInteger@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToLocalEmpty@api_internal@v8@@YAXXZ -?ToNumber@Value@v8@@QEBA?AV?$MaybeLocal@VNumber@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToObject@Value@v8@@QEBA?AV?$MaybeLocal@VObject@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToString@SourceLocation@v8@@QEBA?AV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@XZ -?ToString@V8StackTraceId@v8_inspector@@QEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@XZ -?ToString@Value@v8@@QEBA?AV?$MaybeLocal@VString@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToUint32@Value@v8@@QEBA?AV?$MaybeLocal@VUint32@v8@@@2@V?$Local@VContext@v8@@@2@@Z -?ToWordsArray@BigInt@v8@@QEBAXPEAH0PEA_K@Z -?ToggleMainThreadMarking@StandaloneTestingHeap@testing@cppgc@@QEAAX_N@Z -?TotalAllocatedObjectSize@ProcessHeapStatistics@cppgc@@SA_KXZ -?TotalAllocatedSpace@ProcessHeapStatistics@cppgc@@SA_KXZ -?TransferArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z -?TransferArrayBuffer@ValueSerializer@v8@@QEAAXIV?$Local@VArrayBuffer@v8@@@2@@Z -?TransferSharedArrayBuffer@ValueDeserializer@v8@@QEAAXIV?$Local@VSharedArrayBuffer@v8@@@2@@Z -?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@PEAVEnvironment@1@PEBD1AEBV234@V?$Local@VValue@v8@@@v8@@@Z -?TriggerNodeReport@node@@YA?AV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@PEAVIsolate@v8@@PEBD1AEBV234@V?$Local@VValue@v8@@@6@@Z -?TryAllocateNodeFromFreeList@PersistentRegionBase@internal@cppgc@@IEAAPEAVPersistentNode@23@PEAXP6AXAEAVRootVisitor@23@PEBX@Z@Z -?TryGetCurrent@Isolate@v8@@SAPEAV12@XZ -?TryHandleWebAssemblyTrapWindows@v8@@YA_NPEAU_EXCEPTION_POINTERS@@@Z -?TryUnwindV8Frames@Unwinder@v8@@SA_NAEBUJSEntryStubs@2@_KPEBUMemoryRange@2@PEAURegisterState@2@PEBX@Z -?TypeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?TypeOf@Value@v8@@QEAA?AV?$Local@VString@v8@@@2@PEAVIsolate@2@@Z -?UVException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD111@Z -?Uint32Value@Value@v8@@QEBA?AV?$Maybe@I@2@V?$Local@VContext@v8@@@2@@Z -?Uint64Value@BigInt@v8@@QEBA_KPEA_N@Z -?Unlock@ExternalStringResourceBase@String@v8@@MEBAXXZ -?Unpack@WasmStreaming@v8@@SA?AV?$shared_ptr@VWasmStreaming@v8@@@Cr@std@@PEAVIsolate@2@V?$Local@VValue@v8@@@2@@Z -?UpdateDataCache@ExternalOneByteStringResource@String@v8@@QEAAXXZ -?UpdateDataCache@ExternalStringResource@String@v8@@QEAAXXZ -?UpdateLoadStartTime@Isolate@v8@@QEAAXXZ -?UseDefaultSecurityToken@Context@v8@@QEAAXXZ -?UseDetailedSourcePositionsForProfiling@CpuProfiler@v8@@SAXPEAVIsolate@2@@Z -?Utf8Length@String@v8@@QEBAHPEAVIsolate@2@@Z -?ValidateIndex@FastApiTypedArrayBase@v8@@QEBAX_K@Z -?Value@Boolean@v8@@QEBA_NXZ -?Value@External@v8@@QEBAPEAXXZ -?Value@Int32@v8@@QEBAHXZ -?Value@Integer@v8@@QEBA_JXZ -?Value@Number@v8@@QEBANXZ -?Value@Uint32@v8@@QEBAIXZ -?ValueOf@BigIntObject@v8@@QEBA?AV?$Local@VBigInt@v8@@@2@XZ -?ValueOf@BooleanObject@v8@@QEBA_NXZ -?ValueOf@Date@v8@@QEBANXZ -?ValueOf@NumberObject@v8@@QEBANXZ -?ValueOf@StringObject@v8@@QEBA?AV?$Local@VString@v8@@@2@XZ -?ValueOf@SymbolObject@v8@@QEBA?AV?$Local@VSymbol@v8@@@2@XZ -?VerifyExternalStringResource@String@v8@@AEBAXPEAVExternalStringResource@12@@Z -?VerifyExternalStringResourceBase@String@v8@@AEBAXPEAVExternalStringResourceBase@12@W4Encoding@12@@Z -?VerifyHostDefinedOptions@ScriptOrigin@v8@@AEBAXXZ -?Visit@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@@Z -?VisitEphemeron@Visitor@cppgc@@MEAAXPEBX0UTraceDescriptor@2@@Z -?VisitExternalResources@Isolate@v8@@QEAAXPEAVExternalResourceVisitor@2@@Z -?VisitExternalString@ExternalResourceVisitor@v8@@UEAAXV?$Local@VString@v8@@@2@@Z -?VisitPersistentHandle@PersistentHandleVisitor@v8@@UEAAXPEAV?$Persistent@VValue@v8@@V?$NonCopyablePersistentTraits@VValue@v8@@@2@@2@G@Z -?VisitRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@AEBVSourceLocation@v8@@@Z -?VisitWeak@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@P6AXAEBVLivenessBroker@2@0@Z0@Z -?VisitWeakContainer@Visitor@cppgc@@MEAAXPEBXUTraceDescriptor@2@1P6AXAEBVLivenessBroker@2@0@Z0@Z -?VisitWeakRoot@RootVisitor@internal@cppgc@@MEAAXPEBXUTraceDescriptor@3@P6AXAEBVLivenessBroker@3@0@Z0AEBVSourceLocation@v8@@@Z -?Wake@AtomicsWaitWakeHandle@Isolate@v8@@QEAAXXZ -?WasDetached@ArrayBuffer@v8@@QEBA_NXZ -?WasmCompileError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?WasmLinkError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?WasmRuntimeError@Exception@v8@@SA?AV?$Local@VValue@v8@@@2@V?$Local@VString@v8@@@2@@Z -?WinapiErrnoException@node@@YA?AV?$Local@VValue@v8@@@v8@@PEAVIsolate@3@HPEBD11@Z -?WordCount@BigInt@v8@@QEBAHXZ -?Write@String@v8@@QEBAHPEAVIsolate@2@PEAGHHH@Z -?WriteDouble@ValueSerializer@v8@@QEAAXN@Z -?WriteHeader@ValueSerializer@v8@@QEAAXXZ -?WriteHeapStatsChunk@OutputStream@v8@@UEAA?AW4WriteResult@12@PEAUHeapStatsUpdate@2@H@Z -?WriteHostObject@Delegate@ValueSerializer@v8@@UEAA?AV?$Maybe@_N@3@PEAVIsolate@3@V?$Local@VObject@v8@@@3@@Z -?WriteOneByte@String@v8@@QEBAHPEAVIsolate@2@PEAEHHH@Z -?WriteRawBytes@ValueSerializer@v8@@QEAAXPEBX_K@Z -?WriteUint32@ValueSerializer@v8@@QEAAXI@Z -?WriteUint64@ValueSerializer@v8@@QEAAX_K@Z -?WriteUtf8@String@v8@@QEBAHPEAVIsolate@2@PEADHPEAHH@Z -?WriteValue@ValueSerializer@v8@@QEAA?AV?$Maybe@_N@2@V?$Local@VContext@v8@@@2@V?$Local@VValue@v8@@@2@@Z -?XHR@ReasonEnum@Paused@API@Debugger@protocol@v8_inspector@@3PEBDEB DATA -?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ -?__alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ -?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAAEAV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ -?__alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAAEBV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ -?__annotate_contiguous_container@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAXPEBX000@Z -?__annotate_contiguous_container@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAXPEBX000@Z -?__annotate_delete@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAXXZ -?__annotate_delete@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAXXZ -?__annotate_increase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAX_K@Z -?__annotate_increase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAX_K@Z -?__annotate_new@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAX_K@Z -?__annotate_new@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAX_K@Z -?__annotate_shrink@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAX_K@Z -?__annotate_shrink@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAX_K@Z -?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAX_K@Z -?__append@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z -?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAX_K@Z -?__append@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z -?__base_destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z -?__base_destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z -?__clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXXZ -?__clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXXZ -?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAX_K@Z -?__construct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z -?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAX_K@Z -?__construct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z -?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEBV123@@Z -?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z -?__copy_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z -?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEBV123@@Z -?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$00@23@@Z -?__copy_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEBV123@U?$integral_constant@_N$0A@@23@@Z -?__destruct_at_end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z -?__destruct_at_end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z -?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAAEAPEAUCpuProfileDeoptFrame@v8@@XZ -?__end_cap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAAEBQEAUCpuProfileDeoptFrame@v8@@XZ -?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAAEAPEAUCpuProfileDeoptInfo@v8@@XZ -?__end_cap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAAEBQEAUCpuProfileDeoptInfo@v8@@XZ -?__invalidate_iterators_past@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@@Z -?__invalidate_iterators_past@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@@Z -?__invariants@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA_NXZ -?__invariants@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA_NXZ -?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@PEAUCpuProfileDeoptFrame@v8@@@Z -?__make_iter@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@PEBUCpuProfileDeoptFrame@v8@@@Z -?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@PEAUCpuProfileDeoptInfo@v8@@@Z -?__make_iter@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@PEBUCpuProfileDeoptInfo@v8@@@Z -?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z -?__move_assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z -?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z -?__move_assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z -?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@@Z -?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z -?__move_assign_alloc@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z -?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@@Z -?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$00@23@@Z -?__move_assign_alloc@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEAV123@U?$integral_constant@_N$0A@@23@@Z -?__move_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptFrame@v8@@00@Z -?__move_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXPEAUCpuProfileDeoptInfo@v8@@00@Z -?__recommend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBA_K_K@Z -?__recommend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBA_K_K@Z -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAPEAUCpuProfileDeoptFrame@v8@@AEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@23@PEAU45@@Z -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptFrame@v8@@AEAV?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@23@@Z -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAPEAUCpuProfileDeoptInfo@v8@@AEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@23@PEAU45@@Z -?__swap_out_circular_buffer@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXAEAU?$__split_buffer@UCpuProfileDeoptInfo@v8@@AEAV?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@23@@Z -?__throw_length_error@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAXXZ -?__throw_length_error@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAXXZ -?__throw_out_of_range@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEBAXXZ -?__throw_out_of_range@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEBAXXZ -?__vallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAX_K@Z -?__vallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAX_K@Z -?__vdeallocate@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@AEAAXXZ -?__vdeallocate@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@AEAAXXZ -?allocator@GCInfoTable@internal@cppgc@@QEBAAEAVPageAllocator@v8@@XZ -?array_buffer_allocator@CommonEnvironmentSetup@node@@QEBA?AV?$shared_ptr@VArrayBufferAllocator@node@@@Cr@std@@XZ -?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z -?assign@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z -?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAXV?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z -?assign@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z -?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@_K@Z -?at@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@_K@Z -?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@_K@Z -?at@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@_K@Z -?auto_enable@Extension@v8@@QEAA_NXZ -?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ -?back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ -?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ -?back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ -?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ -?begin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ -?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ -?begin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ -?begin@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ -?beginEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z -?beginUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ -?build_@Version@internal@v8@@0HA DATA -?bytecode_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ -?cached_data@ExternalOneByteStringResource@String@v8@@QEBAPEBDXZ -?cached_data@ExternalStringResource@String@v8@@QEBAPEBGXZ -?canDispatchMethod@V8InspectorSession@v8_inspector@@SA_NVStringView@2@@Z -?canExecuteScripts@V8InspectorClient@v8_inspector@@UEAA_NH@Z -?cancelTimer@V8InspectorClient@v8_inspector@@UEAAXPEAX@Z -?candidate_@Version@internal@v8@@0_NA DATA -?capacity@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA_KXZ -?capacity@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA_KXZ -?card@AgeTable@internal@cppgc@@AEBA_K_K@Z -?cbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ -?cbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ -?cend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ -?cend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ -?characters16@StringView@v8_inspector@@QEBAPEBGXZ -?characters8@StringView@v8_inspector@@QEBAPEBEXZ -?clear@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAXXZ -?clear@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAXXZ -?code_and_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ -?code_range_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ -?configurable@PropertyDescriptor@v8@@QEBA_NXZ -?connect@V8Inspector@v8_inspector@@UEAA?AV?$unique_ptr@VV8InspectorSession@v8_inspector@@U?$default_delete@VV8InspectorSession@v8_inspector@@@Cr@std@@@Cr@std@@HPEAVChannel@12@VStringView@2@W4ClientTrustLevel@12@W4SessionPauseState@12@@Z -?consoleAPIMessage@V8InspectorClient@v8_inspector@@UEAAXHW4MessageErrorLevel@Isolate@v8@@AEBVStringView@2@1IIPEAVV8StackTrace@2@@Z -?consoleClear@V8InspectorClient@v8_inspector@@UEAAXH@Z -?consoleTime@V8InspectorClient@v8_inspector@@UEAAXAEBVStringView@2@@Z -?consoleTimeEnd@V8InspectorClient@v8_inspector@@UEAAXAEBVStringView@2@@Z -?consoleTimeStamp@V8InspectorClient@v8_inspector@@UEAAXAEBVStringView@2@@Z -?context@CommonEnvironmentSetup@node@@QEBA?AV?$Local@VContext@v8@@@v8@@XZ -?cpu_profiler_metadata_size@HeapCodeStatistics@v8@@QEAA_KXZ -?crbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ -?crbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ -?create@StringBuffer@v8_inspector@@SA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@VStringView@2@@Z -?create@V8Inspector@v8_inspector@@SA?AV?$unique_ptr@VV8Inspector@v8_inspector@@U?$default_delete@VV8Inspector@v8_inspector@@@Cr@std@@@Cr@std@@PEAVIsolate@v8@@PEAVV8InspectorClient@2@@Z -?crend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ -?crend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ -?currentTimeMS@V8InspectorClient@v8_inspector@@UEAANXZ -?data@?$MemorySpan@$$CBD@v8@@QEBAPEBDXZ -?data@?$MemorySpan@$$CBE@v8@@QEBAPEBEXZ -?data@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBAPEBVCFunction@2@XZ -?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAPEAUCpuProfileDeoptFrame@v8@@XZ -?data@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBAPEBUCpuProfileDeoptFrame@v8@@XZ -?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAPEAUCpuProfileDeoptInfo@v8@@XZ -?data@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBAPEBUCpuProfileDeoptInfo@v8@@XZ -?data@Binary@protocol@v8_inspector@@QEBAPEBEXZ -?dependencies@Extension@v8@@QEBAPEAPEBDXZ -?dependency_count@Extension@v8@@QEBAHXZ -?descriptionForValueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@V?$Local@VContext@v8@@@v8@@V?$Local@VValue@v8@@@7@@Z -?dispatchError@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VMessage@v8@@@4@V?$Local@VValue@v8@@@4@@Z -?does_zap_garbage@HeapStatistics@v8@@QEAA_KXZ -?embedder_@Version@internal@v8@@0PEBDEB DATA -?empty@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA_NXZ -?empty@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA_NXZ -?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@XZ -?end@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@XZ -?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@XZ -?end@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@XZ -?end@ExtensionConfiguration@v8@@QEBAPEAPEBDXZ -?endEnsureAllContextsInGroup@V8InspectorClient@v8_inspector@@UEAAXH@Z -?endUserGesture@V8InspectorClient@v8_inspector@@UEAAXXZ -?ensureDefaultContextInGroup@V8InspectorClient@v8_inspector@@UEAA?AV?$Local@VContext@v8@@@v8@@H@Z -?enumerable@PropertyDescriptor@v8@@QEBA_NXZ -?env@CommonEnvironmentSetup@node@@QEBAPEAVEnvironment@2@XZ -?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@0@Z -?erase@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@@Z -?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@0@Z -?erase@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@@Z -?event_loop@CommonEnvironmentSetup@node@@QEBAPEAUuv_loop_s@@XZ -?executionContextId@V8ContextInfo@v8_inspector@@SAHV?$Local@VContext@v8@@@v8@@@Z -?external_memory@HeapStatistics@v8@@QEAA_KXZ -?external_script_source_size@HeapCodeStatistics@v8@@QEAA_KXZ -?fromBase64@Binary@protocol@v8_inspector@@SA?AV123@AEBVString16@3@PEA_N@Z -?fromBinary@Domain@API@Schema@protocol@v8_inspector@@SA?AV?$unique_ptr@VDomain@API@Schema@protocol@v8_inspector@@U?$default_delete@VDomain@API@Schema@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PEBE_K@Z -?fromBinary@RemoteObject@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VRemoteObject@API@Runtime@protocol@v8_inspector@@U?$default_delete@VRemoteObject@API@Runtime@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PEBE_K@Z -?fromBinary@SearchMatch@API@Debugger@protocol@v8_inspector@@SA?AV?$unique_ptr@VSearchMatch@API@Debugger@protocol@v8_inspector@@U?$default_delete@VSearchMatch@API@Debugger@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PEBE_K@Z -?fromBinary@StackTrace@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTrace@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTrace@API@Runtime@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PEBE_K@Z -?fromBinary@StackTraceId@API@Runtime@protocol@v8_inspector@@SA?AV?$unique_ptr@VStackTraceId@API@Runtime@protocol@v8_inspector@@U?$default_delete@VStackTraceId@API@Runtime@protocol@v8_inspector@@@Cr@std@@@Cr@std@@PEBE_K@Z -?fromSpan@Binary@protocol@v8_inspector@@SA?AV123@PEBE_K@Z -?fromUTF16LE@String16@v8_inspector@@SA?AV12@PEBG_K@Z -?fromUTF8@String16@v8_inspector@@SA?AV12@PEBD_K@Z -?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptFrame@v8@@XZ -?front@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptFrame@v8@@XZ -?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAAEAUCpuProfileDeoptInfo@v8@@XZ -?front@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBAAEBUCpuProfileDeoptInfo@v8@@XZ -?g_base_@CageBaseGlobal@internal@cppgc@@0TBase@123@A DATA -?g_heap_base_@CagedHeapBase@internal@cppgc@@0_KA DATA -?generateUniqueId@V8InspectorClient@v8_inspector@@UEAA_JXZ -?get@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?get_active_implementation@simdutf@@YAAEAV?$atomic_ptr@$$CBVimplementation@simdutf@@@internal@1@XZ -?get_allocator@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptFrame@v8@@@23@XZ -?get_allocator@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$allocator@UCpuProfileDeoptInfo@v8@@@23@XZ -?get_async_id@AsyncResource@node@@QEBANXZ -?get_available_implementations@simdutf@@YAAEBVavailable_implementation_list@internal@1@XZ -?get_linked_module@binding@node@@YAPEAUnode_module@2@PEBD@Z -?get_private@PropertyDescriptor@v8@@QEBAPEAUPrivateData@12@XZ -?get_resource@AsyncResource@node@@QEAA?AV?$Local@VObject@v8@@@v8@@XZ -?get_trigger_async_id@AsyncResource@node@@QEBANXZ -?global_table_@GlobalGCInfoTable@internal@cppgc@@0PEAVGCInfoTable@23@EA DATA -?has_configurable@PropertyDescriptor@v8@@QEBA_NXZ -?has_enumerable@PropertyDescriptor@v8@@QEBA_NXZ -?has_filter_context@CpuProfilingOptions@v8@@AEBA_NXZ -?has_get@PropertyDescriptor@v8@@QEBA_NXZ -?has_set@PropertyDescriptor@v8@@QEBA_NXZ -?has_value@PropertyDescriptor@v8@@QEBA_NXZ -?has_writable@PropertyDescriptor@v8@@QEBA_NXZ -?heap_size_limit@HeapStatistics@v8@@QEAA_KXZ -?impl@StreamedSource@ScriptCompiler@v8@@QEBAPEAUScriptStreamingData@internal@3@XZ -?initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ -?initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@$$QEAUCpuProfileDeoptFrame@v8@@@Z -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@AEBUCpuProfileDeoptFrame@v8@@@Z -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@V?$initializer_list@UCpuProfileDeoptFrame@v8@@@3@@Z -?insert@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@23@_KAEBUCpuProfileDeoptFrame@v8@@@Z -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@$$QEAUCpuProfileDeoptInfo@v8@@@Z -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@AEBUCpuProfileDeoptInfo@v8@@@Z -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@V?$initializer_list@UCpuProfileDeoptInfo@v8@@@3@@Z -?insert@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@23@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@23@_KAEBUCpuProfileDeoptInfo@v8@@@Z -?installAdditionalCommandLineAPI@V8InspectorClient@v8_inspector@@UEAAXV?$Local@VContext@v8@@@v8@@V?$Local@VObject@v8@@@4@@Z -?is8Bit@StringView@v8_inspector@@QEBA_NXZ -?isInspectableHeapObject@V8InspectorClient@v8_inspector@@UEAA_NV?$Local@VObject@v8@@@v8@@@Z -?isValid@V8DebuggerId@v8_inspector@@QEBA_NXZ -?isolate@CommonEnvironmentSetup@node@@QEBAPEAVIsolate@v8@@XZ -?isolate_data@CommonEnvironmentSetup@node@@QEBAPEAVIsolateData@2@XZ -?kAllocationGranularity@AgeTable@internal@cppgc@@0_KB DATA -?kCardSizeInBytes@AgeTable@internal@cppgc@@2_KB DATA -?kEmbedderFieldCount@ArrayBuffer@v8@@2HB DATA -?kEmbedderFieldCount@ArrayBufferView@v8@@2HB DATA -?kEmbedderFieldCount@Promise@v8@@2HB DATA -?kEmptyString@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kFalseValue@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kFirstStringMap@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kFlagCount@RegExp@v8@@2HB DATA -?kHalfWordShift@?1??AreWithinCage@CagedHeapBase@internal@cppgc@@SA_NPEBX0@Z@4_KB DATA -?kHiddenName@NameProvider@cppgc@@2QBDB DATA -?kInitialWantedLimit@GCInfoTable@internal@cppgc@@2GB DATA -?kInternalFieldCount@ArrayBuffer@v8@@2HB DATA -?kInternalFieldCount@ArrayBufferView@v8@@2HB DATA -?kInternalFieldCount@SharedArrayBuffer@v8@@2HB DATA -?kLastStringMap@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kLineOffsetNotFound@Function@v8@@2HB DATA -?kLowerHalfWordMask@CageBaseGlobal@internal@cppgc@@0_KB DATA -?kMB@ResourceConstraints@v8@@0_KB DATA -?kMaxFramesCount@TickSample@internal@v8@@2IB DATA -?kMaxFramesCountLog2@TickSample@internal@v8@@2IB DATA -?kMaxIndex@GCInfoTable@internal@cppgc@@2GB DATA -?kMaxLength@String@v8@@2HB DATA -?kMaxLength@TypedArray@v8@@2_KB DATA -?kMinCodePagesBufferSize@Isolate@v8@@2_KB DATA -?kMinIndex@GCInfoTable@internal@cppgc@@2GB DATA -?kNoColumnInfo@Message@v8@@2HB DATA -?kNoColumnNumberInfo@AllocationProfile@v8@@2HB DATA -?kNoColumnNumberInfo@CpuProfileNode@v8@@2HB DATA -?kNoLineNumberInfo@AllocationProfile@v8@@2HB DATA -?kNoLineNumberInfo@CpuProfileNode@v8@@2HB DATA -?kNoLineNumberInfo@Message@v8@@2HB DATA -?kNoNameDeducible@NameProvider@cppgc@@2QBDB DATA -?kNoSampleLimit@CpuProfilingOptions@v8@@2IB DATA -?kNoScriptId@UnboundScript@v8@@2HB DATA -?kNoScriptIdInfo@Message@v8@@2HB DATA -?kNoWasmFunctionIndexInfo@Message@v8@@2HB DATA -?kNullValue@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kPersistentHandleNoClassId@HeapProfiler@v8@@2GB DATA -?kRequiredSize@AgeTable@internal@cppgc@@0_KB DATA -?kTheHoleValue@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kTrueValue@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kUndefinedValue@StaticReadOnlyRoot@Internals@internal@v8@@2IB DATA -?kUnknownObjectId@HeapProfiler@v8@@2IB DATA -?length@FastApiTypedArrayBase@v8@@QEBA_KXZ -?length@StringView@v8_inspector@@QEBA_KXZ -?length@Utf8Value@String@v8@@QEBAHXZ -?length@Value@String@v8@@QEBAHXZ -?major_@Version@internal@v8@@0HA DATA -?malloced_memory@HeapStatistics@v8@@QEAA_KXZ -?maxAsyncCallStackDepthChanged@V8InspectorClient@v8_inspector@@UEAAXH@Z -?max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ -?max_samples@CpuProfilingOptions@v8@@QEBAIXZ -?max_size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA_KXZ -?max_size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA_KXZ -?max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEBA_KXZ -?memoryInfo@V8InspectorClient@v8_inspector@@UEAA?AV?$MaybeLocal@VValue@v8@@@v8@@PEAVIsolate@4@V?$Local@VContext@v8@@@4@@Z -?minor_@Version@internal@v8@@0HA DATA -?mode@CpuProfilingOptions@v8@@QEBA?AW4CpuProfilingMode@2@XZ -?muteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z -?name@Extension@v8@@QEBAPEBDXZ -?number_of_detached_contexts@HeapStatistics@v8@@QEAA_KXZ -?number_of_native_contexts@HeapStatistics@v8@@QEAA_KXZ -?object_count@HeapObjectStatistics@v8@@QEAA_KXZ -?object_size@HeapObjectStatistics@v8@@QEAA_KXZ -?object_sub_type@HeapObjectStatistics@v8@@QEAAPEBDXZ -?object_type@HeapObjectStatistics@v8@@QEAAPEBDXZ -?pair@V8DebuggerId@v8_inspector@@QEBA?AU?$pair@_J_J@Cr@std@@XZ -?patch_@Version@internal@v8@@0HA DATA -?peak_malloced_memory@HeapStatistics@v8@@QEAA_KXZ -?physical_space_size@HeapSpaceStatistics@v8@@QEAA_KXZ -?pop_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAXXZ -?pop_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAXXZ -?print@TickSample@internal@v8@@QEBAXXZ -?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAX$$QEAUCpuProfileDeoptFrame@v8@@@Z -?push_back@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAXAEBUCpuProfileDeoptFrame@v8@@@Z -?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAX$$QEAUCpuProfileDeoptInfo@v8@@@Z -?push_back@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAXAEBUCpuProfileDeoptInfo@v8@@@Z -?quitMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXXZ -?raw_filter_context@CpuProfilingOptions@v8@@AEBAPEAXXZ -?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ -?rbegin@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ -?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ -?rbegin@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ -?read_only_space_physical_size@SharedMemoryStatistics@v8@@QEAA_KXZ -?read_only_space_size@SharedMemoryStatistics@v8@@QEAA_KXZ -?read_only_space_used_size@SharedMemoryStatistics@v8@@QEAA_KXZ -?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ -?rend@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptFrame@v8@@@Cr@std@@@23@XZ -?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAA?AV?$reverse_iterator@V?$__wrap_iter@PEAUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ -?rend@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA?AV?$reverse_iterator@V?$__wrap_iter@PEBUCpuProfileDeoptInfo@v8@@@Cr@std@@@23@XZ -?reserve@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAX_K@Z -?reserve@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAX_K@Z -?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAX_K@Z -?resize@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAX_KAEBUCpuProfileDeoptFrame@v8@@@Z -?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAX_K@Z -?resize@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAX_KAEBUCpuProfileDeoptInfo@v8@@@Z -?resourceNameToUrl@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@AEBVStringView@2@@Z -?runIfWaitingForDebugger@V8InspectorClient@v8_inspector@@UEAAXH@Z -?runMessageLoopOnInstrumentationPause@V8InspectorClient@v8_inspector@@UEAAXH@Z -?runMessageLoopOnPause@V8InspectorClient@v8_inspector@@UEAAXH@Z -?sampling_interval_us@CpuProfilingOptions@v8@@QEBAHXZ -?serializeToWebDriverValue@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VWebDriverValue@v8_inspector@@U?$default_delete@VWebDriverValue@v8_inspector@@@Cr@std@@@Cr@std@@V?$Local@VValue@v8@@@v8@@H@Z -?set@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?set_auto_enable@Extension@v8@@QEAAX_N@Z -?set_code_range_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z -?set_configurable@PropertyDescriptor@v8@@QEAAX_N@Z -?set_enumerable@PropertyDescriptor@v8@@QEAAX_N@Z -?set_initial_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z -?set_initial_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z -?set_max_old_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z -?set_max_young_generation_size_in_bytes@ResourceConstraints@v8@@QEAAX_K@Z -?set_stack_limit@ResourceConstraints@v8@@QEAAXPEAI@Z -?shrink_to_fit@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAXXZ -?shrink_to_fit@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAXXZ -?size@?$MemorySpan@$$CBD@v8@@QEBA_KXZ -?size@?$MemorySpan@$$CBE@v8@@QEBA_KXZ -?size@?$MemorySpan@$$CBVCFunction@v8@@@v8@@QEBA_KXZ -?size@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEBA_KXZ -?size@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEBA_KXZ -?size@Binary@protocol@v8_inspector@@QEBA_KXZ -?soname_@Version@internal@v8@@0PEBDEB DATA -?source@Extension@v8@@QEBAPEBVExternalOneByteStringResource@String@2@XZ -?source_length@Extension@v8@@QEBA_KXZ -?source_url@CompiledWasmModule@v8@@QEBAAEBV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@XZ -?space_available_size@HeapSpaceStatistics@v8@@QEAA_KXZ -?space_name@HeapSpaceStatistics@v8@@QEAAPEBDXZ -?space_size@HeapSpaceStatistics@v8@@QEAA_KXZ -?space_used_size@HeapSpaceStatistics@v8@@QEAA_KXZ -?stack_limit@ResourceConstraints@v8@@QEBAPEAIXZ -?startRepeatingTimer@V8InspectorClient@v8_inspector@@UEAAXNP6AXPEAX@Z0@Z -?swap@?$vector@UCpuProfileDeoptFrame@v8@@V?$allocator@UCpuProfileDeoptFrame@v8@@@Cr@std@@@Cr@std@@QEAAXAEAV123@@Z -?swap@?$vector@UCpuProfileDeoptInfo@v8@@V?$allocator@UCpuProfileDeoptInfo@v8@@@Cr@std@@@Cr@std@@QEAAXAEAV123@@Z -?toBase64@Binary@protocol@v8_inspector@@QEBA?AVString16@3@XZ -?toString@V8DebuggerId@v8_inspector@@QEBA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@XZ -?total_allocated_object_size_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@Cr@std@@A DATA -?total_allocated_space_@ProcessHeapStatistics@cppgc@@0U?$atomic@_K@Cr@std@@A DATA -?total_available_size@HeapStatistics@v8@@QEAA_KXZ -?total_global_handles_size@HeapStatistics@v8@@QEAA_KXZ -?total_heap_size@HeapStatistics@v8@@QEAA_KXZ -?total_heap_size_executable@HeapStatistics@v8@@QEAA_KXZ -?total_physical_size@HeapStatistics@v8@@QEAA_KXZ -?unmuteMetrics@V8InspectorClient@v8_inspector@@UEAAXH@Z -?used_global_handles_size@HeapStatistics@v8@@QEAA_KXZ -?used_heap_size@HeapStatistics@v8@@QEAA_KXZ -?utf8@String16@v8_inspector@@QEBA?AV?$basic_string@DU?$char_traits@D@Cr@std@@V?$allocator@D@23@@Cr@std@@XZ -?value@PropertyDescriptor@v8@@QEBA?AV?$Local@VValue@v8@@@2@XZ -?valueSubtype@V8InspectorClient@v8_inspector@@UEAA?AV?$unique_ptr@VStringBuffer@v8_inspector@@U?$default_delete@VStringBuffer@v8_inspector@@@Cr@std@@@Cr@std@@V?$Local@VValue@v8@@@v8@@@Z -?version_string_@Version@internal@v8@@0PEBDEB DATA -?writable@PropertyDescriptor@v8@@QEBA_NXZ -?write_barrier_enabled_@WriteBarrier@internal@cppgc@@0VAtomicEntryFlag@23@A DATA -Cr_z_adler32 -Cr_z_adler32_combine -Cr_z_adler32_z -Cr_z_compress -Cr_z_compress2 -Cr_z_compressBound -Cr_z_crc32 -Cr_z_crc32_combine -Cr_z_crc32_combine_gen -Cr_z_crc32_combine_op -Cr_z_crc32_z -Cr_z_deflate -Cr_z_deflateBound -Cr_z_deflateCopy -Cr_z_deflateEnd -Cr_z_deflateGetDictionary -Cr_z_deflateInit2_ -Cr_z_deflateInit_ -Cr_z_deflateParams -Cr_z_deflatePending -Cr_z_deflatePrime -Cr_z_deflateReset -Cr_z_deflateResetKeep -Cr_z_deflateSetDictionary -Cr_z_deflateSetHeader -Cr_z_deflateTune -Cr_z_get_crc_table -Cr_z_uncompress -Cr_z_uncompress2 -Cr_z_zError -Cr_z_zlibCompileFlags -Cr_z_zlibVersion -CrashForExceptionInNonABICompliantCodeRange -GetHandleVerifier -IsSandboxedProcess -napi_acquire_threadsafe_function -napi_add_async_cleanup_hook -napi_add_env_cleanup_hook -napi_add_finalizer -napi_adjust_external_memory -napi_async_destroy -napi_async_init -napi_call_function -napi_call_threadsafe_function -napi_cancel_async_work -napi_check_object_type_tag -napi_close_callback_scope -napi_close_escapable_handle_scope -napi_close_handle_scope -napi_coerce_to_bool -napi_coerce_to_number -napi_coerce_to_object -napi_coerce_to_string -napi_create_array -napi_create_array_with_length -napi_create_arraybuffer -napi_create_async_work -napi_create_bigint_int64 -napi_create_bigint_uint64 -napi_create_bigint_words -napi_create_buffer -napi_create_buffer_copy -napi_create_dataview -napi_create_date -napi_create_double -napi_create_error -napi_create_external -napi_create_external_arraybuffer -napi_create_external_buffer -napi_create_function -napi_create_int32 -napi_create_int64 -napi_create_object -napi_create_promise -napi_create_range_error -napi_create_reference -napi_create_string_latin1 -napi_create_string_utf16 -napi_create_string_utf8 -napi_create_symbol -napi_create_threadsafe_function -napi_create_type_error -napi_create_typedarray -napi_create_uint32 -napi_define_class -napi_define_properties -napi_delete_async_work -napi_delete_element -napi_delete_property -napi_delete_reference -napi_detach_arraybuffer -napi_escape_handle -napi_fatal_error -napi_fatal_exception -napi_get_all_property_names -napi_get_and_clear_last_exception -napi_get_array_length -napi_get_arraybuffer_info -napi_get_boolean -napi_get_buffer_info -napi_get_cb_info -napi_get_dataview_info -napi_get_date_value -napi_get_element -napi_get_global -napi_get_instance_data -napi_get_last_error_info -napi_get_named_property -napi_get_new_target -napi_get_node_version -napi_get_null -napi_get_property -napi_get_property_names -napi_get_prototype -napi_get_reference_value -napi_get_threadsafe_function_context -napi_get_typedarray_info -napi_get_undefined -napi_get_uv_event_loop -napi_get_value_bigint_int64 -napi_get_value_bigint_uint64 -napi_get_value_bigint_words -napi_get_value_bool -napi_get_value_double -napi_get_value_external -napi_get_value_int32 -napi_get_value_int64 -napi_get_value_string_latin1 -napi_get_value_string_utf16 -napi_get_value_string_utf8 -napi_get_value_uint32 -napi_get_version -napi_has_element -napi_has_named_property -napi_has_own_property -napi_has_property -napi_instanceof -napi_is_array -napi_is_arraybuffer -napi_is_buffer -napi_is_dataview -napi_is_date -napi_is_detached_arraybuffer -napi_is_error -napi_is_exception_pending -napi_is_promise -napi_is_typedarray -napi_make_callback -napi_module_register -napi_new_instance -napi_object_freeze -napi_object_seal -napi_open_callback_scope -napi_open_escapable_handle_scope -napi_open_handle_scope -napi_queue_async_work -napi_ref_threadsafe_function -napi_reference_ref -napi_reference_unref -napi_reject_deferred -napi_release_threadsafe_function -napi_remove_async_cleanup_hook -napi_remove_env_cleanup_hook -napi_remove_wrap -napi_resolve_deferred -napi_run_script -napi_set_element -napi_set_instance_data -napi_set_named_property -napi_set_property -napi_strict_equals -napi_throw -napi_throw_error -napi_throw_range_error -napi_throw_type_error -napi_type_tag_object -napi_typeof -napi_unref_threadsafe_function -napi_unwrap -napi_wrap -node_api_create_syntax_error -node_api_get_module_file_name -node_api_symbol_for -node_api_throw_syntax_error -qq_magic_node_register -sqlite3_dbdata_init -uv_accept -uv_async_init -uv_async_send -uv_available_parallelism -uv_backend_fd -uv_backend_timeout -uv_barrier_destroy -uv_barrier_init -uv_barrier_wait -uv_buf_init -uv_cancel -uv_chdir -uv_check_init -uv_check_start -uv_check_stop -uv_close -uv_cond_broadcast -uv_cond_destroy -uv_cond_init -uv_cond_signal -uv_cond_timedwait -uv_cond_wait -uv_cpu_info -uv_cwd -uv_default_loop -uv_disable_stdio_inheritance -uv_dlclose -uv_dlerror -uv_dlopen -uv_dlsym -uv_err_name -uv_err_name_r -uv_exepath -uv_fileno -uv_free_cpu_info -uv_free_interface_addresses -uv_freeaddrinfo -uv_fs_access -uv_fs_chmod -uv_fs_chown -uv_fs_close -uv_fs_closedir -uv_fs_copyfile -uv_fs_event_getpath -uv_fs_event_init -uv_fs_event_start -uv_fs_event_stop -uv_fs_fchmod -uv_fs_fchown -uv_fs_fdatasync -uv_fs_fstat -uv_fs_fsync -uv_fs_ftruncate -uv_fs_futime -uv_fs_get_path -uv_fs_get_ptr -uv_fs_get_result -uv_fs_get_statbuf -uv_fs_get_system_error -uv_fs_get_type -uv_fs_lchown -uv_fs_link -uv_fs_lstat -uv_fs_lutime -uv_fs_mkdir -uv_fs_mkdtemp -uv_fs_mkstemp -uv_fs_open -uv_fs_opendir -uv_fs_poll_getpath -uv_fs_poll_init -uv_fs_poll_start -uv_fs_poll_stop -uv_fs_read -uv_fs_readdir -uv_fs_readlink -uv_fs_realpath -uv_fs_rename -uv_fs_req_cleanup -uv_fs_rmdir -uv_fs_scandir -uv_fs_scandir_next -uv_fs_sendfile -uv_fs_stat -uv_fs_statfs -uv_fs_symlink -uv_fs_unlink -uv_fs_utime -uv_fs_write -uv_get_constrained_memory -uv_get_free_memory -uv_get_osfhandle -uv_get_process_title -uv_get_total_memory -uv_getaddrinfo -uv_getnameinfo -uv_getrusage -uv_gettimeofday -uv_guess_handle -uv_handle_get_data -uv_handle_get_loop -uv_handle_get_type -uv_handle_set_data -uv_handle_size -uv_handle_type_name -uv_has_ref -uv_hrtime -uv_idle_init -uv_idle_start -uv_idle_stop -uv_if_indextoiid -uv_if_indextoname -uv_inet_ntop -uv_inet_pton -uv_interface_addresses -uv_ip4_addr -uv_ip4_name -uv_ip6_addr -uv_ip6_name -uv_ip_name -uv_is_active -uv_is_closing -uv_is_readable -uv_is_writable -uv_key_create -uv_key_delete -uv_key_get -uv_key_set -uv_kill -uv_library_shutdown -uv_listen -uv_loadavg -uv_loop_alive -uv_loop_close -uv_loop_configure -uv_loop_delete -uv_loop_fork -uv_loop_get_data -uv_loop_init -uv_loop_new -uv_loop_set_data -uv_loop_size -uv_metrics_idle_time -uv_mutex_destroy -uv_mutex_init -uv_mutex_init_recursive -uv_mutex_lock -uv_mutex_trylock -uv_mutex_unlock -uv_now -uv_once -uv_open_osfhandle -uv_os_environ -uv_os_free_environ -uv_os_free_passwd -uv_os_get_passwd -uv_os_getenv -uv_os_gethostname -uv_os_getpid -uv_os_getppid -uv_os_getpriority -uv_os_homedir -uv_os_setenv -uv_os_setpriority -uv_os_tmpdir -uv_os_uname -uv_os_unsetenv -uv_pipe -uv_pipe_bind -uv_pipe_chmod -uv_pipe_connect -uv_pipe_getpeername -uv_pipe_getsockname -uv_pipe_init -uv_pipe_open -uv_pipe_pending_count -uv_pipe_pending_instances -uv_pipe_pending_type -uv_poll_init -uv_poll_init_socket -uv_poll_start -uv_poll_stop -uv_prepare_init -uv_prepare_start -uv_prepare_stop -uv_print_active_handles -uv_print_all_handles -uv_process_get_pid -uv_process_kill -uv_queue_work -uv_random -uv_read_start -uv_read_stop -uv_recv_buffer_size -uv_ref -uv_replace_allocator -uv_req_get_data -uv_req_get_type -uv_req_set_data -uv_req_size -uv_req_type_name -uv_resident_set_memory -uv_run -uv_rwlock_destroy -uv_rwlock_init -uv_rwlock_rdlock -uv_rwlock_rdunlock -uv_rwlock_tryrdlock -uv_rwlock_trywrlock -uv_rwlock_wrlock -uv_rwlock_wrunlock -uv_sem_destroy -uv_sem_init -uv_sem_post -uv_sem_trywait -uv_sem_wait -uv_send_buffer_size -uv_set_process_title -uv_setup_args -uv_shutdown -uv_signal_init -uv_signal_start -uv_signal_start_oneshot -uv_signal_stop -uv_sleep -uv_socketpair -uv_spawn -uv_stop -uv_stream_get_write_queue_size -uv_stream_set_blocking -uv_strerror -uv_strerror_r -uv_tcp_bind -uv_tcp_close_reset -uv_tcp_connect -uv_tcp_getpeername -uv_tcp_getsockname -uv_tcp_init -uv_tcp_init_ex -uv_tcp_keepalive -uv_tcp_nodelay -uv_tcp_open -uv_tcp_simultaneous_accepts -uv_thread_create -uv_thread_create_ex -uv_thread_equal -uv_thread_join -uv_thread_self -uv_timer_again -uv_timer_get_due_in -uv_timer_get_repeat -uv_timer_init -uv_timer_set_repeat -uv_timer_start -uv_timer_stop -uv_translate_sys_error -uv_try_write -uv_try_write2 -uv_tty_get_vterm_state -uv_tty_get_winsize -uv_tty_init -uv_tty_reset_mode -uv_tty_set_mode -uv_tty_set_vterm_state -uv_udp_bind -uv_udp_connect -uv_udp_get_send_queue_count -uv_udp_get_send_queue_size -uv_udp_getpeername -uv_udp_getsockname -uv_udp_init -uv_udp_init_ex -uv_udp_open -uv_udp_recv_start -uv_udp_recv_stop -uv_udp_send -uv_udp_set_broadcast -uv_udp_set_membership -uv_udp_set_multicast_interface -uv_udp_set_multicast_loop -uv_udp_set_multicast_ttl -uv_udp_set_source_membership -uv_udp_set_ttl -uv_udp_try_send -uv_udp_using_recvmmsg -uv_unref -uv_update_time -uv_uptime -uv_version -uv_version_string -uv_walk -uv_write -uv_write2 - diff --git a/tools/linux/build.sh b/tools/linux/build.sh index 3867ce2..0dda0bd 100755 --- a/tools/linux/build.sh +++ b/tools/linux/build.sh @@ -19,6 +19,7 @@ export NVM_DIR="$HOME/.nvm" [ "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" node --version pnpm --version +cmake --version cd $root_dir pnpm install --force diff --git a/tools/windows/ci.ps1 b/tools/windows/ci.ps1 index 8af5b84..b63bae0 100644 --- a/tools/windows/ci.ps1 +++ b/tools/windows/ci.ps1 @@ -1,13 +1,19 @@ param($arch, $tag) + +# Fail fast: convert non-terminating errors to terminating and stop on any error +$ErrorActionPreference = 'Stop' + $root_dir = Resolve-Path (Join-Path $PSScriptRoot "../../") cd $root_dir try { cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE -S"$root_dir" -B"$root_dir/build" -G Ninja - cmake --build "$root_dir/build" --config Debug --target nt_native -- + cmake --build "$root_dir/build" --config Release --target nt_native -- + cmake --build "$root_dir/build" --config Release --target QQNT -- mkdir "$root_dir/tmp/build" - mv "$root_dir/build/nt_native.node" "$root_dir/tmp/build/telecord-native-win32-$arch-$tag.node" + mv "$root_dir/build/nt_native.node" "$root_dir/tmp/build/yui-native-win32-$arch-$tag.node" + mv "$root_dir/build/QQNT.dll" "$root_dir/tmp/build/node-win32-$arch-$tag.dll" }catch{ exit 1 } \ No newline at end of file diff --git a/tools/windows/download_lib.js b/tools/windows/download_lib.js new file mode 100644 index 0000000..69c1d8c --- /dev/null +++ b/tools/windows/download_lib.js @@ -0,0 +1,40 @@ + +const http = require('https'); +const fs = require('fs'); +const path = require('path'); + +// https://nodejs.org/dist/v22.13.1/win-x64/node.lib +function downloadFileAsync(uri, dest){ + console.log(`Downloading ${uri} to ${dest}`); + return new Promise((resolve, reject)=>{ + // 确保dest路径存在 + const file = fs.createWriteStream(dest); + + http.get(uri, (res)=>{ + if(res.statusCode !== 200){ + reject(response.statusCode); + return; + } + + res.on('end', ()=>{ + console.log('download end'); + }); + + // 进度、超时等 + + file.on('finish', ()=>{ + console.log('finish write file') + file.close(resolve); + }).on('error', (err)=>{ + fs.unlink(dest); + reject(err.message); + }) + + res.pipe(file); + }); + }); +} + +;(async () => { + await downloadFileAsync(`https://nodejs.org/dist/v${process.versions.node}/win-x64/node.lib`, path.resolve(__dirname, '../../build/node.lib')) +})() \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json index 47656c9..b7d8c92 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -2,6 +2,9 @@ "dependencies": [ "protobuf", "spdlog", - "libgnutls" + { + "name": "libgnutls", + "platform": "linux" + } ] }