微信小程序改包调试patch方案

微信小程序的格式

WxApkg格式

格式很简单,header + file信息区域 + file内容区域
从这里可以找到010 editor的bt模板:https://www.52pojie.cn/thread-718025-1-1.html

// Define structures to parse program of weixin

local int warnings = 0;
local string temp_warning;

// A hack to get warning messages to both "Warn" (show in status) and output to the "output" window
void PrintWarning(string message) {
    Warning(temp_warning);

    // Ensure new-line, "Warning" statuses should not have them
    SPrintf(temp_warning, "%s\n", message);
    Printf(temp_warning);

    // Hack to trigger a more generic "look at warnings in output"
    warnings++;
}

//struct of dataIndex
typedef struct{
	int fileNameLen <comment="length of filename">;
	char fileName[fileNameLen] <comment="file name">;
	int fileOffset <comment="file offset">;
	int fileLen <comment="file size">;
} dataIndex_table <read=DataIndexName, optimize=false>;

string DataIndexName(dataIndex_table &dataIndex){
	return dataIndex.fileName;
}


struct {
    BigEndian();
	struct {
		byte magic1 <comment="magic number 1, should be -66">;
		int  unknow <comment="unknow">;
		int  offsetLen <comment="offsetLen">;
		int  bodyDataLen <comment="bodyDataLen">;
		byte magic2 <comment="magic number 2, should be -19">;
		int  fileCount <comment="file count">;

		if(magic1 != -66 || magic2 != -19){
			PrintWarning("Invalid wxapkg file");
        return -1;
		}
	} header;

	local quad dataIndex_offset = 1 + 4 + 4 + 4 + 1 + 4;

	if(file.header.fileCount > 0){
		FSeek(dataIndex_offset);
        struct{
		    dataIndex_table dataIndex_table_element[file.header.fileCount];
        }data_header_table;
	}

}file;


// It's not really useful to see just the last warning, so inform us how many warnings we should see in output
if(warnings > 1) {
    Warning("%d warnings have occured and logged to the output box!", warnings);
}

// This will make the template show "Template executed successfully."
if(warnings != 0) {
    SPrintf(temp_warning, "%d warnings found, template may not have run successfully!", warnings);
    return temp_warning;
}

PC微信上的WxApkg

PC微信上WxApkg位于WeChat Files\Applet\[wxid]\…,被加密,开头是V1MMWX,随后使用PBKDF2生成密钥并加密,涉及到saltiest等字符串:
可以用这个作为特征快速定位PC WxApkg逻辑

		stdstr::init1((int **)&buffer, "V1MMWX");
		v15 = HIBYTE(v36);
		if ( v36 < 0 )
		{
		  v15 = v35;
		  encPart1Content = encPart1;
		}
		stdstr::append((unsigned __int8 *)&buffer, encPart1Content, v15);

PC微信的小程序patch

为何不能直接替换wxapkg

问题1:需不需要重新加密回去(不是问题)

根据IDA的结果,不需要。PC微信会自动检测header是不是V1MMWX,不是则无需解密

  if ( fileutil_ReadFile(a2, v4, 7u) )
    isEncrypt = isEncryptedWxapkg(v4, 7);
  else
    isEncrypt = 0;
bool __cdecl isEncryptedWxapkg(int a1, int a2)
{
  return a2 >= 7 && (*(_DWORD *)a1 ^ 'MM1V' | *(unsigned __int16 *)(a1 + 4) ^ 'XW') == 0;
}

问题2:替换回去之后会怎么样

微信报错小程序资源损坏,需要重新下载

⇒ 推测,微信内部肯定会检测wxapkg的checksum
搜索wxapkg字符串时,会时不时出现wxapkg_md5,故大概率是通过MD5进行校验。

逆向分析小程序 – 静态 (版本6500)

  • 信息
  • 根据上面说到的字符串V1MMWX和saltiest可以轻松定位到加密逻辑
  • 根据日志可以轻松判断出当前函数名称(尤其是file_util_win下的各个文件)
  • 定位加密函数
  • 搜索V1MMWX可以到达加密函数,仔细理解流程可以发现是将V1MMWX和一个1024字节的str拼接,随后写入到文件中
  • 需要认识到的是,这是正向加密函数,但我们显然需要找逆向解密函数
  • 通过saltiest字符串寻找:仅2个xref,一个为加密函数,另一个函数则仅被一个函数调用,肯定为解密流程的一部分
  • 仔细阅读新发现的上层函数,可显然看出这个函数为解密函数
__int64 *__cdecl DecryptFileToBuf(__int64 a1, int a2, wchar_t *a3, char *a4)
{
  // [COLLAPSED LOCAL DECLARATIONS. PRESS KEYPAD CTRL-"+" TO EXPAND]

  v4 = HIBYTE(a2);
  if ( a2 < 0 )
    v4 = HIDWORD(a1);
  v5 = 0;
  if ( v4 && (unsigned __int8)fileutil_PathExists((char *)a3) )
  {
    v32 = 0i64;
    v33 = 0;
    if ( !(unsigned __int8)fileutil_ReadFileToString(a3, (int)&v32) )
      goto LABEL_57;
  • 该函数被AppletPluginManager::loadPlugin、AppletPackage::loadModule、AppletPackage::loadPublicLibWxPkg等函数调用
  • 未能找到相应的MD5校验逻辑(其实就在下面的parsePkgFileContent函数中)
  •     if ( (unsigned __int8)DecryptFileToBuf(v27, v28, (wchar_t *)v36, (unsigned __int8 *)v34) )
              {
                stdstr::init1(v37, (char *)&PrefixString);
                parsePkgFileContent(v34, &a3, v36, v37);

    逆向分析小程序 – 动态调试环境

    背景:小程序的运行环境

    小程序基于WeChatAppEx.exe运作,可以很明显的看出来这是个Chromium浏览器内核,那自然没有–type的进程就是主进程
    notion image
    类似于Chrome的标签页:

    • 似乎每个小程序仅仅是浏览器中的一个tab,所以打开/关闭小程序的时候,只有renderer进程会启动和退出
    • 小程序的JSAPI逻辑(wx.XXXX)、加载逻辑自然是实现在主进程里面

    弯路:尝试映像劫持调试

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\WeChatAppEx.exe下新建Debugger键值

    • 尝试1:直接填写x32dbg
    • 失败:x32dbg直接加载都加载不起来,原因不明
    • 尝试2:通过Python3包一层来进行调用
    • 失败:x32dbg有特殊的命令行参数
    • x32dbg [exe path] [cmdline]
    • cmd /c "whoami && whoami"x32dbg C:\Windows\System32\cmd.exe "cmd.exe /c \"whoami && whoami\""
    • 尝试3:通过Python3重构命令行
    • 最开始尝试通过shlex.join,然而发现让只会输出单引号wrap的参数,而windows不支持单引号
    • 经过查询找到了 subprocess.list2cmdline,工作良好
    python3 -c "import sys; import subprocess; args = [r'E:\ScoopSpace\apps\x64dbg\current\release\x32\x32dbg.exe' , sys.argv[1], subprocess.list2cmdline(sys.argv[2:])]; subprocess.call(args)"
    • 结果:x32dbg能够正常使用命令行启动WeChatAppEx,但WeChatAppEx无法正常工作,持续闪退
    • 可能由于WeChatAppEx内部通过pid、handle进行通信,而x32dbg启动后PID并不是源程序而是调试器,导致inter process通讯失败。

    解决:思考小程序的工作流

    仔细回想小程序的运行环境,发现其实并不需要从WeChatAppEx一开始就开始debug,而是可以在小程序加载之前attach到主进程上进行调试。

    逆向分析小程序 – 动态分析 获取日志

    解锁日志输出

    在上面静态分析的函数中有很多日志字符串,用类似cout的方式流式拼起来,然后传到了一个日志函数里

    if ( CheckLogLevel(2) )
      {
        sub_2531D20((char *)v13, "../../applet/applet/browser/mini_game_runtime_host.cc", 23, 2);
        AddLogString((int)v14, (int)"MiniGameRuntimeHost::MiniGameRuntimeHost this = ", 48);
        sub_57C580(this);
        DoLog(v13);
      }

    我们x32dbg修改下CheckLogLevel的汇编让他一直返回true即可

    输出日志

    DoLog函数的具体实现如下:

    int __thiscall DoLog(_DWORD *logstr)
    {
      // [COLLAPSED LOCAL DECLARATIONS. PRESS KEYPAD CTRL-"+" TO EXPAND]
    
      *logstr = off_5E2303C;
      v1 = logstr + 2;
      v2 = *(_DWORD *)(logstr[2] + 4);
      v3 = -1;
      v30 = logstr + 2;
      if...
      v27 = v3;
      sub_24F8182(NumberOfBytesWritten);
      v4 = std::locale::use_facet((std::locale *)NumberOfBytesWritten, (struct std::locale::id *)&unk_6F1CAC8);
      v5 = (*(int (__thiscall **)(const struct std::locale::facet *, int))(*(_DWORD *)v4 + 28))(v4, 10);
      sub_24FA570(NumberOfBytesWritten);
      sub_57C9C0(v5);
      sub_57A6D0(v1);
      lpBuffer = (LPCVOID)-1;
      nNumberOfBytesToWrite = -1;
      v34 = -1;
      v6 = logstr + 3;
      lpOutputString = (const CHAR *)&lpBuffer;
    =>sub_57D17A(&lpBuffer);
      if ( (byte_6EAED88 & 0x19) != 0 )
      {
        NumberOfBytesWritten[0] = (DWORD)logstr;
        NumberOfBytesWritten[1] = (DWORD)&lpBuffer;
        sub_25329E0(0, NumberOfBytesWritten);
      }
      if ( !dword_6F1D270 || !(unsigned __int8)dword_6F1D270(logstr[1], logstr[37], logstr[38], logstr[36], &lpBuffer) )
      {
        v7 = dword_6F1D268;
        if ( (dword_6F1D268 & 2) != 0 )
        {
          if ( v34 < 0 )
            lpOutputString = (const CHAR *)lpBuffer;
          OutputDebugStringA(lpOutputString);
          v7 = dword_6F1D268;
        }

    观察下面的OutputDebugStringA自然知道lpBuffer就是我们的格式化好的日志字符串
    我们在sub_57D17A的返回处下断点,让x64dbg输出{s:[eax]}即可
    这种log point最好不要用软件断点,因为x64dbg需要每次断下后修改EIP和指令字节来恢复执行,并发数高的时候容易出现race condition导致EIP差1,程序直接就飞了
    可以使用硬件断点来避免这个问题

    逆向分析小程序 – 动态分析 找到精确wxapkg加载逻辑

    通过call stack找

    • 前面的分析中Decrypt函数被4个地方调用,我们需要具体精确一下是哪个调用的。
    • wxapkg是从file_util系列函数处加载的,而file_util的读取文件走的是_wfsopen。通过比对wfsopen的参数就能知道加载的啥
    • 当参数为wxapkg时查看Call Stack即可
    • 找到具体的加载函数为AppletPackage::loadModule

    通过日志分析找

    WeChatAppEx原始日志

    正在初始化等待对象……
    正在初始化调试器……
    正在初始化调试器函数……
    正在设置JSON内存管理函数……
    正在初始化 Zydis...
    正在获取目录信息……
    读取文件线程开始……
    正在获取系统调用编号...
    符号路径: E:\ScoopSpace\apps\x64dbg\current\release\x32\symbols
    正在分配消息堆栈……
    正在初始化全局脚本变量……
    正在注册调试器命令……
    正在注册GUI命令接收器……
    正在注册表达式函数……
    正在注册格式函数……
    正在注册脚本DLL命令接收者……
    正在初始化命令执行循环……
    初始化成功!
    正在载入插件……
    [插件,SyncPlugin] 命令 "!sync" 已经注册!
    [插件,SyncPlugin] 命令 "!syncoff" 已经注册!
    [插件,SyncPlugin] 命令 "!syncmodauto" 已经注册!
    [插件,SyncPlugin] 命令 "!synchelp" 已经注册!
    [插件,SyncPlugin] 命令 "!idblist" 已经注册!
    [插件,SyncPlugin] 命令 "!idbn" 已经注册!
    [插件,SyncPlugin] 命令 "!idb" 已经注册!
    [插件,SyncPlugin] 命令 "!cmt" 已经注册!
    [插件,SyncPlugin] 命令 "!rcmt" 已经注册!
    [插件,SyncPlugin] 命令 "!translate" 已经注册!
    [sync] Configuration file not present, using default values
    [插件] SyncPlugin v1 已经载入!
    已加载系统调用编号!
    正在处理命令行……
      E:\ScoopSpace\apps\x64dbg\current\release\x32\x32dbg.exe C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\WeChatAppEx.exe "--log-level=2 \"--wechat-files-path=E:\WXFileRecv\WeChat Files\\\\\" --enable-gpu-process --product-id=1000 --mojo-named-platform-channel-pipe=C:\Users\Misty\AppData\Local\Temp\5681e2d8-a887-473a-91fc-25932fab1e3f.tmp"
    成功载入错误码数据库!
    成功载入异常码数据库!
    正在调试:C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\WeChatAppEx.exe
    数据库文件: E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32
    正在读取命令行……
    成功载入NTSTATUS码数据库!
    窗口常数数据库已载入!
    正在读取笔记文件……
    文件读取线程完成!
    [sync] debugging of file C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\WeChatAppEx.exe started!
    正在从 E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32 载入数据库 15毫秒
    进程已启动: 00620000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\WeChatAppEx.exe
      "C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\WeChatAppEx.exe" --log-level=2 "--wechat-files-path=E:\\WXFileRecv\\WeChat Files\\\\" --enable-gpu-process --product-id=1000 --mojo-named-platform-channel-pipe=C:\\Users\\Misty\\AppData\\Local\\Temp\\5681e2d8-a887-473a-91fc-25932fab1e3f.tmp
      argv[0]: C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\WeChatAppEx.exe
      argv[1]: --log-level=2
      argv[2]: --wechat-files-path=E:\\WXFileRecv\\WeChat Files\\
      argv[3]: --enable-gpu-process
      argv[4]: --product-id=1000
      argv[5]: --mojo-named-platform-channel-pipe=C:\\Users\\Misty\\AppData\\Local\\Temp\\5681e2d8-a887-473a-91fc-25932fab1e3f.tmp
    已设置硬件断点于 4B588D60!
    已设置硬件断点于 5979553C!
    DLL已载入: 77A00000 C:\Windows\SysWOW64\ntdll.dll
    DLL已载入: 765C0000 C:\Windows\SysWOW64\kernel32.dll
    DLL已载入: 75B50000 C:\Windows\SysWOW64\KernelBase.dll
    线程 66A4 已启动,入口: ntdll.77A3F0D0
    DLL已载入: 77940000 C:\Windows\SysWOW64\comdlg32.dll
    DLL已载入: 775A0000 C:\Windows\SysWOW64\msvcp_win.dll
    DLL已载入: 64E20000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\ffmpeg.dll
    线程 3128 已启动,入口: ntdll.77A3F0D0
    DLL已载入: 75790000 C:\Windows\SysWOW64\ucrtbase.dll
    DLL已载入: 76930000 C:\Windows\SysWOW64\combase.dll
    DLL已载入: 766C0000 C:\Windows\SysWOW64\rpcrt4.dll
    DLL已载入: 76BB0000 C:\Windows\SysWOW64\SHCore.dll
    DLL已载入: 76780000 C:\Windows\SysWOW64\user32.dll
    DLL已载入: 76EB0000 C:\Windows\SysWOW64\win32u.dll
    DLL已载入: 76FD0000 C:\Windows\SysWOW64\gdi32.dll
    DLL已载入: 77640000 C:\Windows\SysWOW64\gdi32full.dll
    线程 45A8 已启动,入口: ntdll.77A3F0D0
    DLL已载入: 75940000 C:\Windows\SysWOW64\shlwapi.dll
    DLL已载入: 76F00000 C:\Windows\SysWOW64\msvcrt.dll
    DLL已载入: 75F60000 C:\Windows\SysWOW64\shell32.dll
    DLL已载入: 75430000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.25295.1000_none_c0d4ad74d67dc7b0\comctl32.dll
    DLL已载入: 75DD0000 C:\Windows\SysWOW64\oleaut32.dll
    DLL已载入: 75990000 C:\Windows\SysWOW64\ws2_32.dll
    DLL已载入: 75660000 C:\Windows\SysWOW64\winmm.dll
    DLL已载入: 77830000 C:\Windows\SysWOW64\crypt32.dll
    DLL已载入: 75290000 C:\Windows\SysWOW64\IPHLPAPI.DLL
    DLL已载入: 71860000 C:\Windows\SysWOW64\dxgi.dll
    DLL已载入: 76ED0000 C:\Windows\SysWOW64\imm32.dll
    DLL已载入: 73E40000 C:\Windows\SysWOW64\oleacc.dll
    DLL已载入: 75710000 C:\Windows\SysWOW64\normaliz.dll
    DLL已载入: 747A0000 C:\Windows\SysWOW64\wtsapi32.dll
    DLL已载入: 6EA40000 C:\Windows\SysWOW64\UIAutomationCore.dll
    DLL已载入: 70D00000 C:\Windows\SysWOW64\hid.dll
    DLL已载入: 74790000 C:\Windows\SysWOW64\version.dll
    DLL已载入: 74090000 C:\Windows\SysWOW64\userenv.dll
    DLL已载入: 6FBD0000 C:\Windows\SysWOW64\DWrite.dll
    DLL已载入: 71830000 C:\Windows\SysWOW64\dwmapi.dll
    DLL已载入: 74A20000 C:\Windows\SysWOW64\winspool.drv
    DLL已载入: 659B0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\dbghelp.dll
    DLL已载入: 71750000 C:\Windows\SysWOW64\usp10.dll
    DLL已载入: 70930000 C:\Windows\SysWOW64\d3d9.dll
    DLL已载入: 71A60000 C:\Windows\SysWOW64\uxtheme.dll
    DLL已载入: 66BF0000 C:\Windows\SysWOW64\dxva2.dll
    DLL已载入: 77510000 C:\Windows\SysWOW64\sechost.dll
    DLL已载入: 70AB0000 C:\Windows\SysWOW64\d3d11.dll
    DLL已载入: 74AA0000 C:\Windows\SysWOW64\msimg32.dll
    DLL已载入: 751A0000 C:\Windows\SysWOW64\secur32.dll
    DLL已载入: 713D0000 C:\Windows\SysWOW64\urlmon.dll
    DLL已载入: 751B0000 C:\Windows\SysWOW64\winhttp.dll
    DLL已载入: 74360000 C:\Windows\SysWOW64\dhcpcsvc.dll
    DLL已载入: 717F0000 C:\Windows\SysWOW64\DXCore.dll
    DLL已载入: 71190000 C:\Windows\SysWOW64\iertutil.dll
    DLL已载入: 74AB0000 C:\Windows\SysWOW64\sspicli.dll
    DLL已载入: 758C0000 C:\Windows\SysWOW64\advapi32.dll
    已到达系统断点!
    DLL已载入: 76C70000 C:\Windows\SysWOW64\bcryptprimitives.dll
    DLL已载入: 71980000 C:\Windows\SysWOW64\powrprof.dll
    DLL已载入: 71970000 C:\Windows\SysWOW64\umpdc.dll
    DLL已载入: 74630000 C:\Windows\SysWOW64\mswsock.dll
    DLL已载入: 66CD0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\WMPFRuntime\4676\extracted\runtime\ComponentVerification.dll
    DLL已载入: 75730000 C:\Windows\SysWOW64\wintrust.dll
    DLL已载入: 74580000 C:\Windows\SysWOW64\msasn1.dll
    线程 5878 已启动,入口: componentverification.66CDA1D0
    DLL已载入: 74A00000 C:\Windows\SysWOW64\kernel.appcore.dll
    DLL已载入: 774F0000 C:\Windows\SysWOW64\imagehlp.dll
    DLL已载入: 71BB0000 C:\Windows\SysWOW64\cryptsp.dll
    DLL已载入: 71B70000 C:\Windows\SysWOW64\rsaenh.dll
    DLL已载入: 737F0000 C:\Windows\SysWOW64\cryptbase.dll
    DLL已载入: 74AE0000 C:\Windows\SysWOW64\windows.storage.dll
    线程 1B54 已启动,入口: ntdll.77A3F0D0
    线程 8D54 已启动,入口: crypt32.7787F060
    DLL已载入: 74740000 C:\Windows\SysWOW64\ntmarta.dll
    DLL已载入: 71F40000 C:\Windows\SysWOW64\bcrypt.dll
    线程 2658 已启动,入口: wechatappex.0272B690
    SetThreadName(2658, "BrokerEvent")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0BFE1750
    ExceptionInformation[02]: 00002658
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 780C 已启动,入口: wechatappex.01E8EE10
    SetThreadName(780C, "xlog_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0BFE1738
    ExceptionInformation[02]: 0000780C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 6494 已启动,入口: wechatappex.01E8EE10
    线程 905C 已启动,入口: wechatappex.01E8EE10
    线程 9230 已启动,入口: wechatappex.01E8EE10
    SetThreadName(6494, "ThreadPoolServiceThread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0BFE9710
    ExceptionInformation[02]: 00006494
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(9230, "ThreadPoolBackgroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0BFE9B98
    ExceptionInformation[02]: 00009230
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(905C, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0BFE9A08
    ExceptionInformation[02]: 0000905C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 75E70000 C:\Windows\SysWOW64\msctf.dll
    DLL已载入: 71A10000 C:\Windows\SysWOW64\gpapi.dll
    线程 918C 已启动,入口: wechatappex.01E8EE10
    SetThreadName(918C, "Chrome_IOThread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C069970
    ExceptionInformation[02]: 0000918C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 75A00000 C:\Windows\SysWOW64\ole32.dll
    DLL已载入: 719E0000 C:\Windows\SysWOW64\cryptnet.dll
    DLL已载入: 747C0000 C:\Windows\SysWOW64\profapi.dll
    DLL已载入: 777A0000 C:\Windows\SysWOW64\clbcatq.dll
    DLL已载入: 6ED90000 C:\Windows\SysWOW64\twinapi.appcore.dll
    DLL已载入: 65910000 C:\Windows\SysWOW64\twinapi.dll
    线程 85A8 已启动,入口: combase.769A61D0
    线程 2C7C 已启动,入口: ntdll.77A3F0D0
    线程 CB4 已启动,入口: ntdll.77A3F0D0
    DLL已载入: 719D0000 C:\Windows\SysWOW64\winnsi.dll
    DLL已载入: 75720000 C:\Windows\SysWOW64\nsi.dll
    SetThreadName(8480, "CrBrowserMain")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C072178
    ExceptionInformation[02]: 00008480
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 74380000 C:\Windows\SysWOW64\nlansp_c.dll
    DLL已载入: 743A0000 C:\Windows\SysWOW64\dhcpcsvc6.dll
    DLL已载入: 74290000 C:\Windows\SysWOW64\dnsapi.dll
    线程 2064 已启动,入口: wechatappex.01E8EE10
    SetThreadName(2064, "ThreadPoolSingleThreadCOMSTASharedForeground0")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C0824F8
    ExceptionInformation[02]: 00002064
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 6E950000 C:\Windows\SysWOW64\TextInputFramework.dll
    线程 5878 已退出
    DLL已载入: 634D0000 C:\Windows\SysWOW64\Windows.UI.dll
    线程 61B0 已启动,入口: wechatappex.01E8EE10
    DLL已载入: 74490000 C:\Windows\SysWOW64\winsta.dll
    线程 8DD8 已启动,入口: wechatappex.01E8EE10
    线程 9304 已启动,入口: wechatappex.01E8EE10
    线程 780 已启动,入口: wechatappex.01E8EE10
    SetThreadName(8DD8, "CompositorTileWorker1")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C0717C8
    ExceptionInformation[02]: 00008DD8
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 9028 已启动,入口: wechatappex.01E8EE10
    SetThreadName(61B0, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C085220
    ExceptionInformation[02]: 000061B0
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(9304, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C0AD9A0
    ExceptionInformation[02]: 00009304
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 7CF0 已启动,入口: wechatappex.01E8EE10
    SetThreadName(780, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C0B23C8
    ExceptionInformation[02]: 00000780
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(9028, "AudioThread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C0B2E90
    ExceptionInformation[02]: 00009028
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(7CF0, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C09C950
    ExceptionInformation[02]: 00007CF0
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 459C 已启动,入口: wechatappex.01E8EE10
    SetThreadName(459C, "ThreadPoolSingleThreadForegroundBlocking1")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C0C3210
    ExceptionInformation[02]: 0000459C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 66870000 C:\Windows\SysWOW64\MMDevAPI.dll
    DLL已载入: 71930000 C:\Windows\SysWOW64\devobj.dll
    DLL已载入: 72CE0000 C:\Windows\SysWOW64\cfgmgr32.dll
    DLL已载入: 11980000 C:\Windows\SysWOW64\cfgmgr32.dll
    DLL已载入: 119C0000 C:\Windows\SysWOW64\cfgmgr32.dll
    DLL已卸载: 11980000 cfgmgr32.dll
    DLL已卸载: 119C0000 cfgmgr32.dll
    线程 77D0 已启动,入口: wechatappex.01E8EE10
    SetThreadName(77D0, "VideoCaptureThread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C085680
    ExceptionInformation[02]: 000077D0
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 81FC 已启动,入口: wechatappex.01E8EE10
    SetThreadName(81FC, "ipc_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 11BFFEC0
    ExceptionInformation[02]: 000081FC
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 9024 已启动,入口: wechatappex.01E8EE10
    SetThreadName(9024, "ThreadPoolBackgroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 0C085BF8
    ExceptionInformation[02]: 00009024
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 668F0000 C:\Windows\SysWOW64\mscms.dll
    DLL已载入: 69B10000 C:\Windows\SysWOW64\icm32.dll
    线程 780C 已退出
    线程 8DD8 已退出
    线程 6B68 已启动,入口: wechatappex.01E8EE10
    SetThreadName(6B68, "ThreadPoolSingleThreadCOMSTASharedForegroundBlocking2")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 117CC080
    ExceptionInformation[02]: 00006B68
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 918C 已退出
    线程 6494 已退出
    线程 9028 已退出
    DLL已载入: 73AD0000 C:\Windows\SysWOW64\CoreMessaging.dll
    线程 77D0 已退出
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 0000071A (RPC_S_CALL_CANCELLED)
              ExceptionFlags: 00000001
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 0
    第一次异常于 75C9CEF4 (0000071A, RPC_S_CALL_CANCELLED)!
    线程 2658 已退出
    线程 3128 已退出
    线程 8D54 已退出
    线程 85A8 已退出
    线程 9230 已退出
    线程 45A8 已退出
    线程 905C 已退出
    线程 1B54 已退出
    线程 66A4 已退出
    线程 2C7C 已退出
    线程 61B0 已退出
    线程 CB4 已退出
    线程 2064 已退出
    线程 9304 已退出
    线程 7CF0 已退出
    线程 459C 已退出
    线程 780 已退出
    线程 81FC 已退出
    线程 9024 已退出
    线程 6B68 已退出
    进程已停止,退出码为 0x0 (0)正在将数据库保存于 E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32 15毫秒
    [sync] not synced
    调试结束!
    数据库文件: E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32
    [sync] debugging of file C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe started!
    正在从 E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32 载入数据库 15毫秒
    进程已启动: 003C0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe
      "C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe" --log-level=2 --wechat-files-path="E:\WXFileRecv\WeChat Files\\" --product-id=1000 --wechat-sub-user-agent="MicroMessenger/7.0.20.1781(0x6700143B) WindowsWechat(0x6309001c)" --wmpf_extra_config="{ \"reportId\":-1, \"version\":6500 }" --web-translate --wmpf-mojo-handle=2780
      argv[0]: C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe
      argv[1]: --log-level=2
      argv[2]: --wechat-files-path=E:\WXFileRecv\WeChat Files\
      argv[3]: --product-id=1000
      argv[4]: --wechat-sub-user-agent=MicroMessenger/7.0.20.1781(0x6700143B) WindowsWechat(0x6309001c)
      argv[5]: --wmpf_extra_config={ "reportId":-1, "version":6500 }
      argv[6]: --web-translate
      argv[7]: --wmpf-mojo-handle=2780
    已设置硬件断点于 4B588D60!
    已设置硬件断点于 5979553C!
    警告:数据库的校验码与你现在正在调试的校验码不同,可能是因为你的调试对象已经修改,因此当前数据库中的内容未必准确。
    已附加到进程!
    DLL已载入: 77A00000 C:\Windows\SysWOW64\ntdll.dll
    线程 91E4 已启动,入口: ntdll.77A3F0D0
    线程 9174 已启动,入口: ntdll.77A3F0D0
    线程 90E4 已启动,入口: ntdll.77A3F0D0
    线程 7604 已启动,入口: ntdll.77A3F0D0
    线程 918C 已启动,入口: 7787F060
    线程 4608 已启动,入口: wechatappex.030B1460
    线程 8D60 已启动,入口: wechatappex.02554B90
    线程 901C 已启动,入口: wechatappex.02554B90
    线程 83BC 已启动,入口: wechatappex.02554B90
    线程 7350 已启动,入口: wechatappex.02554B90
    线程 7CF0 已启动,入口: wechatappex.02554B90
    线程 9304 已启动,入口: ntdll.77A3F0D0
    线程 7FC 已启动,入口: ntdll.77A3F0D0
    线程 7FEC 已启动,入口: wechatappex.02554B90
    线程 50C0 已启动,入口: wechatappex.02554B90
    线程 8FA0 已启动,入口: wechatappex.02554B90
    线程 8F64 已启动,入口: 769A61D0
    线程 86E0 已启动,入口: wechatappex.02554B90
    线程 88C4 已启动,入口: wechatappex.02554B90
    线程 935C 已启动,入口: wechatappex.02554B90
    线程 70CC 已启动,入口: wechatappex.02554B90
    线程 9114 已启动,入口: wechatappex.02554B90
    线程 47A0 已启动,入口: wechatappex.02554B90
    线程 6088 已启动,入口: wechatappex.02554B90
    线程 50FC 已启动,入口: wechatappex.02554B90
    线程 2E3C 已启动,入口: wechatappex.02554B90
    线程 1C50 已启动,入口: wechatappex.02554B90
    线程 2130 已启动,入口: wechatappex.02554B90
    线程 4ADC 已启动,入口: wechatappex.02554B90
    线程 8B44 已启动,入口: wechatappex.02554B90
    线程 8AD8 已启动,入口: wechatappex.02554B90
    线程 AE0 已启动,入口: 55AC59D0
    线程 71F0 已启动,入口: wechatappex.02554B90
    DLL已载入: 765C0000 C:\Windows\SysWOW64\kernel32.dll
    DLL已载入: 75B50000 C:\Windows\SysWOW64\KernelBase.dll
    DLL已载入: 77940000 C:\Windows\SysWOW64\comdlg32.dll
    DLL已载入: 775A0000 C:\Windows\SysWOW64\msvcp_win.dll
    DLL已载入: 64D40000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\ffmpeg.dll
    DLL已载入: 75790000 C:\Windows\SysWOW64\ucrtbase.dll
    DLL已载入: 76930000 C:\Windows\SysWOW64\combase.dll
    DLL已载入: 766C0000 C:\Windows\SysWOW64\rpcrt4.dll
    DLL已载入: 76BB0000 C:\Windows\SysWOW64\SHCore.dll
    DLL已载入: 76780000 C:\Windows\SysWOW64\user32.dll
    DLL已载入: 76EB0000 C:\Windows\SysWOW64\win32u.dll
    DLL已载入: 76FD0000 C:\Windows\SysWOW64\gdi32.dll
    DLL已载入: 77640000 C:\Windows\SysWOW64\gdi32full.dll
    DLL已载入: 75940000 C:\Windows\SysWOW64\shlwapi.dll
    DLL已载入: 76F00000 C:\Windows\SysWOW64\msvcrt.dll
    DLL已载入: 75F60000 C:\Windows\SysWOW64\shell32.dll
    DLL已载入: 75430000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.25295.1000_none_c0d4ad74d67dc7b0\comctl32.dll
    DLL已载入: 75DD0000 C:\Windows\SysWOW64\oleaut32.dll
    DLL已载入: 75990000 C:\Windows\SysWOW64\ws2_32.dll
    DLL已载入: 77830000 C:\Windows\SysWOW64\crypt32.dll
    DLL已载入: 76ED0000 C:\Windows\SysWOW64\imm32.dll
    DLL已载入: 676D0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\dbghelp.dll
    DLL已载入: 75710000 C:\Windows\SysWOW64\normaliz.dll
    DLL已载入: 75660000 C:\Windows\SysWOW64\winmm.dll
    DLL已载入: 72C10000 C:\Windows\SysWOW64\propsys.dll
    DLL已载入: 71860000 C:\Windows\SysWOW64\dxgi.dll
    DLL已载入: 71830000 C:\Windows\SysWOW64\dwmapi.dll
    DLL已载入: 747A0000 C:\Windows\SysWOW64\wtsapi32.dll
    DLL已载入: 73E40000 C:\Windows\SysWOW64\oleacc.dll
    DLL已载入: 6EA40000 C:\Windows\SysWOW64\UIAutomationCore.dll
    DLL已载入: 75290000 C:\Windows\SysWOW64\IPHLPAPI.DLL
    DLL已载入: 70D00000 C:\Windows\SysWOW64\hid.dll
    DLL已载入: 74790000 C:\Windows\SysWOW64\version.dll
    DLL已载入: 74090000 C:\Windows\SysWOW64\userenv.dll
    DLL已载入: 6FBD0000 C:\Windows\SysWOW64\DWrite.dll
    DLL已载入: 71A60000 C:\Windows\SysWOW64\uxtheme.dll
    DLL已载入: 74AA0000 C:\Windows\SysWOW64\msimg32.dll
    DLL已载入: 751B0000 C:\Windows\SysWOW64\winhttp.dll
    DLL已载入: 71750000 C:\Windows\SysWOW64\usp10.dll
    DLL已载入: 77510000 C:\Windows\SysWOW64\sechost.dll
    DLL已载入: 74A20000 C:\Windows\SysWOW64\winspool.drv
    DLL已载入: 70930000 C:\Windows\SysWOW64\d3d9.dll
    DLL已载入: 676B0000 C:\Windows\SysWOW64\dxva2.dll
    DLL已载入: 713D0000 C:\Windows\SysWOW64\urlmon.dll
    DLL已载入: 74360000 C:\Windows\SysWOW64\dhcpcsvc.dll
    跳过了不支持的调试类型 IMAGE_DEBUG_TYPE_POGO (在模块wxamsdk.dll中)……
    在模块 wxamsdk.dll 中没有找到任何支持的调试类型!
    DLL已载入: 648A0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WXAMSDK.dll
    DLL已载入: 751A0000 C:\Windows\SysWOW64\secur32.dll
    DLL已载入: 717F0000 C:\Windows\SysWOW64\DXCore.dll
    DLL已载入: 71190000 C:\Windows\SysWOW64\iertutil.dll
    DLL已载入: 74AB0000 C:\Windows\SysWOW64\sspicli.dll
    DLL已载入: 758C0000 C:\Windows\SysWOW64\advapi32.dll
    DLL已载入: 76C70000 C:\Windows\SysWOW64\bcryptprimitives.dll
    DLL已载入: 737F0000 C:\Windows\SysWOW64\cryptbase.dll
    DLL已载入: 71980000 C:\Windows\SysWOW64\powrprof.dll
    DLL已载入: 71970000 C:\Windows\SysWOW64\umpdc.dll
    DLL已载入: 67230000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\ComponentVerification.dll
    DLL已载入: 75730000 C:\Windows\SysWOW64\wintrust.dll
    DLL已载入: 74580000 C:\Windows\SysWOW64\msasn1.dll
    DLL已载入: 74A00000 C:\Windows\SysWOW64\kernel.appcore.dll
    DLL已载入: 774F0000 C:\Windows\SysWOW64\imagehlp.dll
    DLL已载入: 71BB0000 C:\Windows\SysWOW64\cryptsp.dll
    DLL已载入: 74AE0000 C:\Windows\SysWOW64\windows.storage.dll
    DLL已载入: 71B70000 C:\Windows\SysWOW64\rsaenh.dll
    DLL已载入: 74740000 C:\Windows\SysWOW64\ntmarta.dll
    DLL已载入: 71F40000 C:\Windows\SysWOW64\bcrypt.dll
    DLL已载入: 71A10000 C:\Windows\SysWOW64\gpapi.dll
    DLL已载入: 75E70000 C:\Windows\SysWOW64\msctf.dll
    DLL已载入: 719E0000 C:\Windows\SysWOW64\cryptnet.dll
    DLL已载入: 747C0000 C:\Windows\SysWOW64\profapi.dll
    DLL已载入: 719D0000 C:\Windows\SysWOW64\winnsi.dll
    DLL已载入: 75720000 C:\Windows\SysWOW64\nsi.dll
    DLL已载入: 75A00000 C:\Windows\SysWOW64\ole32.dll
    DLL已载入: 74380000 C:\Windows\SysWOW64\nlansp_c.dll
    DLL已载入: 743A0000 C:\Windows\SysWOW64\dhcpcsvc6.dll
    DLL已载入: 74290000 C:\Windows\SysWOW64\dnsapi.dll
    DLL已载入: 777A0000 C:\Windows\SysWOW64\clbcatq.dll
    DLL已载入: 6E950000 C:\Windows\SysWOW64\TextInputFramework.dll
    DLL已载入: 646B0000 C:\Windows\SysWOW64\Windows.UI.dll
    DLL已载入: 74490000 C:\Windows\SysWOW64\winsta.dll
    DLL已载入: 668F0000 C:\Windows\SysWOW64\mscms.dll
    DLL已载入: 69B10000 C:\Windows\SysWOW64\icm32.dll
    DLL已载入: 66870000 C:\Windows\SysWOW64\MMDevAPI.dll
    DLL已载入: 71930000 C:\Windows\SysWOW64\devobj.dll
    DLL已载入: 72CE0000 C:\Windows\SysWOW64\cfgmgr32.dll
    DLL已载入: 70D30000 C:\Windows\SysWOW64\DataExchange.dll
    DLL已载入: 6ED90000 C:\Windows\SysWOW64\twinapi.appcore.dll
    DLL已载入: 55B30000 C:\Windows\SysWOW64\twinapi.dll
    DLL已载入: 72D20000 C:\Windows\SysWOW64\atlthunk.dll
    DLL已载入: 55AA0000 C:\Windows\SysWOW64\directmanipulation.dll
    DLL已载入: 5A430000 C:\Windows\SysWOW64\OneCoreUAPCommonProxyStub.dll
    DLL已载入: 73AD0000 C:\Windows\SysWOW64\CoreMessaging.dll
    DLL已载入: 67800000 C:\Windows\SysWOW64\CoreUIComponents.dll
    DLL已载入: 71610000 C:\Windows\SysWOW64\WinTypes.dll
    线程 7350 已退出
    线程 918C 已退出
    线程 1094 已启动,入口: wechatappex.02554B90
    SetThreadName(1094, "ThreadPoolBackgroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2A851EE0
    ExceptionInformation[02]: 00001094
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 86E0 已退出
    线程 7CF0 已退出
    线程 83BC 已退出
    线程 935C 已退出
    线程 6088 已退出
    线程 79E4 已启动,入口: wechatappex.02554B90
    SetThreadName(79E4, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2A4A92C0
    ExceptionInformation[02]: 000079E4
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 3614 已启动,入口: wechatappex.02554B90
    SetThreadName(3614, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2A4A9B60
    ExceptionInformation[02]: 00003614
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 3620 已启动,入口: wechatappex.02554B90
    SetThreadName(3620, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2A4A9BC0
    ExceptionInformation[02]: 00003620
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 1094 已退出
    线程 88C4 已退出
    线程 3620 已退出
    线程 3614 已退出
    断点已设置在 05D59C49 !
    线程 90E8 已启动,入口: wechatappex.02554B90
    SetThreadName(90E8, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2AAB5C80
    ExceptionInformation[02]: 000090E8
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    断点已禁用!
    断点已删除!
    断点已设置在 05D59C49 !
    断点已禁用!
    断点已删除!
    断点已设置在 05D59C49 !
    线程 90E8 已退出
    硬件断点 (byte, 读写) 于 4B588D60!
    硬件断点已删除!
    硬件断点已删除!
    线程 7148 已启动,入口: wechatappex.02554B90
    线程 835C 已启动,入口: wechatappex.02554B90
    SetThreadName(7148, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2AF711A0
    ExceptionInformation[02]: 00007148
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(835C, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2AF713A0
    ExceptionInformation[02]: 0000835C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 6AD8 已启动,入口: crypt32.7787F060
    DLL已载入: 52B40000 C:\Windows\SysWOW64\AudioSes.dll
    DLL已载入: 54880000 C:\Windows\SysWOW64\ResourcePolicyClient.dll
    DLL已载入: 67670000 C:\Windows\SysWOW64\avrt.dll
    线程 1798 已启动,入口: wechatappex.02554B90
    SetThreadName(1798, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2A8D53A0
    ExceptionInformation[02]: 00001798
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    DLL已载入: 658C0000 C:\Windows\SysWOW64\Windows.Media.MediaControl.dll
    线程 3990 已启动,入口: shcore.76BE1A80
    线程 5714 已启动,入口: shcore.76BE1A80
    线程 3820 已启动,入口: wechatappex.02554B90
    SetThreadName(3820, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2B963680
    ExceptionInformation[02]: 00003820
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 3E0 已启动,入口: ntdll.77A3F0D0
    线程 3820 已退出
    线程 1798 已退出
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    线程 6460 已启动,入口: ntdll.77A3F0D0
    线程 25E0 已启动,入口: ntdll.77A3F0D0
    线程 79A0 已启动,入口: ntdll.77A3F0D0
    线程 7178 已启动,入口: ntdll.77A3F0D0
    线程 7AB8 已启动,入口: ntdll.77A3F0D0
    断点已禁用!
    线程 5714 已退出
    线程 6AD8 已退出
    线程 3990 已退出
    线程 835C 已退出
    线程 7148 已退出
    线程 2578 已启动,入口: wechatappex.02554B90
    SetThreadName(2578, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2A9AB180
    ExceptionInformation[02]: 00002578
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 6510 已启动,入口: wechatappex.02554B90
    SetThreadName(6510, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2AB3A3A0
    ExceptionInformation[02]: 00006510
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 8F64 已退出
    线程 6C5C 已启动,入口: wechatappex.02554B90
    SetThreadName(6C5C, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2B6A4640
    ExceptionInformation[02]: 00006C5C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 654C 已启动,入口: wechatappex.02554B90
    SetThreadName(654C, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2BD75AE0
    ExceptionInformation[02]: 0000654C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 467C 已启动,入口: wechatappex.02554B90
    线程 6510 已退出
    SetThreadName(467C, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2BD76280
    ExceptionInformation[02]: 0000467C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 554 已启动,入口: wechatappex.02554B90
    SetThreadName(554, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2BD77700
    ExceptionInformation[02]: 00000554
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    线程 6C5C 已退出
    线程 2620 已启动,入口: shcore.76BE1A80
    线程 9144 已启动,入口: combase.769A61D0
    线程 92EC 已启动,入口: crypt32.7787F060
    线程 654C 已退出
    线程 8340 已启动,入口: ntdll.77A3F0D0
    线程 92EC 已退出
    线程 554 已退出
    线程 2620 已退出
    线程 2578 已退出
    线程 71F0 已退出
    断点已设置在 024F2130 !
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    线程 45F8 已启动,入口: wechatappex.02554B90
    线程 4910 已启动,入口: ntdll.77A3F0D0
    线程 9144 已退出
    SetThreadName(45F8, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2AF70620
    ExceptionInformation[02]: 000045F8
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 80000004 (EXCEPTION_SINGLE_STEP)
              ExceptionFlags: 00000000
            ExceptionAddress: 77A7A917 ntdll.77A7A917
            NumberParameters: 0
    第一次异常于 77A7A917 (80000004, EXCEPTION_SINGLE_STEP)!
    断点已设置在 024F2223 !
    断点已设置在 024F221E !
    断点已删除!
    暂停条件计算出错。
    INT3 断点于 wechatappex.024F2223 (024F2223)!
    线程 19B4 已启动,入口: wechatappex.02554B90
    线程 45F8 已退出
    SetThreadName(19B4, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 2AF715C0
    ExceptionInformation[02]: 000019B4
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    暂停条件计算出错。
    INT3 断点于 wechatappex.024F2223 (024F2223)!
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    暂停条件计算出错。
    INT3 断点于 wechatappex.024F2223 (024F2223)!
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    "[I][02-12 07:46:03.542][19152,31120][shared_worker_service_impl.cc(453)] SharedWorkerServiceImpl::WmpfDestroyWorker https://servicewechat.com/preload-13/13/index.js\n"
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    "[I][02-12 07:46:18.879][19152,31120][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-13; worker_url = https://servicewechat.com/preload-13/13/index.js\n"
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    "[E][02-12 07:46:20.057][19152,31120][shared_worker_host.cc(183)] Ignore SendReportsAndRemoveSource in system shutDown process or minigameRuntime,appid:wx7a59aadcb728eca4\n"
    INT3 断点于 wechatappex.024F2130 (024F2130)!
    断点已禁用!
    断点已设置在 024F1CB0 !
    断点已删除!
    "[I][02-12 07:46:32.213][19152,31120][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 2A942CB0; closed_ = 1; webview_ = 1\n"
    "[D][02-12 07:47:54.741][19152,31120][tab_wrapper.cc(622)] TabWrapper::Close  this = 2A37DCE0\n"
    "[I][02-12 07:47:54.743][19152,31120][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 2A37DCE0\n"
    "[I][02-12 07:47:54.744][19152,31120][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:47:54.745][19152,31120][tab_wrapper.cc(266)]  NavigationController:2A940550\n"
    "[I][02-12 07:47:54.746][19152,31120][navigation_controller_impl.cc(302)] RemoveObserver observer:2A37DCE0 this:2A940550\n"
    "[I][02-12 07:47:54.746][19152,31120][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:47:54.748][19152,31120][tab_wrapper.cc(1434)] WebContentsDestroyed this:2A37DCE0\n"
    "[D][02-12 07:47:54.749][19152,31120][applet_page_container.cc(49)] ~AppletPageContainer\n"
    "[I][02-12 07:47:54.750][19152,31120][applet_page.cc(80)] AppletPage::~AppletPage() this = 2BE21C00; is_page_closed_ = 0\n"
    "[I][02-12 07:47:54.751][19152,31120][applet_page.cc(93)] AppletPage::closePage() this = 2BE21C00; pinus_webview_ = 1; html_webview_ = 0\n"
    "[D][02-12 07:47:54.752][19152,31120][pinus_context.cc(392)] PinusWebViewImpl::CloseBrowser  this = 2BD49AE0\n"
    "[I][02-12 07:47:54.753][19152,31120][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 2BD49AE0; closed_ = 1; webview_ = 1\n"
    "[D][02-12 07:47:54.754][19152,31120][tab_wrapper.cc(622)] TabWrapper::Close  this = 2B5E9D20\n"
    "[I][02-12 07:47:54.755][19152,31120][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 2B5E9D20\n"
    "[I][02-12 07:47:54.756][19152,31120][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:47:54.757][19152,31120][tab_wrapper.cc(266)]  NavigationController:2BD49CC0\n"
    "[I][02-12 07:47:54.758][19152,31120][navigation_controller_impl.cc(302)] RemoveObserver observer:2B5E9D20 this:2BD49CC0\n"
    "[I][02-12 07:47:54.758][19152,31120][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:47:54.759][19152,31120][tab_wrapper.cc(1434)] WebContentsDestroyed this:2B5E9D20\n"
    "[D][02-12 07:47:54.764][19152,31120][applet_component.cc(41)] AppletComponent::~AppletComponent() component_id_ = 12\n"
    "[D][02-12 07:47:54.765][19152,31120][applet_component.cc(41)] AppletComponent::~AppletComponent() component_id_ = 10\n"
    "[I][02-12 07:47:54.766][19152,31120][performance_info.cc(61)] [Perf] start_time = 1676159274766\n"
    "[I][02-12 07:47:54.767][19152,31120][applet_package.cc(497)] initPublicInfoPath, current version = 827; new_publicVer = 318; filePath = E:\\WXFileRecv\\WeChat Files\\Applet\\publicLib\\318\\clientPublicLib.wxapkg\n"
    "[D][02-12 07:47:54.768][19152,31120][applet_runtime_manager.cc(486)] SetPreloadNewPublicLib, public_version = 0\n"
    "[I][02-12 07:47:54.769][19152,31120][applet_package.cc(515)] AppletPackage::loadPublicLibWxpkg public_lib_path_ = \n"
    "[I][02-12 07:47:54.770][19152,31120][applet_package.cc(518)] AppletPackage::loadPublicLibWxpkg init PublicLib Path Not Exists\n"
    "[D][02-12 07:47:54.771][19152,31120][applet_runtime.cc(118)] AppletRuntime::ParseInitConfig  isPreload = 0\n"
    "[D][02-12 07:47:54.772][19152,31120][applet_manager.cc(139)] AppletManager::Init app_id_ = wx7a59aadcb728eca4; moduleListInfo = [{\"independent\":false,\"md5\":\"e0275c5cd469811468a54b6133a36c50\",\"name\":\"/playableDemo/\"},{\"independent\":false,\"md5\":\"b1f95a71311d11f09dcfe1a4cd88a56a\",\"name\":\"__APP__\"}]\n\n"
    "[D][02-12 07:47:54.773][19152,31120][applet_subpkg_mgr.cc(32)] AppletSubPkgMgr::init subInfos = [{\"independent\":false,\"md5\":\"e0275c5cd469811468a54b6133a36c50\",\"name\":\"/playableDemo/\"},{\"independent\":false,\"md5\":\"b1f95a71311d11f09dcfe1a4cd88a56a\",\"name\":\"__APP__\"}]\n\n"
    "[I][02-12 07:47:54.774][19152,31120][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 2AB30380\n"
    "[D][02-12 07:47:54.776][19152,31120][applet_manager.cc(307)] Init, wxid_ = wxid_wp9bvftcln3b12\n"
    "[D][02-12 07:47:54.778][19152,31120][kv_storage_manager.cc(52)] KVStorageMgr::init m_key = w75adb2ea; m_storagePath0 = E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\\usrkvstorage0.db; m_storagePath1 = E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\\usrkvstorage1.db\n"
    "[D][02-12 07:47:54.779][19152,31120][global_storage_manager.cc(41)] GlobalStorageMgr::init m_storagePath = E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\globalkvstorage.db\n"
    "[D][02-12 07:47:54.781][19152,31120][applet_plugin_manager.cc(81)] AppletPluginManager::ProcessPlugins plugin_info_list_ size = 1\n"
    "[D][02-12 07:47:54.782][19152,31120][applet_plugin_manager.cc(189)] AppletPluginManager::LoadPlugin pluginId = wx70d8aa25ec591f7a; prefix_path = /__plugin__/wx70d8aa25ec591f7a; isEncrypt = 1\n"
    "[D][02-12 07:47:54.793][19152,31120][applet_plugin_manager.cc(198)] AppletPluginManager::LoadPlugin decode success moduleName = wx70d8aa25ec591f7a\n"
    "[I][02-12 07:47:54.794][19152,31120][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:47:54.796][19152,31120][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__APP__.wxapkg\n"
    "[I][02-12 07:47:54.797][19152,31120][applet_package.cc(127)] loadModule, pkgFilePath not found E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__APP__.wxapkg\n"
    "[I][02-12 07:47:54.798][19152,31120][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 0\n"
    "[I][02-12 07:47:54.799][19152,31120][applet_runtime.cc(267)] InitAppletPkg, downloadSubPackage = {\r\n   \"app_version\": 140,\r\n   \"moduleName\": \"__APP__\"\r\n}\r\n\n"
    "[D][02-12 07:47:54.800][19152,31120][applet_config.cc(128)] startParse\n"
    "[E][02-12 07:47:54.801][19152,31120][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[D][02-12 07:47:54.802][19152,31120][applet_main_window.cc(727)] ShowPreloadWidget\n"
    "[D][02-12 07:47:54.804][19152,31120][applet_manager.cc(1055)] AppletManager::getInitWindowSizeAsDp screenSize = 1920x1200\n"
    "[D][02-12 07:47:54.805][19152,31120][applet_manager.cc(1089)] getInitWindowSizeAsDp. minigame+portrait. scale = 1.5625; windowSize = 495x880\n"
    "[I][02-12 07:47:54.806][19152,31120][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[D][02-12 07:47:54.815][19152,31120][base_main_window.cc(474)] BaseMainWindow::OnWidgetActivationChanged widget = 2B7D0980; active = 1; GetWidget() = 2B7D0980\n"
    "[D][02-12 07:47:54.835][19152,31120][applet_main_window.cc(232)] OnWidgetBoundsChanged new_bounds = 712,114 496x924; windows_rect_ = 0,0 139x100\n"
    "[D][02-12 07:47:54.836][19152,31120][applet_main_window.cc(431)] showInitLoadingView\n"
    "[D][02-12 07:47:54.839][19152,31120][applet_main_window.cc(279)] OnWidgetBoundsChanged content_view_:29CFB380 content_view_rect:0,44 496x880\n"
    "[D][02-12 07:47:54.841][19152,31120][base_main_window.cc(489)] BaseMainWindow::OnWidgetBoundsChanged new_bounds = 712,114 496x924; windows_size_ = 0x0\n"
    "[D][02-12 07:47:54.842][19152,31120][minigame_container.cc(1326)] OnWidgetBoundsChanged\n"
    "[D][02-12 07:47:54.844][19152,31120][minigame_container.cc(1219)] FixContentView\n"
    "[D][02-12 07:47:54.860][19152,31120][applet_main_window.cc(232)] OnWidgetBoundsChanged new_bounds = 712,114 496x924; windows_rect_ = 0,0 496x924\n"
    "[D][02-12 07:47:54.862][19152,31120][applet_main_window.cc(431)] showInitLoadingView\n"
    "[D][02-12 07:47:54.877][19152,31120][applet_main_window.cc(232)] OnWidgetBoundsChanged new_bounds = 712,114 496x924; windows_rect_ = 0,0 496x924\n"
    "[D][02-12 07:47:54.879][19152,31120][applet_main_window.cc(431)] showInitLoadingView\n"
    "[D][02-12 07:47:54.882][19152,31120][minigame_container.cc(1319)] OnPreloadWidgetShow\n"
    "[D][02-12 07:47:54.883][19152,31120][applet_controller.cc(363)] SetTabBarVisable:0\n"
    "[D][02-12 07:47:54.885][19152,31120][applet_main_window.cc(416)] AppletMainWindow::setTabBarVisable visable = 0\n"
    "[I][02-12 07:47:54.886][19152,31120][applet_runtime_manager.cc(635)] LaunchApplet preload_applet_runtime_ = 0 ; g_EnablePreload = 1; pending_preload_runtime_ = 0\n"
    "[I][02-12 07:47:54.902][19152,31120][applet_runtime_manager.cc(864)] AppletRuntimeManager::AppletCommonReq app_id = wx7a59aadcb728eca4; data = {\"app_id\":\"wx7a59aadcb728eca4\",\"cmdId\":9,\"fromAppId\":\"\",\"keyId\":\"onOperateRealtimeDataResponse\",\"param\":\"{\\\"errcode\\\":0,\\\"errmsg\\\":\\\"\\\",\\\"res_data\\\":[{\\\"app_id\\\":\\\"wx7a59aadcb728eca4\\\",\\\"dataSize\\\":714,\\\"id\\\":1676158544},{\\\"app_id\\\":\\\"wx7a59aadcb728eca4\\\",\\\"dataSize\\\":716,\\\"id\\\":1676158545},{\\\"ap"
    "[D][02-12 07:47:54.903][19152,31120][mini_game_runtime_host.cc(34)] MiniGameRuntimeHost::InvokeServiceSubscribeHandler event = onRealtimeDataResponse; data = {\"dataSize\":3581,\"errcode\":0,\"errmsg\":\"\",\"idList\":[1676158544,1676158545,1676158546,1676158686,1676158687]}\n"
    "[D][02-12 07:47:54.911][19152,31120][applet_manager.cc(1225)] AppletManager::OnGetWxaLaunchInfo data = {\"app_id\":\"wx7a59aadcb728eca4\",\"err_msg\":\"ok\",\"isSuccess\":true,\"jsapiName\":\"\",\"respData\":\"{\\\"actionControlBytes\\\":\\\"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=\\\",\\\"appletconfig\\\":{\\\"AgeAppropriateIcon\\\":{\\\"12\\\":\\\"https://res.wx.qq.com/t/fed_upload/66ac6dd5-8f4b-4ca8-84f5-e437519a44f9/12+.png\\\",\\\"16\\\":\\\"https://res.wx.qq.com/t/fed_upload/66ac6dd5-8f4b-4ca"
    "[D][02-12 07:47:54.913][19152,31120][mini_game_runtime_host.cc(34)] MiniGameRuntimeHost::InvokeServiceSubscribeHandler event = onPluginPermissionUpdate; data = [{\"wx70d8aa25ec591f7a\":[0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,4,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1"
    "[D][02-12 07:47:54.915][19152,31120][mini_game_runtime_host.cc(34)] MiniGameRuntimeHost::InvokeServiceSubscribeHandler event = permissionBytesChanged; data = [0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,4,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,1,1,1,1,0,0,4,"
    "[I][02-12 07:47:55.537][19152,31120][applet_runtime.cc(294)] AppletRuntime::OnDownloadMainPackage {\"app_id\":\"wx7a59aadcb728eca4\",\"downloadType\":\"zstd\",\"err_msg\":\"ok\",\"isSuccess\":true,\"moduleName\":\"__APP__\",\"retType\":0,\"task_id\":165,\"totalSize\":4161391,\"writeSize\":4161391}\n; ret = 0; cost = 738\n"
    "[D][02-12 07:47:55.539][19152,31120][applet_plugin_manager.cc(81)] AppletPluginManager::ProcessPlugins plugin_info_list_ size = 1\n"
    "[I][02-12 07:47:55.540][19152,31120][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:47:55.541][19152,31120][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg\n"
    "[D][02-12 07:47:55.542][19152,31120][applet_package.cc(142)] AppletPackage::loadModule isEncrypt = 1\n"
    "[I][02-12 07:47:55.561][19152,31120][applet_package.cc(185)] parsePkgFileContent correctMd5 = b1f95a71311d11f09dcfe1a4cd88a56a; current_md5 = b1f95a71311d11f09dcfe1a4cd88a56a; pgk_file_path = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg; moduleName = __APP__\n"
    "[I][02-12 07:47:55.563][19152,31120][applet_package.cc(191)] Need check md5\n"
    "[D][02-12 07:47:55.568][19152,31120][applet_package.cc(149)] AppletPackage::loadModule, decode success, moduleName = __APP__\n"
    "[I][02-12 07:47:55.569][19152,31120][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 1\n"
    "[D][02-12 07:47:55.571][19152,31120][applet_config.cc(128)] startParse\n"
    "[D][02-12 07:47:55.573][19152,31120][applet_config.cc(169)] AppletAppConfig::startParse resizable_ = 0; frame_set_ = 0\n"
    "[D][02-12 07:47:55.574][19152,31120][applet_config.cc(265)] startParse mDeviceConfig.orientation = portrait\n"
    "[I][02-12 07:47:55.575][19152,31120][applet_config.cc(280)] MiniProgramServiceHost::GetConfig is_lazy_load_ = 0\n"
    "[D][02-12 07:47:55.576][19152,31120][applet_main_window.cc(169)] WindowSizeMayChange\n"
    "[D][02-12 07:47:55.577][19152,31120][applet_manager.cc(1055)] AppletManager::getInitWindowSizeAsDp screenSize = 1920x1200\n"
    "[D][02-12 07:47:55.578][19152,31120][applet_manager.cc(1089)] getInitWindowSizeAsDp. minigame+portrait. scale = 1.5625; windowSize = 495x880\n"
    "[I][02-12 07:47:55.578][19152,31120][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[D][02-12 07:47:55.579][19152,31120][applet_main_window.cc(189)] WindowSizeMayChange  windows_rect_ = 0,0 496x924; new_rect = 712,114 496x924\n"
    "[D][02-12 07:47:55.580][19152,31120][applet_main_window.cc(232)] OnWidgetBoundsChanged new_bounds = 712,114 496x924; windows_rect_ = 712,114 496x924\n"
    "[D][02-12 07:47:55.581][19152,31120][applet_main_window.cc(431)] showInitLoadingView\n"
    "[I][02-12 07:47:55.583][19152,31120][applet_runtime.cc(406)] AppletRuntime::OnPackageDownloadComplete success = 1\n"
    "[D][02-12 07:47:55.583][19152,31120][applet_main_window.cc(169)] WindowSizeMayChange\n"
    "[D][02-12 07:47:55.584][19152,31120][applet_manager.cc(1055)] AppletManager::getInitWindowSizeAsDp screenSize = 1920x1200\n"
    "[D][02-12 07:47:55.585][19152,31120][applet_manager.cc(1089)] getInitWindowSizeAsDp. minigame+portrait. scale = 1.5625; windowSize = 495x880\n"
    "[I][02-12 07:47:55.586][19152,31120][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[D][02-12 07:47:55.587][19152,31120][applet_main_window.cc(189)] WindowSizeMayChange  windows_rect_ = 712,114 496x924; new_rect = 712,114 496x924\n"
    "[D][02-12 07:47:55.588][19152,31120][applet_runtime.cc(415)] OnPackageDownloadComplete call StartupLoad.\n"
    "[D][02-12 07:47:55.591][19152,31120][applet_main_window.cc(232)] OnWidgetBoundsChanged new_bounds = 712,114 496x924; windows_rect_ = 712,114 496x924\n"
    "[D][02-12 07:47:55.592][19152,31120][applet_main_window.cc(431)] showInitLoadingView\n"
    "[D][02-12 07:47:55.593][19152,31120][minigame_container.cc(671)] GetConfig\n"
    "[I][02-12 07:47:55.598][19152,33600][sandbox_rule_delegate.cc(84)] AddFileSystemRule. dataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\n AddFileSystemRule. shareddataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\shared\n"
    "[D][02-12 07:47:55.601][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:55.603][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:55.605][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:55.607][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:55.620][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:55.624][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getStorage; id = 0; data = {\"key\":\"cache|meta\",\"storageId\":3}\n"
    "[D][02-12 07:47:55.626][19152,31120][storage_base.cc(28)] StorageBase::StorageBase dbPath = E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\\usrkvstorage0.db; tableName = KVStorage\n"
    "[D][02-12 07:47:55.627][19152,31120][storage_base.cc(79)] StorageBase::init\n"
    "[D][02-12 07:47:56.012][19152,31120][storage_base.cc(91)] StorageBase::init OK  errCode = 0\n"
    "[D][02-12 07:47:56.014][19152,31120][storage_base.cc(28)] StorageBase::StorageBase dbPath = E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\\usrkvstorage1.db; tableName = KVStorage\n"
    "[D][02-12 07:47:56.015][19152,31120][storage_base.cc(79)] StorageBase::init\n"
    "[D][02-12 07:47:56.457][19152,31120][storage_base.cc(91)] StorageBase::init OK  errCode = 0\n"
    "[E][02-12 07:47:56.459][19152,31120][kv_storage_manager.cc(78)] KVStorageMgr::chooseStorage invalid storageid = 3\n"
    "[D][02-12 07:47:56.460][19152,31120][kv_storage.cc(100)] KVStorage::get not found key = cache|meta\n"
    "[D][02-12 07:47:56.461][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getSystemInfo; id = 0; data = {}\n"
    "[D][02-12 07:47:56.462][19152,31120][common_js_api.cc(92)] GetSystemInfo type:\n"
    "[D][02-12 07:47:56.466][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = reportIDKey; id = 0; data = {\"dataArray\":[{\"id\":358,\"key\":31,\"value\":1}]}\n"
    "[D][02-12 07:47:56.468][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = operateWXData; id = 0; data = {\"data\":{\"api_name\":\"webapi_game_getsharemarkingame\",\"data\":{\"lib_version\":\"2.26.1\",\"scene\":1001,\"launch_with_share_mark\":false},\"operate_directly\":false},\"requestInQueue\":false,\"isImportant\":false}\n"
    "[D][02-12 07:47:56.470][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getGlobalStorage; id = 0; data = {\"key\":\"game:verifystate\"}\n"
    "[D][02-12 07:47:56.471][19152,31120][storage_base.cc(28)] StorageBase::StorageBase dbPath = E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\globalkvstorage.db; tableName = KVStorage\n"
    "[D][02-12 07:47:56.472][19152,31120][storage_base.cc(79)] StorageBase::init\n"
    "[D][02-12 07:47:56.485][19152,32748][wmpf_proxying_url_loader_factory.cc(543)] CreateLoaderAndStart url:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:47:56.486][19152,32748][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[D][02-12 07:47:56.487][19152,32748][wmpf_proxying_url_loader_factory.cc(272)] Restart\n"
    "[D][02-12 07:47:56.489][19152,32748][tab_wrapper.cc(864)] ShouldInterceptRequest THIS = 2A377AC0 client_handler_2A942304\n"
    "[D][02-12 07:47:56.490][19152,32748][minigame_container.cc(904)] MinigameContainer::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:47:56.491][19152,32748][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:47:56.492][19152,32748][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js; path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[D][02-12 07:47:56.494][19152,32748][applet_plugin_manager.cc(73)] AppletPluginManager::ReadPluginRes name = /__plugin__/wx70d8aa25ec591f7a/plugin.js; length = 1938503\n"
    "[D][02-12 07:47:56.497][19152,32748][minigame_container.cc(1157)] path:/__plugin__/wx70d8aa25ec591f7a/plugin.js mime_type:text/javascript\n"
    "[I][02-12 07:47:56.500][19152,32748][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[D][02-12 07:47:56.503][19152,18044][resource_handler_wrapper.cc(77)] StringInputStream::Init str_data_.size = 1938564\n"
    "[D][02-12 07:47:56.599][19152,32748][wmpf_proxying_url_loader_factory.cc(543)] CreateLoaderAndStart url:https://servicewechat.com/game.js\n"
    "[I][02-12 07:47:56.600][19152,32748][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/game.js\n"
    "[D][02-12 07:47:56.602][19152,32748][wmpf_proxying_url_loader_factory.cc(272)] Restart\n"
    "[D][02-12 07:47:56.604][19152,32748][tab_wrapper.cc(864)] ShouldInterceptRequest THIS = 2A377AC0 client_handler_2A942304\n"
    "[D][02-12 07:47:56.605][19152,32748][minigame_container.cc(904)] MinigameContainer::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/game.js\n"
    "[I][02-12 07:47:56.607][19152,32748][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /game.js\n"
    "[I][02-12 07:47:56.608][19152,32748][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/game.js; path = /game.js\n"
    "[D][02-12 07:47:56.612][19152,32748][minigame_container.cc(1157)] path:/game.js mime_type:text/javascript\n"
    "[I][02-12 07:47:56.615][19152,32748][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/game.js\n"
    "[D][02-12 07:47:56.618][19152,18044][resource_handler_wrapper.cc(77)] StringInputStream::Init str_data_.size = 1420018\n"
    "[D][02-12 07:47:56.915][19152,31120][storage_base.cc(91)] StorageBase::init OK  errCode = 0\n"
    "[D][02-12 07:47:56.916][19152,31120][global_storage_manager.cc(80)] GlobalStorageMgr::get key = game:verifystate; value = {\"action\":1,\"heartbeatInterval\":0}\n"
    "[I][02-12 07:47:56.918][19152,31120][CONSOLE(1)] \"Unhandled promise rejection undefined\", source: https://servicewechat.com/__dev__/WAGame.js (1)\n"
    "[D][02-12 07:47:56.919][19152,31120][jsapi_remote.cc(194)] OnOperateWXData OperateWXData:{\r\n   \"data\": {\r\n      \"data\": \"{\\\"mark_list\\\":[]}\",\r\n      \"err_no\": 0\r\n   },\r\n   \"errMsg\": \"operateWXData:ok\",\r\n   \"errno\": 0,\r\n   \"errorCode\": 0\r\n}\r\n\n"
    "[D][02-12 07:47:56.920][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = showUpdatableMessageSubscribeButton; id = 0; data = {\"shareKey\":\"\"}\n"
    "[D][02-12 07:47:56.921][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = reportKeyValue; id = 0; data = {\"dataArray\":[{\"key\":15677,\"value\":\"1,1001,1676159276,0,7ddf38ad-9f4b-411b-b0bb-2b20a1b07ed6,,7ddf38ad-9f4b-411b-b0bb-2b20a1b07ed6,SessionId%40357394753_4%231676158848898\"}]}\n"
    "[D][02-12 07:47:56.922][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = reportIDKey; id = 0; data = {\"dataArray\":[{\"id\":358,\"key\":145,\"value\":1}]}\n"
    "[D][02-12 07:47:56.923][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = reportKeyValue; id = 0; data = {\"dataArray\":[{\"key\":15496,\"value\":\"1,1001,,SessionId%40357394753_4%231676158848898,2,,wifi,1715,0,,0,,1676159274772,2.26.1,0,,1,,1004,0,,0,1676159274772,,0,1716,1,1676159276488,0,,\"}]}\n"
    "[D][02-12 07:47:56.924][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = operateRealtimeData; id = 0; data = {\"type\":1000,\"content\":\"{\\\"DeviceModel\\\":\\\"microsoft\\\",\\\"DeviceBrand\\\":\\\"microsoft\\\",\\\"OsName\\\":\\\"windows\\\",\\\"OsVersion\\\":\\\"Windows 11 x64\\\",\\\"LanguageVersion\\\":\\\"zh_CN\\\",\\\"appid\\\":\\\"wx7a59aadcb728eca4\\\",\\\"appversion\\\":\\\"2.26.1\\\",\\\"appstate\\\":1,\\\"event_id\\\":1,\\\"scene\\\":1001,\\\"scene_note\\\":\\\"\\\",\\\"ses"
    "[D][02-12 07:47:56.925][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = operateWXData; id = 0; data = {\"data\":{\"api_name\":\"webapi_openproduct_bizaccount\",\"data\":{\"path\":\"\",\"query\":\"{}\"},\"operate_directly\":false},\"requestInQueue\":false,\"isImportant\":false}\n"
    "[D][02-12 07:47:56.926][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getSystemInfo; id = 0; data = {}\n"
    "[D][02-12 07:47:56.927][19152,31120][common_js_api.cc(92)] GetSystemInfo type:\n"
    "[D][02-12 07:47:57.016][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:57.021][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[D][02-12 07:47:57.025][19152,33600][sandbox_policy_base.cc(621)] EmbeddedRuleDelegate CanEvalPolicy,result:3\n"
    "[I][02-12 07:47:57.031][19152,31120][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[D][02-12 07:47:57.033][19152,32748][wmpf_proxying_url_loader_factory.cc(543)] CreateLoaderAndStart url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:47:57.035][19152,32748][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[D][02-12 07:47:57.037][19152,32748][wmpf_proxying_url_loader_factory.cc(272)] Restart\n"
    "[D][02-12 07:47:57.038][19152,32748][tab_wrapper.cc(864)] ShouldInterceptRequest THIS = 2A377AC0 client_handler_2A942304\n"
    "[D][02-12 07:47:57.040][19152,32748][minigame_container.cc(904)] MinigameContainer::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/frame.html\n"
    "[I][02-12 07:47:57.041][19152,32748][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:47:57.042][19152,32748][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[D][02-12 07:47:57.043][19152,18044][resource_handler_wrapper.cc(77)] StringInputStream::Init str_data_.size = 399\n"
    "[I][02-12 07:47:57.045][19152,31120][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 13\n"
    "[D][02-12 07:47:57.100][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getStorageSync; id = 0; data = {\"key\":\"fps_off\",\"storageId\":0}\n"
    "[D][02-12 07:47:57.102][19152,31120][kv_storage.cc(100)] KVStorage::get not found key = fps_off\n"
    "[D][02-12 07:47:57.104][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getStorageSync; id = 0; data = {\"key\":\"lastLogin\",\"storageId\":0}\n"
    "[D][02-12 07:47:57.116][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getSystemInfo; id = 0; data = {}\n"
    "[D][02-12 07:47:57.118][19152,31120][common_js_api.cc(92)] GetSystemInfo type:\n"
    "[D][02-12 07:47:57.120][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getStorageSync; id = 0; data = {\"key\":\"thinkingdata\",\"storageId\":0}\n"
    "[D][02-12 07:47:57.123][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = setStorage; id = 0; data = {\"key\":\"thinkingdata\",\"data\":\"{\\\"distinct_id\\\":\\\"4673057990-1676144940126\\\",\\\"device_id\\\":\\\"3618313560-1676144940126\\\",\\\"event_timers\\\":{\\\"ta_mg_hide\\\":1676159277122},\\\"account_id\\\":\\\"132125434\\\"}\",\"dataType\":\"String\",\"storageId\":0}\n"
    "[D][02-12 07:47:57.128][19152,31120][minigame_container.cc(535)] ReadFileSync; path = version.json; type = code\n"
    "[D][02-12 07:47:57.130][19152,31120][minigame_container.cc(541)] MinigameContainer::ReadFileSync code, code_content size = 200973\n"
    "[D][02-12 07:47:57.132][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = checkNetworkAPIURL; id = 0; data = {\"api\":\"request\",\"url\":\"https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54efe6b\"}\n"
    "[D][02-12 07:47:57.133][19152,31120][common_js_api.cc(588)] CheckNetworkAPIURL  api = request; check_ret = 1; is_ip = 0; url = https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54efe6b\n"
    "[D][02-12 07:47:57.134][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = checkNetworkAPIURL; id = 0; data = {\"api\":\"request\",\"url\":\"https://td.log-collect.lightlygame.com/sync_xcx\"}\n"
    "[D][02-12 07:47:57.135][19152,31120][common_js_api.cc(588)] CheckNetworkAPIURL  api = request; check_ret = 1; is_ip = 0; url = https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[D][02-12 07:47:57.136][19152,31120][applet_main_window.cc(451)] hideInitLoadingView\n"
    "[D][02-12 07:47:57.138][19152,31120][minigame_container.cc(1219)] FixContentView\n"
    "[I][02-12 07:47:57.150][19152,31120][applet_runtime.cc(497)] OnFirstPageReady IsEnableCodeCache = 1\n"
    "[I][02-12 07:47:57.151][19152,31120][performance_info.cc(67)] [Perf] OnFirstPageReady ms = 2386\n"
    "[D][02-12 07:47:57.153][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = reportIDKey; id = 0; data = {\"dataArray\":[{\"id\":358,\"key\":62,\"value\":1},{\"id\":358,\"key\":31,\"value\":1},{\"id\":358,\"key\":147,\"value\":1},{\"id\":358,\"key\":67,\"value\":1},{\"id\":358,\"key\":120,\"value\":1},{\"id\":358,\"key\":4,\"value\":1},{\"id\":358,\"key\":120,\"value\":1},{\"id\":358,\"key\":4,\"value\":1},{\"id\":358,\"key\":227,\"value\":1},{\"id\":358,\"key\":226,\"value\":15}]}\n"
    "[D][02-12 07:47:57.155][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = reportKeyValue; id = 0; data = {\"dataArray\":[{\"key\":14480,\"value\":\"request,https%3A%2F%2Ftd.log-collect.lightlygame.com%2Fconfig%3Fappid%3D2a9769befac848e0a742de8ff54efe6b,null,0,null,1004,null,null,wifi,,,null,,1001,,16761592771110550,undefined,null,%7B%7D\"},{\"key\":14480,\"value\":\"request,https%3A%2F%2Ftd.log-collect.lightlygame.com%2Fsync_xcx,null,0,null,1004,null,null,wifi,,,null,,1001,,16761592771252"
    "[D][02-12 07:47:57.157][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = operateRealtimeData; id = 0; data = {\"type\":1000,\"content\":\"{\\\"DeviceModel\\\":\\\"microsoft\\\",\\\"DeviceBrand\\\":\\\"microsoft\\\",\\\"OsName\\\":\\\"windows\\\",\\\"OsVersion\\\":\\\"Windows 11 x64\\\",\\\"LanguageVersion\\\":\\\"zh_CN\\\",\\\"appid\\\":\\\"wx7a59aadcb728eca4\\\",\\\"appversion\\\":\\\"2.26.1\\\",\\\"appstate\\\":1,\\\"event_id\\\":1,\\\"scene\\\":1001,\\\"scene_note\\\":\\\"\\\",\\\"ses"
    "[D][02-12 07:47:57.159][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getGlobalStorage; id = 0; data = {\"key\":\"game:verifystate\"}\n"
    "[D][02-12 07:47:57.160][19152,31120][global_storage_manager.cc(80)] GlobalStorageMgr::get key = game:verifystate; value = {\"action\":1,\"heartbeatInterval\":0}\n"
    ???
    "[D][02-12 07:47:57.169][19152,31120][js_api_host.cc(216)] JsApiHost::DoJsApi api_name = getStorageSync; id = 0; data = {\"key\":\"newUserAction\",\"storageId\":0}\n"
    "[D][02-12 07:47:57.171][19152,31120][minigame_container.cc(535)] ReadFileSync; path = res/minres-af563130cc.json; type = code\n"
    "[D][02-12 07:47:57.173][19152,31120][minigame_container.cc(541)] MinigameContainer::ReadFileSync code, code_content size = 34\n"
    "[D][02-12 07:47:57.175][19152,32748][wmpf_proxying_url_loader_factory.cc(543)] CreateLoaderAndStart url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e\n"
    "[I][02-12 07:47:57.176][19152,32748][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[D][02-12 07:47:57.177][19152,31120][minigame_container.cc(535)] ReadFileSync; path = res/minres-f1d3ff8443.zip; type = code\n"
    "[D][02-12 07:47:57.179][19152,31120][minigame_container.cc(541)] MinigameContainer::ReadFileSync code, code_content size = 4\n"
    "[D][02-12 07:47:57.180][19152,32748][wmpf_proxying_url_loader_factory.cc(272)] Restart\n"
    "[D][02-12 07:47:57.182][19152,32748][tab_wrapper.cc(864)] ShouldInterceptRequest THIS = 2A377AC0 client_handler_2A942304\n"
    "[D][02-12 07:47:57.183][19152,32748][minigame_container.cc(904)] MinigameContainer::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:47:57.185][19152,32748][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:47:57.186][19152,32748][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg; path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[D][02-12 07:47:57.188][19152,32748][minigame_container.cc(1157)] path:/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg mime_type:image/jpeg\n"
    "[I][02-12 07:47:57.190][19152,32748][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e\n"
    "[D][02-12 07:47:57.192][19152,18044][resource_handler_wrapper.cc(77)] StringInputStream::Init str_data_.size = 98948\n"
    "[D][02-12 07:47:57.193][19152,31120][jsapi_remote.cc(194)] OnOperateWXData OperateWXData:{\r\n   \"data\": {\r\n      \"data\": \"{\\\"openproduct_checkticket\\\":0,\\\"openproduct_checkticket_deprecated\\\":0,\\\"openleague_cookie\\\":\\\"\\\",\\\"openproduct_checktickettimeout\\\":3000}\",\r\n      \"err_no\": 0\r\n   },\r\n   \"errMsg\": \"operateWXData:ok\",\r\n   \"errno\": 0,\r\n   \"errorCode\": 0\r\n}\r\n\n"
    "[D][02-12 07:47:57.195][19152,32748][wmpf_proxying_url_loader_factory.cc(543)] CreateLoaderAndStart url:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54e\n"
    "[I][02-12 07:47:57.196][19152,32748][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54efe6b\n"
    "[D][02-12 07:47:57.198][19152,32748][wmpf_proxying_url_loader_factory.cc(272)] Restart\n"
    "[D][02-12 07:47:57.199][19152,31120][minigame_container.cc(866)] MinigameContainer::OnLoadStart url = https://servicewechat.com/frame.html\n"
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 80000003 (EXCEPTION_BREAKPOINT)
              ExceptionFlags: 00000000
            ExceptionAddress: 024F2223 wechatappex.024F2223
            NumberParameters: 1
    ExceptionInformation[00]: 00000000
    第一次异常于 024F2223 (80000003, EXCEPTION_BREAKPOINT)!
    遇到了未知断点!
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: C000001D (EXCEPTION_ILLEGAL_INSTRUCTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 024F2222 wechatappex.024F2222
            NumberParameters: 0
    第一次异常于 024F2222 (C000001D, EXCEPTION_ILLEGAL_INSTRUCTION)!
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 0
               ExceptionCode: C000001D (EXCEPTION_ILLEGAL_INSTRUCTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 024F2222 wechatappex.024F2222
            NumberParameters: 0
    第二次异常于 024F2222 (C000001D, EXCEPTION_ILLEGAL_INSTRUCTION)!
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: C000001D (EXCEPTION_ILLEGAL_INSTRUCTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 024F2222 wechatappex.024F2222
            NumberParameters: 0
    第一次异常于 024F2222 (C000001D, EXCEPTION_ILLEGAL_INSTRUCTION)!
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 0
               ExceptionCode: C000001D (EXCEPTION_ILLEGAL_INSTRUCTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 024F2222 wechatappex.024F2222
            NumberParameters: 0
    第二次异常于 024F2222 (C000001D, EXCEPTION_ILLEGAL_INSTRUCTION)!
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: C000001D (EXCEPTION_ILLEGAL_INSTRUCTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 024F2222 wechatappex.024F2222
            NumberParameters: 0
    第一次异常于 024F2222 (C000001D, EXCEPTION_ILLEGAL_INSTRUCTION)!
    断点已禁用!
    已于 024F2223 处设置硬件断点!
    断点已删除!
    线程 7604 已退出
    线程 901C 已退出
    线程 50C0 已退出
    线程 70CC 已退出
    线程 9114 已退出
    线程 47A0 已退出
    线程 7990 已退出
    线程 2130 已退出
    线程 8B44 已退出
    线程 8AD8 已退出
    线程 79E4 已退出
    线程 90E4 已退出
    线程 6460 已退出
    线程 91E4 已退出
    线程 25E0 已退出
    线程 4608 已退出
    线程 7AB8 已退出
    线程 79A0 已退出
    线程 1C50 已退出
    线程 4910 已退出
    线程 9174 已退出
    线程 8340 已退出
    线程 467C 已退出
    线程 19B4 已退出
    线程 4ADC 已退出
    线程 8D60 已退出
    线程 8FA0 已退出
    线程 3E0 已退出
    线程 2E3C 已退出
    线程 9304 已退出
    线程 7178 已退出
    线程 AE0 已退出
    线程 7FC 已退出
    线程 50FC 已退出
    进程已停止,退出码为 0x0 (0)正在将数据库保存于 E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32 16毫秒
    [sync] not synced
    调试结束!
    数据库文件: E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32
    [sync] debugging of file C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe started!
    正在从 E:\ScoopSpace\apps\x64dbg\current\release\x32\db\WeChatAppEx.exe.dd32 载入数据库 16毫秒
    进程已启动: 003C0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe
      "C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe" --log-level=2 --wechat-files-path="E:\WXFileRecv\WeChat Files\\" --product-id=1000 --wechat-sub-user-agent="MicroMessenger/7.0.20.1781(0x6700143B) WindowsWechat(0x6309001c)" --wmpf_extra_config="{ \"reportId\":-1, \"version\":6500 }" --web-translate --wmpf-mojo-handle=4276
      argv[0]: C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WeChatAppEx.exe
      argv[1]: --log-level=2
      argv[2]: --wechat-files-path=E:\WXFileRecv\WeChat Files\
      argv[3]: --product-id=1000
      argv[4]: --wechat-sub-user-agent=MicroMessenger/7.0.20.1781(0x6700143B) WindowsWechat(0x6309001c)
      argv[5]: --wmpf_extra_config={ "reportId":-1, "version":6500 }
      argv[6]: --web-translate
      argv[7]: --wmpf-mojo-handle=4276
    已设置硬件断点于 024F2223!
    已附加到进程!
    DLL已载入: 77A00000 C:\Windows\SysWOW64\ntdll.dll
    线程 8744 已启动,入口: ntdll.77A3F0D0
    线程 7940 已启动,入口: ntdll.77A3F0D0
    线程 554 已启动,入口: ntdll.77A3F0D0
    线程 929C 已启动,入口: ntdll.77A3F0D0
    线程 685C 已启动,入口: 7787F060
    线程 8E28 已启动,入口: wechatappex.030B1460
    线程 2458 已启动,入口: wechatappex.02554B90
    线程 88E0 已启动,入口: wechatappex.02554B90
    线程 2968 已启动,入口: wechatappex.02554B90
    线程 8864 已启动,入口: wechatappex.02554B90
    线程 78B0 已启动,入口: wechatappex.02554B90
    线程 35B8 已启动,入口: ntdll.77A3F0D0
    线程 398C 已启动,入口: ntdll.77A3F0D0
    线程 787C 已启动,入口: wechatappex.02554B90
    线程 917C 已启动,入口: wechatappex.02554B90
    线程 1F3C 已启动,入口: wechatappex.02554B90
    线程 87A0 已启动,入口: 769A61D0
    线程 91EC 已启动,入口: wechatappex.02554B90
    线程 7F7C 已启动,入口: wechatappex.02554B90
    线程 7C68 已启动,入口: wechatappex.02554B90
    线程 38A8 已启动,入口: wechatappex.02554B90
    线程 350C 已启动,入口: wechatappex.02554B90
    线程 9214 已启动,入口: wechatappex.02554B90
    线程 7A30 已启动,入口: wechatappex.02554B90
    线程 4DA4 已启动,入口: wechatappex.02554B90
    线程 4420 已启动,入口: wechatappex.02554B90
    线程 86DC 已启动,入口: wechatappex.02554B90
    线程 2854 已启动,入口: wechatappex.02554B90
    线程 8EF4 已启动,入口: wechatappex.02554B90
    线程 7424 已启动,入口: wechatappex.02554B90
    线程 8A58 已启动,入口: wechatappex.02554B90
    线程 89E0 已启动,入口: wechatappex.02554B90
    线程 79CC 已启动,入口: 637C59D0
    线程 92C0 已启动,入口: ntdll.77A3F0D0
    DLL已载入: 765C0000 C:\Windows\SysWOW64\kernel32.dll
    DLL已载入: 75B50000 C:\Windows\SysWOW64\KernelBase.dll
    DLL已载入: 77940000 C:\Windows\SysWOW64\comdlg32.dll
    DLL已载入: 775A0000 C:\Windows\SysWOW64\msvcp_win.dll
    DLL已载入: 64D40000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\ffmpeg.dll
    DLL已载入: 75790000 C:\Windows\SysWOW64\ucrtbase.dll
    DLL已载入: 76930000 C:\Windows\SysWOW64\combase.dll
    DLL已载入: 766C0000 C:\Windows\SysWOW64\rpcrt4.dll
    DLL已载入: 76BB0000 C:\Windows\SysWOW64\SHCore.dll
    DLL已载入: 76780000 C:\Windows\SysWOW64\user32.dll
    DLL已载入: 76EB0000 C:\Windows\SysWOW64\win32u.dll
    DLL已载入: 76FD0000 C:\Windows\SysWOW64\gdi32.dll
    DLL已载入: 77640000 C:\Windows\SysWOW64\gdi32full.dll
    DLL已载入: 75940000 C:\Windows\SysWOW64\shlwapi.dll
    DLL已载入: 76F00000 C:\Windows\SysWOW64\msvcrt.dll
    DLL已载入: 75F60000 C:\Windows\SysWOW64\shell32.dll
    DLL已载入: 75430000 C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.25295.1000_none_c0d4ad74d67dc7b0\comctl32.dll
    DLL已载入: 75DD0000 C:\Windows\SysWOW64\oleaut32.dll
    DLL已载入: 676D0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\dbghelp.dll
    DLL已载入: 75990000 C:\Windows\SysWOW64\ws2_32.dll
    DLL已载入: 77830000 C:\Windows\SysWOW64\crypt32.dll
    DLL已载入: 75660000 C:\Windows\SysWOW64\winmm.dll
    DLL已载入: 72C10000 C:\Windows\SysWOW64\propsys.dll
    DLL已载入: 76ED0000 C:\Windows\SysWOW64\imm32.dll
    DLL已载入: 75290000 C:\Windows\SysWOW64\IPHLPAPI.DLL
    DLL已载入: 75710000 C:\Windows\SysWOW64\normaliz.dll
    DLL已载入: 71860000 C:\Windows\SysWOW64\dxgi.dll
    DLL已载入: 71830000 C:\Windows\SysWOW64\dwmapi.dll
    DLL已载入: 73E40000 C:\Windows\SysWOW64\oleacc.dll
    DLL已载入: 747A0000 C:\Windows\SysWOW64\wtsapi32.dll
    DLL已载入: 70D00000 C:\Windows\SysWOW64\hid.dll
    DLL已载入: 74790000 C:\Windows\SysWOW64\version.dll
    DLL已载入: 6EA40000 C:\Windows\SysWOW64\UIAutomationCore.dll
    DLL已载入: 74090000 C:\Windows\SysWOW64\userenv.dll
    DLL已载入: 6FBD0000 C:\Windows\SysWOW64\DWrite.dll
    DLL已载入: 71A60000 C:\Windows\SysWOW64\uxtheme.dll
    DLL已载入: 751B0000 C:\Windows\SysWOW64\winhttp.dll
    DLL已载入: 74AA0000 C:\Windows\SysWOW64\msimg32.dll
    DLL已载入: 71750000 C:\Windows\SysWOW64\usp10.dll
    DLL已载入: 77510000 C:\Windows\SysWOW64\sechost.dll
    DLL已载入: 74A20000 C:\Windows\SysWOW64\winspool.drv
    DLL已载入: 70930000 C:\Windows\SysWOW64\d3d9.dll
    DLL已载入: 676B0000 C:\Windows\SysWOW64\dxva2.dll
    DLL已载入: 713D0000 C:\Windows\SysWOW64\urlmon.dll
    跳过了不支持的调试类型 IMAGE_DEBUG_TYPE_POGO (在模块wxamsdk.dll中)……
    在模块 wxamsdk.dll 中没有找到任何支持的调试类型!
    DLL已载入: 648A0000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\WXAMSDK.dll
    DLL已载入: 74360000 C:\Windows\SysWOW64\dhcpcsvc.dll
    DLL已载入: 751A0000 C:\Windows\SysWOW64\secur32.dll
    DLL已载入: 71190000 C:\Windows\SysWOW64\iertutil.dll
    DLL已载入: 717F0000 C:\Windows\SysWOW64\DXCore.dll
    DLL已载入: 74AB0000 C:\Windows\SysWOW64\sspicli.dll
    DLL已载入: 758C0000 C:\Windows\SysWOW64\advapi32.dll
    DLL已载入: 76C70000 C:\Windows\SysWOW64\bcryptprimitives.dll
    DLL已载入: 737F0000 C:\Windows\SysWOW64\cryptbase.dll
    DLL已载入: 71980000 C:\Windows\SysWOW64\powrprof.dll
    DLL已载入: 71970000 C:\Windows\SysWOW64\umpdc.dll
    DLL已载入: 67230000 C:\Users\Misty\AppData\Roaming\Tencent\WeChat\XPlugin\Plugins\RadiumWMPF\6500\extracted\runtime\ComponentVerification.dll
    DLL已载入: 75730000 C:\Windows\SysWOW64\wintrust.dll
    DLL已载入: 74580000 C:\Windows\SysWOW64\msasn1.dll
    DLL已载入: 74A00000 C:\Windows\SysWOW64\kernel.appcore.dll
    DLL已载入: 774F0000 C:\Windows\SysWOW64\imagehlp.dll
    DLL已载入: 71BB0000 C:\Windows\SysWOW64\cryptsp.dll
    DLL已载入: 71B70000 C:\Windows\SysWOW64\rsaenh.dll
    DLL已载入: 74AE0000 C:\Windows\SysWOW64\windows.storage.dll
    DLL已载入: 74740000 C:\Windows\SysWOW64\ntmarta.dll
    DLL已载入: 71F40000 C:\Windows\SysWOW64\bcrypt.dll
    DLL已载入: 71A10000 C:\Windows\SysWOW64\gpapi.dll
    DLL已载入: 719E0000 C:\Windows\SysWOW64\cryptnet.dll
    DLL已载入: 747C0000 C:\Windows\SysWOW64\profapi.dll
    DLL已载入: 719D0000 C:\Windows\SysWOW64\winnsi.dll
    DLL已载入: 75720000 C:\Windows\SysWOW64\nsi.dll
    DLL已载入: 75E70000 C:\Windows\SysWOW64\msctf.dll
    DLL已载入: 75A00000 C:\Windows\SysWOW64\ole32.dll
    DLL已载入: 74380000 C:\Windows\SysWOW64\nlansp_c.dll
    DLL已载入: 743A0000 C:\Windows\SysWOW64\dhcpcsvc6.dll
    DLL已载入: 74290000 C:\Windows\SysWOW64\dnsapi.dll
    DLL已载入: 777A0000 C:\Windows\SysWOW64\clbcatq.dll
    DLL已载入: 6E950000 C:\Windows\SysWOW64\TextInputFramework.dll
    DLL已载入: 646B0000 C:\Windows\SysWOW64\Windows.UI.dll
    DLL已载入: 74490000 C:\Windows\SysWOW64\winsta.dll
    DLL已载入: 668F0000 C:\Windows\SysWOW64\mscms.dll
    DLL已载入: 69B10000 C:\Windows\SysWOW64\icm32.dll
    DLL已载入: 66870000 C:\Windows\SysWOW64\MMDevAPI.dll
    DLL已载入: 71930000 C:\Windows\SysWOW64\devobj.dll
    DLL已载入: 72CE0000 C:\Windows\SysWOW64\cfgmgr32.dll
    DLL已载入: 70D30000 C:\Windows\SysWOW64\DataExchange.dll
    DLL已载入: 6ED90000 C:\Windows\SysWOW64\twinapi.appcore.dll
    DLL已载入: 64800000 C:\Windows\SysWOW64\twinapi.dll
    DLL已载入: 5A430000 C:\Windows\SysWOW64\OneCoreUAPCommonProxyStub.dll
    DLL已载入: 72D20000 C:\Windows\SysWOW64\atlthunk.dll
    DLL已载入: 637A0000 C:\Windows\SysWOW64\directmanipulation.dll
    DLL已载入: 73AD0000 C:\Windows\SysWOW64\CoreMessaging.dll
    DLL已载入: 67800000 C:\Windows\SysWOW64\CoreUIComponents.dll
    DLL已载入: 71610000 C:\Windows\SysWOW64\WinTypes.dll
    DLL已载入: 52B40000 C:\Windows\SysWOW64\AudioSes.dll
    DLL已载入: 54880000 C:\Windows\SysWOW64\ResourcePolicyClient.dll
    DLL已载入: 67670000 C:\Windows\SysWOW64\avrt.dll
    "[I][02-12 07:49:15.147][35100,2964][applet_runtime_manager.cc(551)] LaunchApplet init_config.productId 1000; GetProductId() = 1000\n"
    "[I][02-12 07:49:15.165][35100,2964][applet_runtime_manager.cc(617)] AppletRuntimeManager::LaunchApplet USE PRELOAD runtime wx7a59aadcb728eca4\n"
    "[I][02-12 07:49:15.182][35100,2964][mini_program_service_host.cc(80)] MiniProgramServiceHost::~MiniProgramServiceHost this = 5F4900C0; worker_url_ = https://servicewechat.com/preload-6/6/index.js\n"
    "[I][02-12 07:49:15.200][35100,2964][shared_worker_service_impl.cc(453)] SharedWorkerServiceImpl::WmpfDestroyWorker https://servicewechat.com/preload-6/6/index.js\n"
    "[I][02-12 07:49:15.215][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-6; worker_url = https://servicewechat.com/preload-6/6/index.js\n"
    "[E][02-12 07:49:15.229][35100,2964][shared_worker_host.cc(183)] Ignore SendReportsAndRemoveSource in system shutDown process or minigameRuntime,appid:wx7a59aadcb728eca4\n"
    "[I][02-12 07:49:15.244][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5F76EA60; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:49:15.259][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 5F48F6C0\n"
    "[I][02-12 07:49:15.275][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:49:15.290][35100,2964][tab_wrapper.cc(266)]  NavigationController:5F8DA5E0\n"
    "[I][02-12 07:49:15.305][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:5F48F6C0 this:5F8DA5E0\n"
    "[I][02-12 07:49:15.320][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:49:15.334][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:5F48F6C0\n"
    "[I][02-12 07:49:15.349][35100,2964][applet_page.cc(80)] AppletPage::~AppletPage() this = 6071EE40; is_page_closed_ = 0\n"
    "[I][02-12 07:49:15.363][35100,2964][applet_page.cc(93)] AppletPage::closePage() this = 6071EE40; pinus_webview_ = 1; html_webview_ = 0\n"
    "[I][02-12 07:49:15.377][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5FEEE4F0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:49:15.391][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 5F48B8E0\n"
    "[I][02-12 07:49:15.404][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:49:15.418][35100,2964][tab_wrapper.cc(266)]  NavigationController:5F8D8F10\n"
    "[I][02-12 07:49:15.433][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:5F48B8E0 this:5F8D8F10\n"
    "[I][02-12 07:49:15.450][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:49:15.466][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:5F48B8E0\n"
    "[I][02-12 07:49:15.484][35100,2964][performance_info.cc(61)] [Perf] start_time = 1676159355485\n"
    "[I][02-12 07:49:15.499][35100,2964][applet_package.cc(497)] initPublicInfoPath, current version = 827; new_publicVer = 318; filePath = E:\\WXFileRecv\\WeChat Files\\Applet\\publicLib\\318\\clientPublicLib.wxapkg\n"
    "[I][02-12 07:49:15.513][35100,2964][applet_package.cc(515)] AppletPackage::loadPublicLibWxpkg public_lib_path_ = \n"
    "[I][02-12 07:49:15.528][35100,2964][applet_package.cc(518)] AppletPackage::loadPublicLibWxpkg init PublicLib Path Not Exists\n"
    "[I][02-12 07:49:15.548][35100,2964][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 5F409E80\n"
    "[I][02-12 07:49:15.585][35100,2964][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:49:15.601][35100,2964][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg\n"
    "[I][02-12 07:49:15.644][35100,2964][applet_package.cc(185)] parsePkgFileContent correctMd5 = b1f95a71311d11f09dcfe1a4cd88a56a; current_md5 = b1f95a71311d11f09dcfe1a4cd88a56a; pgk_file_path = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg; moduleName = __APP__\n"
    "[I][02-12 07:49:15.659][35100,2964][applet_package.cc(191)] Need check md5\n"
    "[I][02-12 07:49:15.679][35100,2964][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 1\n"
    "[I][02-12 07:49:15.694][35100,2964][applet_config.cc(280)] MiniProgramServiceHost::GetConfig is_lazy_load_ = 0\n"
    "[I][02-12 07:49:15.710][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:49:15.828][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:49:15.863][35100,2964][applet_runtime_manager.cc(635)] LaunchApplet preload_applet_runtime_ = 0 ; g_EnablePreload = 1; pending_preload_runtime_ = 0\n"
    "[I][02-12 07:49:15.905][35100,14732][sandbox_rule_delegate.cc(84)] AddFileSystemRule. dataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\n AddFileSystemRule. shareddataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\shared\n"
    "[E][02-12 07:49:16.740][35100,2964][kv_storage_manager.cc(78)] KVStorageMgr::chooseStorage invalid storageid = 3\n"
    "[I][02-12 07:49:16.785][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:49:16.807][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:49:16.826][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js; path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:49:16.853][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:49:16.967][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/game.js\n"
    "[I][02-12 07:49:16.981][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /game.js\n"
    "[I][02-12 07:49:16.996][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/game.js; path = /game.js\n"
    "[I][02-12 07:49:17.012][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/game.js\n"
    "[I][02-12 07:49:17.352][35100,2964][CONSOLE(1)] \"Unhandled promise rejection undefined\", source: https://servicewechat.com/__dev__/WAGame.js (1)\n"
    "[I][02-12 07:49:17.439][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:49:17.459][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:49:17.476][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:49:17.492][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:49:17.508][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 6\n"
    "[I][02-12 07:49:17.589][35100,2964][applet_runtime.cc(497)] OnFirstPageReady IsEnableCodeCache = 1\n"
    "[I][02-12 07:49:17.609][35100,2964][performance_info.cc(67)] [Perf] OnFirstPageReady ms = 2124\n"
    "[I][02-12 07:49:17.632][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:49:17.651][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:49:17.669][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg; path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:49:17.685][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e\n"
    "[I][02-12 07:49:17.700][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54efe6b\n"
    "[I][02-12 07:49:17.714][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54e\n"
    "[I][02-12 07:49:17.729][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:17.743][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:17.776][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:49:17.794][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:49:17.811][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac.png; path = /res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:49:17.830][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac\n"
    "[I][02-12 07:49:17.847][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:49:17.864][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:49:17.878][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:49:17.894][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:49:17.911][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:49:17.923][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df.wav; path = /res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:49:17.937][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df\n"
    "[I][02-12 07:49:17.950][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/data/meta-571312daeb.json\n"
    "[I][02-12 07:49:17.964][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/data/meta-571312daeb.json\n"
    "[I][02-12 07:49:18.000][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:49:18.017][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:49:18.032][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:49:18.045][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:49:18.058][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:18.075][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:18.100][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGameSubContext.js\n"
    "[I][02-12 07:49:18.119][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = d793642b8b39a2bef6c18718bdbceb6d-6500-WAGameSubContext.js.cachedata\n"
    "[I][02-12 07:49:18.177][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/subContext.js\n"
    "[I][02-12 07:49:18.195][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /subContext.js\n"
    "[I][02-12 07:49:18.211][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/subContext.js; path = /subContext.js\n"
    线程 685C 已退出
    "[I][02-12 07:49:18.225][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/subContext.js\n"
    "[I][02-12 07:49:18.324][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:49:18.343][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:49:18.362][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781bc6f.png; path = /res/ui/StartMenu_atlas0-914781bc6f.png\n"
    ???
    线程 8A84 已启动,入口: wechatappex.02554B90
    SetThreadName(8A84, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 60CEEA60
    ExceptionInformation[02]: 00008A84
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:49:21.271][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png\n"
    线程 8AE8 已启动,入口: ntdll.77A3F0D0
    "[I][02-12 07:49:21.288][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /sub/img/mainfont.png\n"
    "[I][02-12 07:49:21.306][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png; path = /sub/img/mainfont.png\n"
    "[I][02-12 07:49:21.320][35100,2964][applet_runtime.cc(99)] AppletRuntime::AppletRuntime app_id_ = \n"
    "[I][02-12 07:49:21.334][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png\n"
    "[I][02-12 07:49:21.349][35100,2964][applet_runtime.cc(401)] AppletRuntime::InitSiteInstance render_client_id_ = 8\n"
    "[I][02-12 07:49:21.363][35100,2964][applet_runtime.cc(697)] AppletRuntime::StartPreload this = 5F889180; app_id = preload-8\n"
    "[I][02-12 07:49:21.375][35100,2964][applet_runtime.cc(459)] ShowAppletWindow app_id_ = preload-8; for_preload = 1; is_minigame = 0\n"
    "[I][02-12 07:49:21.390][35100,2964][mini_program_service_host.cc(68)] MiniProgramServiceHost::MiniProgramServiceHost THIS = 5F48EFE0; IsPreloadRuntime = 1; is_wait_download_ = 0\n"
    "[I][02-12 07:49:21.404][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:49:21.419][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:6076D2C0,webview_type:3,initial_size:0x0\n"
    "[I][02-12 07:49:21.433][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:6076D2C0 this:5F766130\n"
    "[I][02-12 07:49:21.447][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 6076D2C0\n"
    "[I][02-12 07:49:21.483][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:49:21.500][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:60772720,webview_type:5,initial_size:139x56\n"
    "[I][02-12 07:49:21.518][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:60772720 this:60E0DC40\n"
    "[I][02-12 07:49:21.533][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60772720\n"
    线程 8864 已退出
    "[I][02-12 07:49:21.554][35100,2964][mini_program_service_host.cc(772)] [Perf] MiniProgramServiceHost::OnAfterCreated time = 1676159361554\n"
    "[I][02-12 07:49:21.566][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-8/8/page-frame.html\n"
    "[I][02-12 07:49:21.566][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-8/8/page-frame.html\n"
    "[I][02-12 07:49:21.596][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/configInfo?udid=71683224-8126-5b97-b21c-6f34fc46\n"
    "[I][02-12 07:49:21.609][35100,2964][render_process_host_impl.cc(1751)] Init, renderer_path = C:\\Users\\Misty\\AppData\\Roaming\\Tencent\\WeChat\\XPlugin\\Plugins\\RadiumWMPF\\6500\\extracted\\runtime\\WeChatAppEx.exe\n"
    "[I][02-12 07:49:21.624][35100,2964][content_browser_client_impl.cc(1173)] ExposeInterfacesToRenderer render_process_host = 8\n"
    "[I][02-12 07:49:21.638][35100,14504][sandbox_win.cc(1233)] StartSandboxedProcess:renderer\n"
    "[I][02-12 07:49:21.653][35100,14504][sandbox_rule_delegate.cc(39)] SetInitialRules Done.\n"
    "[I][02-12 07:49:21.668][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:49:21.683][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-8/8/page-frame.html\n"
    "[I][02-12 07:49:21.696][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 1; url = https://servicewechat.com/preload-8/8/page-frame.html\n"
    "[I][02-12 07:49:21.712][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-8/8/page-frame.html\n"
    "[I][02-12 07:49:21.733][35100,14504][sandbox_win.cc(1259)] SpawnTarget start\n"
    ???
    "[I][02-12 07:49:21.780][35100,14504][sandbox_rule_delegate.cc(51)] BeforePolicyDone process_id:17820\n"
    "[I][02-12 07:49:21.798][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:49:21.813][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-8/8/index.html\n"
    "[I][02-12 07:49:21.828][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.html\n"
    "[I][02-12 07:49:21.845][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-8/8/index.html\n"
    "[I][02-12 07:49:21.864][35100,14504][sandbox_win.cc(1273)] SpawnTarget end\n"
    "[I][02-12 07:49:21.883][35100,14504][child_process_launcher_helper_win.cc(79)] LaunchProcessOnLauncherThread launch_result = 0\n"
    "[I][02-12 07:49:21.908][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    ???
    "[I][02-12 07:49:21.972][35100,30844][content_browser_client_impl.cc(1231)] <xlogger::mojom::XLogger> receiver \n"
    "[I][02-12 07:49:21.991][35100,30844][xlogger.cc(157)] XLoggerImpl::XLoggerImpl 60D29A90\n"
    ???
    "[I][02-12 07:49:22.024][35100,2964][applet_runtime.cc(640)] BindMiniProgramRuntimeHost mini_program_host_ = 0\n"
    ???
    ???
    "[I][02-12 07:49:22.072][35100,2964][mini_game_runtime_host.cc(23)] MiniGameRuntimeHost::MiniGameRuntimeHost this = 60DD5040\n"
    ???
    "[I][02-12 07:49:22.106][35100,2964][mini_program_runtime_host.cc(176)] MiniProgramRuntimeHost::Acquire render_client_id_ = 8\n"
    "[I][02-12 07:49:22.124][35100,2964][mini_game_runtime_host.cc(55)] MiniGameRuntimeHost::Acquire render_client_id_ = 8\n"
    ???
    ???
    ???
    "[I][02-12 07:49:22.202][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    "[I][02-12 07:49:22.218][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:49:22.234][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:49:22.252][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-8/8/index.js\n"
    ???
    "[I][02-12 07:49:22.286][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=0\n"
    ???
    "[I][02-12 07:49:22.321][35100,2964][shared_worker_connector_impl.cc(93)] SharedWorkerConnectorImpl::XWebWorkerConnect url = https://servicewechat.com/preload-8/8/page-frame.html; webview_id = 1000000; render_id = 8\n"
    "[I][02-12 07:49:22.338][35100,2964][shared_worker_connector_impl.cc(119)] SharedWorkerConnectorImpl::XWebWorkerConnect app_id = preload-8; worker = https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:49:22.357][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-8; worker_url = https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:49:22.375][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/index.js\n"
    ???
    ???
    ???
    "[I][02-12 07:49:22.444][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/index.js\n"
    "[E][02-12 07:49:22.570][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    ???
    "[I][02-12 07:49:22.637][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAServiceMainContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:49:22.653][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:49:22.669][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    ???
    "[I][02-12 07:49:22.698][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:49:22.725][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    "[I][02-12 07:49:22.745][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    ???
    "[I][02-12 07:49:22.779][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:49:22.796][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 0bd99d339fa167d5f6f284f745bda31b-6500-WAServiceMainContext.js.cachedata\n"
    "[I][02-12 07:49:22.820][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGame.js\n"
    ???
    "[I][02-12 07:49:22.862][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGame.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:49:22.880][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:49:22.900][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGame.js\n"
    ???
    "[I][02-12 07:49:23.032][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:23.050][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:23.066][35100,2964][mini_program_service_host.cc(424)] ReadFileSync; path = WASubContext.js; type = lib\n"
    "[I][02-12 07:49:23.084][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WASubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:49:23.100][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WASubContext.js\n"
    "[I][02-12 07:49:23.118][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas0-423f62e5bc.png\n"
    "[I][02-12 07:49:23.138][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas0-423f62e5bc.png\n"
    "[I][02-12 07:49:23.168][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas0-423f62e5bc.png; path = /res/ui/WorldMap_atlas0-423f62e5bc.png\n"
    "[I][02-12 07:49:23.184][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas0-423f62e5\n"
    "[I][02-12 07:49:23.199][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tinusl3-2c9139cd0f.png\n"
    "[I][02-12 07:49:23.214][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas_tinusl3-2c9139cd0f.png\n"
    ???
    "[I][02-12 07:49:23.247][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tinusl3-2\n"
    "[I][02-12 07:49:23.265][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_ihp2sl6-c1bd81d129.png\n"
    "[I][02-12 07:49:23.282][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas_ihp2sl6-c1bd81d129.png\n"
    ???
    ???
    "[I][02-12 07:49:23.335][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:49:23.355][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:49:23.371][35100,2964][minigame_container.cc(583)] MinigameContainer OnGameEngineReady\n"
    "[I][02-12 07:49:23.388][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:49:23.403][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:49:23.418][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 5a4d234fa3e562e8930459a3fd7a6e4f-6500-WASubContext.js.cachedata\n"
    "[I][02-12 07:49:23.432][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg\n"
    "[I][02-12 07:49:23.448][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg\n"
    "[I][02-12 07:49:23.461][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg; path = /res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg\n"
    ???
    "[I][02-12 07:49:23.492][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064713_6ef.png\n"
    "[I][02-12 07:49:23.510][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064713_6ef.png\n"
    "[I][02-12 07:49:23.535][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/IconHead-4a5a786999.bin\n"
    ???
    "[I][02-12 07:49:23.566][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    "[I][02-12 07:49:23.580][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/IconTravel-f9ad06ff80.bin\n"
    ???
    "[I][02-12 07:49:23.613][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    ???
    "[I][02-12 07:49:23.634][35100,2964][mini_program_service_host.cc(486)] MiniProgramServiceHost::OnAppEngineReady is_app_service_ready_ = 0; IsPreloadRuntime =1; is_wait_download_ = 0\n"
    "[I][02-12 07:49:23.655][35100,2964][performance_info.cc(38)] [Perf] app_service_ready_time_ = 1676159363655\n"
    "[I][02-12 07:49:23.668][35100,2964][applet_page_container.cc(520)] PreloadNextAppletPage isFrameSet = 0; processPreload = 1\n"
    "[I][02-12 07:49:23.683][35100,2964][applet_page.cc(64)] AppletPage::AppletPage() applet_controller_ = 5F7C6A80; contents_view_ = 5F4FB680; is_preload_ = 1; is_preload_process_ = 1; this = 60F99340; ComponentId = 9\n"
    "[I][02-12 07:49:23.696][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:49:23.710][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:60773BC0,webview_type:4,initial_size:138x56\n"
    "[I][02-12 07:49:23.726][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:60773BC0 this:60EB9D60\n"
    "[I][02-12 07:49:23.740][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60773BC0\n"
    "[I][02-12 07:49:23.755][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-8/8/page-frame.html\n"
    "[I][02-12 07:49:23.775][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:49:23.791][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    ???
    "[I][02-12 07:49:23.824][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    "[I][02-12 07:49:23.843][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:49:23.863][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:49:23.884][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    ???
    "[I][02-12 07:49:23.917][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064687_8e3.png\n"
    "[I][02-12 07:49:23.934][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    ???
    "[I][02-12 07:49:23.963][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-8/8/page-frame.html\n"
    ???
    "[I][02-12 07:49:23.993][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206466b_69a.png\n"
    "[I][02-12 07:49:24.011][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206466b_69a.png\n"
    "[I][02-12 07:49:24.025][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206468d_053.png\n"
    "[I][02-12 07:49:24.039][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206468d_053.png\n"
    "[I][02-12 07:49:24.056][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    "[I][02-12 07:49:24.074][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGameSubContext.js\n"
    "[I][02-12 07:49:24.096][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = d793642b8b39a2bef6c18718bdbceb6d-6500-WAGameSubContext.js.cachedata\n"
    ???
    ???
    "[I][02-12 07:49:24.157][35100,2964][applet_page.cc(129)] AppletPage::init APPID = preload-8; time = 1676159364157\n"
    ???
    ???
    "[I][02-12 07:49:24.243][35100,2964][shared_worker_connector_impl.cc(93)] SharedWorkerConnectorImpl::XWebWorkerConnect url = https://servicewechat.com/preload-8/8/page-frame.html; webview_id = 9; render_id = 8\n"
    "[I][02-12 07:49:24.262][35100,2964][shared_worker_connector_impl.cc(119)] SharedWorkerConnectorImpl::XWebWorkerConnect app_id = preload-8; worker = https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:49:24.281][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-8; worker_url = https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:49:24.300][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAWebview.js\n"
    "[I][02-12 07:49:24.354][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f2615d5feef3c2d84f669661782764ef-6500-WAWebview.js.cachedata\n"
    "[I][02-12 07:49:24.749][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/186420649b4_743.png\n"
    ???
    "[I][02-12 07:49:24.791][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/186420649b8_e65.png\n"
    "[I][02-12 07:49:24.812][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/186420649b8_e65.png\n"
    "[I][02-12 07:49:24.831][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206499b_8d8.png\n"
    "[I][02-12 07:49:24.849][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206499b_8d8.png\n"
    "[I][02-12 07:49:24.866][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/186420649a0_2fa.png\n"
    "[I][02-12 07:49:24.881][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/186420649a0_2fa.png\n"
    "[I][02-12 07:49:24.897][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064994_01d.png\n"
    ???
    "[I][02-12 07:49:24.972][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ab2_878.mp3\n"
    "[I][02-12 07:49:24.988][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064ab2_878.mp3\n"
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    ???
    "[I][02-12 07:49:25.263][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/time.png\n"
    ???
    ???
    "[I][02-12 07:49:25.315][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/muted_icon.png\n"
    ???
    "[I][02-12 07:49:25.346][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/109/20204/snsvideodownload?m=a5af9b5364f6e9596673\n"
    "[I][02-12 07:49:25.363][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://mmbiz.qpic.cn/mmbiz_png/icTdbqWNOwNTTiaKet81gQJAic1IGjzG9g458d7DpIe8URUq74t0dicbwKKc69rPBf8hiby1llOBTndbKUq2NTA9YaA/0?wx_fmt=png\n"
    "[I][02-12 07:49:25.376][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://mmbiz.qpic.cn/mmbiz_png/icTdbqWNOwNTTiaKet81gQJAic1IGjzG9g458d7DpIe8URUq7\n"
    ???
    ???
    ???
    ???
    ???
    "[I][02-12 07:49:25.461][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/dropdown-arrow-white.png\n"
    ???
    "[I][02-12 07:49:25.489][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/dropdown-arrow-black.png\n"
    ???
    "[I][02-12 07:49:25.519][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:49:25.535][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a24_3c9.png\n"
    "[I][02-12 07:49:25.551][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a24_3c9.png\n"
    "[I][02-12 07:49:25.566][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a1c_aea.png\n"
    "[I][02-12 07:49:25.579][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a1c_aea.png\n"
    "[I][02-12 07:49:25.595][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a1f_bff.png\n"
    ???
    "[I][02-12 07:49:25.681][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a3a_997.png\n"
    "[I][02-12 07:49:25.699][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a3a_997.png\n"
    "[I][02-12 07:49:25.751][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a3f_c68.png\n"
    "[I][02-12 07:49:25.769][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a3f_c68.png\n"
    "[I][02-12 07:49:25.786][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a76_84b.png\n"
    "[I][02-12 07:49:25.801][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a76_84b.png\n"
    线程 9080 已启动,入口: wechatappex.02554B90
    SetThreadName(9080, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 5FEC6600
    ExceptionInformation[02]: 00009080
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:49:26.472][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a71_79f.png\n"
    "[I][02-12 07:49:26.490][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a71_79f.png\n"
    "[I][02-12 07:49:26.504][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a79_0c2.png\n"
    "[I][02-12 07:49:26.520][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a79_0c2.png\n"
    "[I][02-12 07:49:26.538][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637b2949000150ab011147cc898a970b0000008d00004eec?m=6e0c671d5c965b42afab2053f59ff168&ck=6e0c671d5c965b42afab2053f59ff168&sha256=4b61b590cd186aa3ceec1704e8a339586ae09cdedf0063586fe10d2271538300\n"
    "[I][02-12 07:49:26.555][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637b2949000\n"
    "[I][02-12 07:49:26.570][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wx.qlogo.cn/mmhead/Q3auHgzwzM5QM4icHicsqiaib4GOsPbqHvibW4hSYPGF1uctFpG1vUHQ4XQ/0\n"
    "[I][02-12 07:49:26.585][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wx.qlogo.cn/mmhead/Q3auHgzwzM5QM4icHicsqiaib4GOsPbqHvibW4hSYPGF1uctFpG1vU\n"
    "[I][02-12 07:49:26.601][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/109/20204/snsvideodownload?m=f8ba19ac709edca00138c47585de39be&filekey=3033020101041f301d02016d040253480410f8ba19ac709edca00138c47585de39be020202d1040d00000004627466730000000131&hy=SH&storeid=32303138313031303133353430323030303461363337313336666664393336663561333230613030303030303664&bizid=1023\n"
    "[I][02-12 07:49:26.618][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/109/20204/snsvideodownload?m=f8ba19ac709edca00138\n"
    "[I][02-12 07:49:26.631][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af7d7000421df25c2c9cfadc4b50b0000008d00004eec?m=54cc71875b76ab51a437017fbde75c24&ck=54cc71875b76ab51a437017fbde75c24&sha256=ffa14e7d07e792b248c540c6c43a9a1af8e47314a9f7d339938ac388f7b7f3d5\n"
    "[I][02-12 07:49:26.646][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af7d70004\n"
    "[I][02-12 07:49:26.659][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8cb000bbc0b138436f5da98910b0000008d00004eec?m=f7219cf7862970fff12ed49ab12f8a64&ck=f7219cf7862970fff12ed49ab12f8a64&sha256=22741ffff52593f9fb1de6a4e6ee0ad5f1931db1eba4cdc66234b65c0a5c9dc5\n"
    "[I][02-12 07:49:26.676][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8cb000b\n"
    "[I][02-12 07:49:26.693][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8c30000c9b10597fb957589970b0000008d00004eec?m=0a9be3258d7f8229dcf73567733f877a&ck=0a9be3258d7f8229dcf73567733f877a&sha256=f3e49de57b4b55363955dad37f29cd8211dfc61524b36e60fff3b5fc42e71c5b\n"
    "[I][02-12 07:49:26.711][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8c30000\n"
    "[I][02-12 07:49:26.729][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8ed0009a3fb259346d46c80970b0000008d00004eec?m=1136e7bc00567ebe849a7d0ba29f9a3c&ck=1136e7bc00567ebe849a7d0ba29f9a3c&sha256=eefe0b3df74c3b637f9c33c595d6bdb8795ead6efa3abb5f5f1f42963b95e655\n"
    "[I][02-12 07:49:26.746][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8ed0009\n"
    "[I][02-12 07:49:26.765][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b53g4ewkaajuqae243sczrrgnyemu3qszka.f102002.mp4?dis_k=fd4ff2e996bb33fd274aab0a90e0e812&dis_t=1669015880&sha256=53cc57c6194edcd8e01138073ffa660a7f5896d6d84b8b3779e743dadf248525&m=638f640c72bdee85e22397f32bf180e1\n"
    ???
    "[I][02-12 07:49:26.801][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a84_1b2.png\n"
    "[I][02-12 07:49:26.818][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a84_1b2.png\n"
    "[I][02-12 07:49:26.836][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a81_e7f.png\n"
    "[I][02-12 07:49:26.854][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a81_e7f.png\n"
    "[I][02-12 07:49:26.870][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064abe_4ae.png\n"
    DLL已载入: 63720000 C:\Windows\SysWOW64\Windows.Media.MediaControl.dll
    "[I][02-12 07:49:26.887][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064abe_4ae.png\n"
    "[I][02-12 07:49:26.905][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    ???
    "[I][02-12 07:49:26.940][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ac5_799.png\n"
    "[I][02-12 07:49:26.957][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064ac5_799.png\n"
    线程 92B0 已启动,入口: shcore.76BE1A80
    "[I][02-12 07:49:26.973][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ac1_6bf.png\n"
    "[I][02-12 07:49:26.988][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064ac1_6bf.png\n"
    "[I][02-12 07:49:27.002][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ad6_5a5.png\n"
    "[I][02-12 07:49:27.017][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064ad6_5a5.png\n"
    "[I][02-12 07:49:27.033][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064acc_a4b.png\n"
    线程 82A4 已启动,入口: shcore.76BE1A80
    ???
    "[I][02-12 07:49:27.073][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b2d_553.png\n"
    ???
    线程 A50 已启动,入口: ntdll.77A3F0D0
    "[I][02-12 07:49:27.136][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b30_2d9.png\n"
    "[I][02-12 07:49:27.156][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b30_2d9.png\n"
    "[I][02-12 07:49:27.176][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b33_c26.png\n"
    "[I][02-12 07:49:27.195][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b33_c26.png\n"
    "[I][02-12 07:49:27.211][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b36_42d.png\n"
    ???
    "[I][02-12 07:49:27.245][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b53_986.png\n"
    ???
    "[I][02-12 07:49:27.278][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b62_7c2.png\n"
    ???
    "[I][02-12 07:49:27.307][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    ???
    "[I][02-12 07:49:27.387][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b6a_9aa.png\n"
    ???
    "[I][02-12 07:49:27.427][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b6f_1ce.png\n"
    ???
    "[I][02-12 07:49:27.458][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b75_cf9.png\n"
    ???
    "[I][02-12 07:49:27.490][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b7c_bb5.png\n"
    ???
    "[I][02-12 07:49:27.521][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ba1_575.png\n"
    ???
    "[I][02-12 07:49:27.554][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    ???
    "[I][02-12 07:49:27.594][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bbd_d8f.png\n"
    "[I][02-12 07:49:27.614][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bbd_d8f.png\n"
    "[I][02-12 07:49:27.628][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bc2_e58.png\n"
    "[I][02-12 07:49:27.645][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bc2_e58.png\n"
    "[I][02-12 07:49:27.660][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bc9_dd9.png\n"
    "[I][02-12 07:49:27.675][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bc9_dd9.png\n"
    "[I][02-12 07:49:27.690][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bcd_084.png\n"
    "[I][02-12 07:49:27.708][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bcd_084.png\n"
    "[I][02-12 07:49:27.727][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bfd_887.png\n"
    "[I][02-12 07:49:27.745][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bfd_887.png\n"
    "[I][02-12 07:49:27.761][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx04fhzrhexbbvsk\n"
    "[I][02-12 07:49:27.779][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx04fhzrhexbbvsk\n"
    "[I][02-12 07:49:27.820][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:49:27.838][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:49:27.940][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:49:27.956][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    线程 7414 已启动,入口: crypt32.7787F060
    "[I][02-12 07:49:28.042][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/ShopActTime-c15acec15c.bin\n"
    "[I][02-12 07:49:28.059][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/ShopActTime-c15acec15c.bin\n"
    "[I][02-12 07:49:28.083][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864228d828_de7.png\n"
    "[I][02-12 07:49:28.102][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864228d828_de7.png\n"
    "[I][02-12 07:49:28.204][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:49:28.221][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    线程 8A84 已退出
    "[I][02-12 07:49:29.227][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001009-9cd0dbb1d6.sk\n"
    "[I][02-12 07:49:29.244][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001009-9cd0dbb1d6.sk\n"
    "[I][02-12 07:49:29.276][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206692e_7eb.png\n"
    "[I][02-12 07:49:29.293][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206692e_7eb.png\n"
    "[I][02-12 07:49:30.777][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637f38650004021215e04b345fc4b50b0000008d00004eec?m=57887801074c2bceeca473ca3c20857d&ck=57887801074c2bceeca473ca3c20857d&sha256=1b7bda30a80f1de7a8c222de2f19981a4059a8dad3938bc466e7dfe59acb6a62\n"
    "[I][02-12 07:49:30.803][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637f3865000\n"
    "[I][02-12 07:49:30.825][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b53paaaaaaazeadjod7qnrru6aeab4aaaca.f124000.mp4?dis_k=10028d1a280c8d6ab9840afb6cf7de80&dis_t=1669281892&sha256=6e3bab4fb003125bcd0cd558cc9aed1599ae289c8afffa74eb26c4432dd43d07&m=3a98e7310e3d8ad7d8309e086e777a4e\n"
    "[I][02-12 07:49:30.847][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b\n"
    线程 350C 已退出
    "[I][02-12 07:49:32.772][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx0pj2nffgi7uas2\n"
    "[I][02-12 07:49:32.793][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx0pj2nffgi7uas2\n"
    线程 1B2C 已启动,入口: wechatappex.02554B90
    SetThreadName(1B2C, "ThreadPoolBackgroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 613C8800
    ExceptionInformation[02]: 00001B2C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:49:33.961][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/131/20204/snssvpdownload/SH/reserved/ads_svp_video__0b53iqdnkaagzyabnupcbnrryrae2vcanvka.f1124003_0.jpeg?dis_k=dde166a71009a3e0e1c95927ae557535&dis_t=1675936962&sha256=7a99eac625b1992127567a42896045fdd30e72a8552e8b261aad880c8b82c7bb&ck=6d39aba9c128912478722ee6afe7a220&m=6d39aba9c128912478722ee6afe7a220\n"
    "[I][02-12 07:49:33.985][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/131/20204/snssvpdownload/SH/reserved/ads_svp_vid\n"
    "[I][02-12 07:49:34.010][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/63e4c47e0000cf0c0531d3749685970b0000008d00004eec?m=dbb2202a9bfefbd922bbaf2b686dab24&ck=dbb2202a9bfefbd922bbaf2b686dab24&sha256=592a7a655276731fae20321a252ba2e29e3e7679d178a74398cef6be1fecf670\n"
    "[I][02-12 07:49:34.033][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/63e4c47e000\n"
    "[I][02-12 07:49:34.056][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wx.qlogo.cn/mmhead/Q3auHgzwzM4OrUia6GObHuDw1GDr0zftQRDHtr9C1DM5yS6Nf3hp1mw/0\n"
    "[I][02-12 07:49:34.075][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wx.qlogo.cn/mmhead/Q3auHgzwzM4OrUia6GObHuDw1GDr0zftQRDHtr9C1DM5yS6Nf3hp1m\n"
    "[I][02-12 07:49:34.095][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b53dydigaagsqaebahclzrryhqeqmpana2a.f124003.mp4?dis_k=e5ae13852b4b62eb9e3df7e1fae257eb&dis_t=1675937001&sha256=5ede903a51e88039344d56ddc105cfdd42645ba3d5d1952369a83fe4e9e8e124&m=2dba78b49504b0144fceeebfa11c3074\n"
    "[I][02-12 07:49:34.112][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b\n"
    "[I][02-12 07:49:34.214][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001013-81b57bca11.sk\n"
    "[I][02-12 07:49:34.236][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001013-81b57bca11.sk\n"
    "[I][02-12 07:49:35.956][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx0azfquwwbieei6\n"
    "[I][02-12 07:49:35.975][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx0azfquwwbieei6\n"
    "[I][02-12 07:49:39.212][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001008-425b355fa7.sk\n"
    "[I][02-12 07:49:39.229][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001008-425b355fa7.sk\n"
    "[I][02-12 07:49:44.208][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001002-fb8ceac2dc.sk\n"
    "[I][02-12 07:49:44.228][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001002-fb8ceac2dc.sk\n"
    线程 2854 已退出
    线程 82A4 已退出
    线程 92B0 已退出
    线程 7414 已退出
    线程 91EC 已退出
    线程 7F7C 已退出
    线程 1B2C 已退出
    线程 7CCC 已启动,入口: shcore.76BE1A80
    线程 15E0 已启动,入口: ntdll.77A3F0D0
    线程 1E34 已启动,入口: ntdll.77A3F0D0
    线程 23D4 已启动,入口: ntdll.77A3F0D0
    线程 8940 已启动,入口: shcore.76BE1A80
    线程 9210 已启动,入口: ntdll.77A3F0D0
    线程 4790 已启动,入口: ntdll.77A3F0D0
    线程 27E4 已启动,入口: ntdll.77A3F0D0
    线程 1244 已启动,入口: ntdll.77A3F0D0
    线程 827C 已启动,入口: ntdll.77A3F0D0
    线程 8410 已启动,入口: ntdll.77A3F0D0
    线程 86CC 已启动,入口: ntdll.77A3F0D0
    线程 7FEC 已启动,入口: ntdll.77A3F0D0
    线程 9234 已启动,入口: ntdll.77A3F0D0
    线程 7C68 已退出
    "[I][02-12 07:50:34.489][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:50:34.515][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:50:34.538][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:50:34.563][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:50:34.601][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:50:34.624][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:50:34.903][35100,2964][applet_runtime_manager.cc(321)] AppletRuntimeManager::DestoryAppletRuntime app_id = wx7a59aadcb728eca4\n"
    "[I][02-12 07:50:34.926][35100,2964][applet_runtime.cc(104)] AppletRuntime::~AppletRuntime app_id_ = wx7a59aadcb728eca4\n"
    "[I][02-12 07:50:34.948][35100,2964][xfile_host_mgr.cc(287)] XFileHostMgr:: do PostTaskInWMPFThread \n"
    "[I][02-12 07:50:34.967][35100,30844][xfile_host_mgr.cc(176)] XFileHostMgr::CloseXFile wxAppId = wx7a59aadcb728eca4,appid_map_array_[wxAppId].size() = 0\n"
    "[I][02-12 07:50:34.967][35100,30844][xfile_host_mgr.cc(176)] XFileHostMgr::CloseXFile wxAppId = wx7a59aadcb728eca4,appid_map_array_[wxAppId].size() = 0\n"
    "[I][02-12 07:50:34.995][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 5F4969C0\n"
    "[I][02-12 07:50:35.020][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:50:35.038][35100,2964][tab_wrapper.cc(266)]  NavigationController:5F8DCED0\n"
    "[I][02-12 07:50:35.055][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:5F4969C0 this:5F8DCED0\n"
    "[I][02-12 07:50:35.072][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    线程 8984 已启动,入口: wechatappex.02554B90
    SetThreadName(8984, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 60AFAAA0
    ExceptionInformation[02]: 00008984
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:50:35.094][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:5F4969C0\n"
    线程 9080 已退出
    "[I][02-12 07:50:35.115][35100,2964][process_watcher.cc(82)] RenderProcessExited, ChildProcessTerminationInfo, exit_code = 0, renderer_has_visible_clients = 0, renderer_was_subframe = 1, status = 0\n"
    "[I][02-12 07:50:35.136][35100,2964][process_watcher.cc(103)] RenderProcessHostDestroyed\n"
    "[E][02-12 07:50:35.155][35100,2964][applet_runtime_manager.cc(211)] AppletRuntimeManager::GetAppletRuntimeByProcessID RETURN NULL process_id = 35780\n"
    "[I][02-12 07:50:35.173][35100,2964][mini_game_runtime_host.cc(27)] MiniGameRuntimeHost::~MiniGameRuntimeHost this = 5FEC96C0\n"
    "[I][02-12 07:50:35.194][35100,30844][xlogger.cc(161)] XLoggerImpl::~XLoggerImpl 5F6BEC08\n"
    "[I][02-12 07:50:48.536][35100,2964][gpu_process_host.cc(907)] Init mode_:1\n"
    "[I][02-12 07:50:48.555][35100,14504][sandbox_win.cc(1233)] StartSandboxedProcess:gpu-process\n"
    "[I][02-12 07:50:48.571][35100,14504][sandbox_win.cc(1020)] LaunchProcess:gpu-process, IsUnsandboxedProcess\n"
    "[I][02-12 07:50:48.590][35100,14504][sandbox_win.cc(1246)] StartSandboxedProcess, ResultCode::SBOX_ERROR_UNSANDBOXED_PROCESS, LaunchWithoutSandbox!\n"
    "[I][02-12 07:50:48.621][35100,14504][child_process_launcher_helper_win.cc(79)] LaunchProcessOnLauncherThread launch_result = 0\n"
    "[I][02-12 07:50:49.101][35100,2964][process_watcher.cc(164)] BrowserChildProcessHostDisconnected: GPU, \n"
    线程 8940 已退出
    线程 7CCC 已退出
    线程 8984 已退出
    "[I][02-12 07:51:57.973][35100,2964][applet_runtime_manager.cc(864)] AppletRuntimeManager::AppletCommonReq app_id = wx7a59aadcb728eca4; data = {\"app_id\":\"wx7a59aadcb728eca4\",\"cmdId\":9,\"fromAppId\":\"\",\"keyId\":\"onOperateRealtimeDataResponse\",\"param\":\"{\\\"errcode\\\":0,\\\"errmsg\\\":\\\"\\\",\\\"res_data\\\":[{\\\"app_id\\\":\\\"wx7a59aadcb728eca4\\\",\\\"dataSize\\\":716,\\\"id\\\":1676158734},{\\\"app_id\\\":\\\"wx7a59aadcb728eca4\\\",\\\"dataSize\\\":716,\\\"id\\\":1676158735},{\\\"app"
    线程 87A0 已退出
    断点已启用!
    "[I][02-12 07:53:04.971][35100,2964][applet_runtime_manager.cc(551)] LaunchApplet init_config.productId 1000; GetProductId() = 1000\n"
    "[I][02-12 07:53:04.995][35100,2964][applet_runtime_manager.cc(617)] AppletRuntimeManager::LaunchApplet USE PRELOAD runtime wx7a59aadcb728eca4\n"
    "[I][02-12 07:53:05.019][35100,2964][mini_program_service_host.cc(80)] MiniProgramServiceHost::~MiniProgramServiceHost this = 5F48EFE0; worker_url_ = https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:53:05.043][35100,2964][shared_worker_service_impl.cc(453)] SharedWorkerServiceImpl::WmpfDestroyWorker https://servicewechat.com/preload-8/8/index.js\n"
    "[I][02-12 07:53:05.061][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-8; worker_url = https://servicewechat.com/preload-8/8/index.js\n"
    "[E][02-12 07:53:05.077][35100,2964][shared_worker_host.cc(183)] Ignore SendReportsAndRemoveSource in system shutDown process or minigameRuntime,appid:wx7a59aadcb728eca4\n"
    "[I][02-12 07:53:05.094][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5F8E2830; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:53:05.111][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 6076D2C0\n"
    "[I][02-12 07:53:05.126][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:53:05.141][35100,2964][tab_wrapper.cc(266)]  NavigationController:5F766130\n"
    "[I][02-12 07:53:05.156][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:6076D2C0 this:5F766130\n"
    "[I][02-12 07:53:05.171][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    线程 7870 已启动,入口: wechatappex.02554B90
    "[I][02-12 07:53:05.188][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:6076D2C0\n"
    SetThreadName(7870, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 5F8A8500
    ExceptionInformation[02]: 00007870
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:53:05.206][35100,2964][applet_page.cc(80)] AppletPage::~AppletPage() this = 60F99340; is_page_closed_ = 0\n"
    "[I][02-12 07:53:05.223][35100,2964][applet_page.cc(93)] AppletPage::closePage() this = 60F99340; pinus_webview_ = 1; html_webview_ = 0\n"
    "[I][02-12 07:53:05.239][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 60EB8960; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:53:05.253][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 60773BC0\n"
    "[I][02-12 07:53:05.269][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:53:05.284][35100,2964][tab_wrapper.cc(266)]  NavigationController:60EB9D60\n"
    "[I][02-12 07:53:05.301][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60773BC0 this:60EB9D60\n"
    "[I][02-12 07:53:05.322][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:53:05.342][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60773BC0\n"
    "[I][02-12 07:53:05.363][35100,2964][performance_info.cc(61)] [Perf] start_time = 1676159585363\n"
    "[I][02-12 07:53:05.382][35100,2964][applet_package.cc(497)] initPublicInfoPath, current version = 827; new_publicVer = 318; filePath = E:\\WXFileRecv\\WeChat Files\\Applet\\publicLib\\318\\clientPublicLib.wxapkg\n"
    "[I][02-12 07:53:05.401][35100,2964][applet_package.cc(515)] AppletPackage::loadPublicLibWxpkg public_lib_path_ = \n"
    "[I][02-12 07:53:05.418][35100,2964][applet_package.cc(518)] AppletPackage::loadPublicLibWxpkg init PublicLib Path Not Exists\n"
    "[I][02-12 07:53:05.438][35100,2964][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 5F889180\n"
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    "[I][02-12 07:53:11.631][35100,2964][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:53:11.650][35100,2964][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg\n"
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    无书签
    线程 7890 已启动,入口: wechatappex.02554B90
    线程 78B0 已退出
    SetThreadName(7890, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 610BC2E0
    ExceptionInformation[02]: 00007890
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    断点已禁用!
    线程 7490 已启动,入口: wechatappex.02554B90
    线程 5760 已启动,入口: wechatappex.02554B90
    SetThreadName(5760, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 610BC920
    ExceptionInformation[02]: 00005760
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    SetThreadName(7490, "ThreadPoolForegroundWorker")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 5F8A99C0
    ExceptionInformation[02]: 00007490
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:54:07.456][35100,2964][applet_package.cc(185)] parsePkgFileContent correctMd5 = b1f95a71311d11f09dcfe1a4cd88a56a; current_md5 = b1f95a71311d11f09dcfe1a4cd88a56a; pgk_file_path = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg; moduleName = __APP__\n"
    "[I][02-12 07:54:07.474][35100,2964][applet_package.cc(191)] Need check md5\n"
    "[I][02-12 07:54:07.495][35100,2964][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 1\n"
    "[I][02-12 07:54:07.511][35100,2964][applet_config.cc(280)] MiniProgramServiceHost::GetConfig is_lazy_load_ = 0\n"
    "[I][02-12 07:54:07.527][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:54:07.568][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:54:07.608][35100,2964][applet_runtime_manager.cc(635)] LaunchApplet preload_applet_runtime_ = 0 ; g_EnablePreload = 1; pending_preload_runtime_ = 0\n"
    "[I][02-12 07:54:07.665][35100,32748][sandbox_rule_delegate.cc(84)] AddFileSystemRule. dataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\n AddFileSystemRule. shareddataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\shared\n"
    "[E][02-12 07:54:08.443][35100,2964][kv_storage_manager.cc(78)] KVStorageMgr::chooseStorage invalid storageid = 3\n"
    "[I][02-12 07:54:08.482][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:08.503][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:08.520][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js; path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:08.542][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:08.645][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/game.js\n"
    "[I][02-12 07:54:08.662][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /game.js\n"
    "[I][02-12 07:54:08.678][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/game.js; path = /game.js\n"
    "[I][02-12 07:54:08.698][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/game.js\n"
    "[I][02-12 07:54:09.037][35100,2964][CONSOLE(1)] \"Unhandled promise rejection undefined\", source: https://servicewechat.com/__dev__/WAGame.js (1)\n"
    "[I][02-12 07:54:09.055][35100,2964][CONSOLE(1)] \"Unhandled promise rejection undefined\", source: https://servicewechat.com/__dev__/WAGame.js (1)\n"
    "[I][02-12 07:54:09.167][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:54:09.188][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:09.206][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:54:09.223][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:09.240][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 8\n"
    "[I][02-12 07:54:09.312][35100,2964][applet_runtime.cc(497)] OnFirstPageReady IsEnableCodeCache = 1\n"
    "[I][02-12 07:54:09.335][35100,2964][performance_info.cc(67)] [Perf] OnFirstPageReady ms = 63972\n"
    "[W][02-12 07:54:09.351][35100,2964][applet_report.cc(748)] Unexpected: first_screen_time value too large 1,6500,wx7a59aadcb728eca4,140,1,1,1676159585382,0,0,1676159649351,,,0,63969,1000\n"
    "[I][02-12 07:54:09.370][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:54:09.388][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:54:09.405][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg; path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:54:09.422][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e\n"
    "[I][02-12 07:54:09.440][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54efe6b\n"
    "[I][02-12 07:54:09.460][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54e\n"
    "[I][02-12 07:54:09.480][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:09.500][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:09.539][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:54:09.559][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:54:09.581][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac.png; path = /res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:54:09.606][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac\n"
    "[I][02-12 07:54:09.629][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:09.651][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:54:09.669][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:09.691][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:54:09.709][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:54:09.726][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df.wav; path = /res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:54:09.743][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df\n"
    "[I][02-12 07:54:09.757][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/data/meta-571312daeb.json\n"
    "[I][02-12 07:54:09.772][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/data/meta-571312daeb.json\n"
    "[I][02-12 07:54:09.823][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:09.844][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:09.864][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:09.881][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:09.899][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:09.919][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:09.950][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGameSubContext.js\n"
    "[I][02-12 07:54:09.973][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = d793642b8b39a2bef6c18718bdbceb6d-6500-WAGameSubContext.js.cachedata\n"
    "[I][02-12 07:54:10.041][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/subContext.js\n"
    "[I][02-12 07:54:10.065][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /subContext.js\n"
    "[I][02-12 07:54:10.083][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/subContext.js; path = /subContext.js\n"
    "[I][02-12 07:54:10.098][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/subContext.js\n"
    "[I][02-12 07:54:10.192][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:54:10.211][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:54:10.231][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781bc6f.png; path = /res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:54:10.252][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781b\n"
    线程 834C 已启动,入口: wechatappex.02554B90
    SetThreadName(834C, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 5FD96260
    ExceptionInformation[02]: 0000834C
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:54:10.351][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png\n"
    "[I][02-12 07:54:10.371][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /sub/img/mainfont.png\n"
    "[I][02-12 07:54:10.392][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png; path = /sub/img/mainfont.png\n"
    "[I][02-12 07:54:10.409][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png\n"
    "[I][02-12 07:54:10.426][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/configInfo?udid=71683224-8126-5b97-b21c-6f34fc4648d3&version=0,0,0&channel=wx&client=windows&pt=windows&v=20073&rv=1724&lang=zh_CN&rand=26997\n"
    "[I][02-12 07:54:10.442][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/configInfo?udid=71683224-8126-5b97-b21c-6f34fc46\n"
    "[I][02-12 07:54:10.790][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=0\n"
    "[I][02-12 07:54:10.815][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=0\n"
    "[I][02-12 07:54:11.515][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:11.538][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:11.570][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas0-423f62e5bc.png\n"
    "[I][02-12 07:54:11.592][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas0-423f62e5bc.png\n"
    "[I][02-12 07:54:11.613][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas0-423f62e5bc.png; path = /res/ui/WorldMap_atlas0-423f62e5bc.png\n"
    "[I][02-12 07:54:11.635][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas0-423f62e5\n"
    "[I][02-12 07:54:11.655][35100,2964][applet_runtime.cc(99)] AppletRuntime::AppletRuntime app_id_ = \n"
    "[I][02-12 07:54:11.673][35100,2964][performance_info.cc(26)] [Perf] preload_start_time = 1676159651672\n"
    "[I][02-12 07:54:11.689][35100,2964][applet_runtime.cc(401)] AppletRuntime::InitSiteInstance render_client_id_ = 10\n"
    "[I][02-12 07:54:11.707][35100,2964][applet_runtime.cc(697)] AppletRuntime::StartPreload this = 5F405C00; app_id = preload-10\n"
    "[I][02-12 07:54:11.723][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas_tinusl3-2c9139cd0f.png\n"
    "[I][02-12 07:54:11.740][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tinusl3-2c9139cd0f.png; path = /res/ui/WorldMap_atlas_tinusl3-2c9139cd0f.png\n"
    "[I][02-12 07:54:11.757][35100,2964][mini_program_service_host.cc(68)] MiniProgramServiceHost::MiniProgramServiceHost THIS = 60776140; IsPreloadRuntime = 1; is_wait_download_ = 0\n"
    "[I][02-12 07:54:11.775][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:54:11.792][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_ihp2sl6-c1bd81d129.png\n"
    "[I][02-12 07:54:11.809][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas_ihp2sl6-c1bd81d129.png\n"
    "[I][02-12 07:54:11.825][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:60771960,webview_type:3,initial_size:0x0\n"
    "[I][02-12 07:54:11.835][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_ihp2sl6-c1bd81d129.png; path = /res/ui/WorldMap_atlas_ihp2sl6-c1bd81d129.png\n"
    "[I][02-12 07:54:11.864][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:60771960 this:5F8D78E0\n"
    ???
    "[I][02-12 07:54:11.904][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60771960\n"
    "[I][02-12 07:54:11.922][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/IconHead-4a5a786999.bin\n"
    "[I][02-12 07:54:11.940][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/IconHead-4a5a786999.bin\n"
    "[I][02-12 07:54:11.957][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/IconTravel-f9ad06ff80.bin\n"
    "[I][02-12 07:54:11.976][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/IconTravel-f9ad06ff80.bin\n"
    "[I][02-12 07:54:12.002][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg\n"
    "[I][02-12 07:54:12.022][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg\n"
    "[I][02-12 07:54:12.042][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg; path = /res/ui/WorldMap_atlas_tcr68w-629b8d9500.jpg\n"
    "[I][02-12 07:54:12.064][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/WorldMap_atlas_tcr68w-62\n"
    "[I][02-12 07:54:12.085][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064713_6ef.png\n"
    "[I][02-12 07:54:12.103][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064713_6ef.png\n"
    "[I][02-12 07:54:12.128][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:54:12.152][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:60774840,webview_type:5,initial_size:139x56\n"
    "[I][02-12 07:54:12.171][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:60774840 this:5F8DC930\n"
    "[I][02-12 07:54:12.188][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60774840\n"
    "[I][02-12 07:54:12.210][35100,2964][mini_program_service_host.cc(772)] [Perf] MiniProgramServiceHost::OnAfterCreated time = 1676159652210\n"
    "[I][02-12 07:54:12.228][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:12.249][35100,2964][render_process_host_impl.cc(1751)] Init, renderer_path = C:\\Users\\Misty\\AppData\\Roaming\\Tencent\\WeChat\\XPlugin\\Plugins\\RadiumWMPF\\6500\\extracted\\runtime\\WeChatAppEx.exe\n"
    "[I][02-12 07:54:12.270][35100,2964][content_browser_client_impl.cc(1173)] ExposeInterfacesToRenderer render_process_host = 10\n"
    "[I][02-12 07:54:12.291][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064687_8e3.png\n"
    "[I][02-12 07:54:12.309][35100,14504][sandbox_win.cc(1233)] StartSandboxedProcess:renderer\n"
    "[I][02-12 07:54:12.326][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:12.347][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:54:12.367][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:12.387][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 1; url = https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:12.408][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-10/10/index.html\n"
    "[I][02-12 07:54:12.420][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:12.450][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206466b_69a.png\n"
    "[I][02-12 07:54:12.472][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206466b_69a.png\n"
    "[I][02-12 07:54:12.499][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206468d_053.png\n"
    "[I][02-12 07:54:12.524][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206468d_053.png\n"
    "[I][02-12 07:54:12.547][35100,14504][sandbox_win.cc(1259)] SpawnTarget start\n"
    "[I][02-12 07:54:12.581][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:12.607][35100,14504][sandbox_rule_delegate.cc(51)] BeforePolicyDone process_id:18492\n"
    "[I][02-12 07:54:12.633][35100,14504][sandbox_win.cc(1273)] SpawnTarget end\n"
    "[I][02-12 07:54:12.656][35100,14504][child_process_launcher_helper_win.cc(79)] LaunchProcessOnLauncherThread launch_result = 0\n"
    "[I][02-12 07:54:12.682][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:54:12.710][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-10/10/index.html\n"
    "[I][02-12 07:54:12.732][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.html\n"
    "[I][02-12 07:54:12.754][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-10/10/index.html\n"
    "[I][02-12 07:54:12.777][35100,30844][content_browser_client_impl.cc(1231)] <xlogger::mojom::XLogger> receiver \n"
    "[I][02-12 07:54:12.795][35100,30844][xlogger.cc(157)] XLoggerImpl::XLoggerImpl 6109F060\n"
    "[I][02-12 07:54:12.814][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:12.836][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:12.860][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:12.886][35100,2964][content_browser_client_impl.cc(1180)] <applet::mojom::AppletRuntimeHost> receiver render_id = 10\n"
    "[I][02-12 07:54:12.911][35100,2964][applet_runtime.cc(640)] BindMiniProgramRuntimeHost mini_program_host_ = 0\n"
    "[I][02-12 07:54:12.937][35100,2964][content_browser_client_impl.cc(1196)] <applet::mojom::MiniGameRuntimeHost> receiver render_id = 10\n"
    "[I][02-12 07:54:12.961][35100,2964][applet_runtime.cc(649)] BindMiniGameRuntimeHost mini_game_host_ = 0; minigame_container_ = 1\n"
    "[I][02-12 07:54:12.981][35100,2964][mini_game_runtime_host.cc(23)] MiniGameRuntimeHost::MiniGameRuntimeHost this = 5F7C3700\n"
    "[I][02-12 07:54:13.003][35100,2964][content_browser_client_impl.cc(1213)] <applet::mojom::CodeCacheHost> receiver render_id = 10\n"
    "[I][02-12 07:54:13.027][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:13.049][35100,2964][mini_program_runtime_host.cc(176)] MiniProgramRuntimeHost::Acquire render_client_id_ = 10\n"
    "[I][02-12 07:54:13.071][35100,2964][mini_game_runtime_host.cc(55)] MiniGameRuntimeHost::Acquire render_client_id_ = 10\n"
    "[I][02-12 07:54:13.107][35100,2964][mini_program_service_host.cc(783)] [Perf] MiniProgramServiceHost::OnLoadStart time = 1676159653107\n"
    "[I][02-12 07:54:13.131][35100,2964][tab_wrapper.cc(1091)] TabWrapper::CreateWmpfWorker appid = preload-10; url = https://servicewechat.com/preload-10/10/index.js\n"
    "[I][02-12 07:54:13.155][35100,2964][shared_worker_service_impl.cc(222)] SharedWorkerServiceImpl::WmpfCreateWorker this = 5F452770\n"
    "[I][02-12 07:54:13.176][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:13.198][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-10/10/index.js\n"
    ???
    "[I][02-12 07:54:13.242][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-10/10/index.js\n"
    "[I][02-12 07:54:13.262][35100,2964][mini_program_service_host.cc(797)] [Perf] MiniProgramServiceHost::OnLoadEnd time = 1676159653262\n"
    "[I][02-12 07:54:13.283][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/index.js\n"
    "[I][02-12 07:54:13.302][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.js\n"
    "[I][02-12 07:54:13.322][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/index.js\n"
    ???
    ???
    ???
    "[I][02-12 07:54:13.399][35100,2964][shared_worker_service_impl.cc(366)] SharedWorkerServiceImpl::WmpfStartWorker did_fetch_worker_script = 1\n"
    "[I][02-12 07:54:13.417][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[E][02-12 07:54:13.534][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:54:13.584][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/186420649b4_743.png\n"
    "[I][02-12 07:54:13.614][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/186420649b4_743.png\n"
    "[I][02-12 07:54:13.642][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/186420649b8_e65.png\n"
    "[I][02-12 07:54:13.666][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/186420649b8_e65.png\n"
    "[I][02-12 07:54:13.686][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206499b_8d8.png\n"
    "[I][02-12 07:54:13.704][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/1864206499b_8d8.png\n"
    "[I][02-12 07:54:13.725][35100,2964][mini_program_service_host.cc(424)] ReadFileSync; path = WAServiceMainContext.js; type = lib\n"
    "[I][02-12 07:54:13.744][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/186420649a0_2fa.png\n"
    "[I][02-12 07:54:13.762][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/186420649a0_2fa.png\n"
    "[I][02-12 07:54:13.781][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064994_01d.png\n"
    "[I][02-12 07:54:13.798][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064994_01d.png\n"
    "[I][02-12 07:54:13.822][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAServiceMainContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:13.845][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:54:13.865][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:13.886][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:54:13.903][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:13.921][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAServiceMainContext.js\n"
    "[I][02-12 07:54:13.951][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:13.973][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 0bd99d339fa167d5f6f284f745bda31b-6500-WAServiceMainContext.js.cachedata\n"
    "[I][02-12 07:54:13.997][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:14.020][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:54:14.042][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:14.069][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ab2_878.mp3\n"
    "[I][02-12 07:54:14.092][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064ab2_878.mp3\n"
    "[I][02-12 07:54:14.116][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/landscape-slide-tips-mask.png\n"
    "[I][02-12 07:54:14.139][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/landscape-slide-tips-mask.png\n"
    "[I][02-12 07:54:14.164][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/slide-tips-mask.png\n"
    "[I][02-12 07:54:14.187][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/slide-tips-mask.png\n"
    "[I][02-12 07:54:14.212][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/slide-down.png\n"
    "[I][02-12 07:54:14.236][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/slide-down.png\n"
    "[I][02-12 07:54:14.259][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/feed-path.png\n"
    "[I][02-12 07:54:14.279][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/feed-path.png\n"
    "[I][02-12 07:54:14.301][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/feed-finger.png\n"
    "[I][02-12 07:54:14.319][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/feed-finger.png\n"
    "[I][02-12 07:54:14.338][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/feed-guide-tip.png\n"
    "[I][02-12 07:54:14.338][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/feed-guide-tip.png\n"
    "[I][02-12 07:54:14.382][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/feed-guide-tip.png\n"
    "[I][02-12 07:54:14.405][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/bottom-mask.png\n"
    "[I][02-12 07:54:14.427][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/bottom-mask.png\n"
    ???
    "[I][02-12 07:54:14.463][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/time.png\n"
    "[I][02-12 07:54:14.481][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/muted_icon.png\n"
    "[I][02-12 07:54:14.501][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/muted_icon.png\n"
    "[I][02-12 07:54:14.525][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/109/20204/snsvideodownload?m=a5af9b5364f6e959667331801f6558e8&filekey=3033020101041f301d02016d040253480410a5af9b5364f6e959667331801f6558e80202423f040d00000004627466730000000131&hy=SH&storeid=32303138313031363036343533343030306464383764313336666664393336663561333230613030303030303664&bizid=1023\n"
    "[I][02-12 07:54:14.550][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdythumb.wxs.qq.com/109/20204/snsvideodownload?m=a5af9b5364f6e9596673\n"
    "[I][02-12 07:54:14.573][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WASubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:14.597][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://mmbiz.qpic.cn/mmbiz_png/icTdbqWNOwNTTiaKet81gQJAic1IGjzG9g458d7DpIe8URUq74t0dicbwKKc69rPBf8hiby1llOBTndbKUq2NTA9YaA/0?wx_fmt=png\n"
    "[I][02-12 07:54:14.620][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://mmbiz.qpic.cn/mmbiz_png/icTdbqWNOwNTTiaKet81gQJAic1IGjzG9g458d7DpIe8URUq7\n"
    "[I][02-12 07:54:14.642][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/factory/rankIcon.png\n"
    "[I][02-12 07:54:14.665][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/factory/rankIcon.png\n"
    "[I][02-12 07:54:14.687][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/factory/fullStar.png\n"
    "[I][02-12 07:54:14.708][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/factory/fullStar.png\n"
    "[I][02-12 07:54:14.730][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/dropdown-arrow-white.png\n"
    ???
    "[I][02-12 07:54:14.792][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxa.wxs.qq.com/images/wxapp/dropdown-arrow-black.png\n"
    "[I][02-12 07:54:14.813][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxa.wxs.qq.com/images/wxapp/dropdown-arrow-black.png\n"
    ???
    "[I][02-12 07:54:14.866][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a24_3c9.png\n"
    ???
    "[I][02-12 07:54:14.920][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a1c_aea.png\n"
    ???
    ???
    "[I][02-12 07:54:14.985][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    ???
    "[I][02-12 07:54:15.033][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WASubContext.js\n"
    "[I][02-12 07:54:15.055][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:54:15.079][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGame.js\n"
    "[I][02-12 07:54:15.114][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGame.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:15.145][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:54:15.174][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637f38650004021215e04b345fc4b50b0000008d00004eec?m=57887801074c2bceeca473ca3c20857d&ck=57887801074c2bceeca473ca3c20857d&sha256=1b7bda30a80f1de7a8c222de2f19981a4059a8dad3938bc466e7dfe59acb6a62\n"
    "[I][02-12 07:54:15.197][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637f3865000\n"
    ???
    ???
    "[I][02-12 07:54:15.267][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/109/20204/snsvideodownload?m=f8ba19ac709edca00138c47585de39be&filekey=3033020101041f301d02016d040253480410f8ba19ac709edca00138c47585de39be020202d1040d00000004627466730000000131&hy=SH&storeid=32303138313031303133353430323030303461363337313336666664393336663561333230613030303030303664&bizid=1023\n"
    ???
    "[I][02-12 07:54:15.311][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af7d7000421df25c2c9cfadc4b50b0000008d00004eec?m=54cc71875b76ab51a437017fbde75c24&ck=54cc71875b76ab51a437017fbde75c24&sha256=ffa14e7d07e792b248c540c6c43a9a1af8e47314a9f7d339938ac388f7b7f3d5\n"
    ???
    "[I][02-12 07:54:15.359][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8cb000bbc0b138436f5da98910b0000008d00004eec?m=f7219cf7862970fff12ed49ab12f8a64&ck=f7219cf7862970fff12ed49ab12f8a64&sha256=22741ffff52593f9fb1de6a4e6ee0ad5f1931db1eba4cdc66234b65c0a5c9dc5\n"
    ???
    "[I][02-12 07:54:15.408][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8c30000c9b10597fb957589970b0000008d00004eec?m=0a9be3258d7f8229dcf73567733f877a&ck=0a9be3258d7f8229dcf73567733f877a&sha256=f3e49de57b4b55363955dad37f29cd8211dfc61524b36e60fff3b5fc42e71c5b\n"
    ???
    "[I][02-12 07:54:15.471][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/637af8ed0009a3fb259346d46c80970b0000008d00004eec?m=1136e7bc00567ebe849a7d0ba29f9a3c&ck=1136e7bc00567ebe849a7d0ba29f9a3c&sha256=eefe0b3df74c3b637f9c33c595d6bdb8795ead6efa3abb5f5f1f42963b95e655\n"
    ???
    ???
    "[I][02-12 07:54:15.557][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b53paaaaaaazeadjod7qnrru6aeab4aaaca.f124000.mp4?dis_k=10028d1a280c8d6ab9840afb6cf7de80&dis_t=1669281892&sha256=6e3bab4fb003125bcd0cd558cc9aed1599ae289c8afffa74eb26c4432dd43d07&m=3a98e7310e3d8ad7d8309e086e777a4e\n"
    ???
    "[I][02-12 07:54:15.616][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 5a4d234fa3e562e8930459a3fd7a6e4f-6500-WASubContext.js.cachedata\n"
    ???
    "[I][02-12 07:54:15.680][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a3a_997.png\n"
    ???
    ???
    "[I][02-12 07:54:15.761][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a76_84b.png\n"
    "[I][02-12 07:54:15.785][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a76_84b.png\n"
    "[I][02-12 07:54:15.820][35100,2964][mini_program_service_host.cc(486)] MiniProgramServiceHost::OnAppEngineReady is_app_service_ready_ = 0; IsPreloadRuntime =1; is_wait_download_ = 0\n"
    ???
    ???
    ???
    ???
    ???
    ???
    "[I][02-12 07:54:15.993][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60777AE0\n"
    "[I][02-12 07:54:16.019][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f53f331e9e44452d4ddcfafd46a94c91-6500-WAGame.js.cachedata\n"
    线程 5828 已启动,入口: wechatappex.02554B90
    SetThreadName(5828, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 5FD5BA60
    ExceptionInformation[02]: 00005828
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:54:16.048][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:16.116][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a71_79f.png\n"
    "[I][02-12 07:54:16.143][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a71_79f.png\n"
    "[I][02-12 07:54:16.181][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:16.207][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a79_0c2.png\n"
    "[I][02-12 07:54:16.236][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a79_0c2.png\n"
    "[I][02-12 07:54:16.266][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a84_1b2.png\n"
    "[I][02-12 07:54:16.291][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a84_1b2.png\n"
    "[I][02-12 07:54:16.315][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:54:16.333][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:16.352][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:16.375][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:54:16.395][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064a81_e7f.png\n"
    "[I][02-12 07:54:16.422][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064a81_e7f.png\n"
    "[I][02-12 07:54:16.446][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064abe_4ae.png\n"
    "[I][02-12 07:54:16.469][35100,2964][minigame_container.cc(583)] MinigameContainer OnGameEngineReady\n"
    "[I][02-12 07:54:16.488][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064abe_4ae.png\n"
    "[I][02-12 07:54:16.506][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ac5_799.png\n"
    "[I][02-12 07:54:16.528][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064ac5_799.png\n"
    "[I][02-12 07:54:16.548][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:16.570][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:54:16.592][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:16.612][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ac1_6bf.png\n"
    ???
    "[I][02-12 07:54:16.657][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ad6_5a5.png\n"
    ???
    "[I][02-12 07:54:16.704][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:16.726][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:16.751][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    线程 8308 已启动,入口: shcore.76BE1A80
    "[I][02-12 07:54:16.775][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    ???
    "[I][02-12 07:54:16.825][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064acc_a4b.png\n"
    ???
    "[I][02-12 07:54:16.872][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b2d_553.png\n"
    ???
    "[I][02-12 07:54:16.922][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b30_2d9.png\n"
    ???
    线程 8E74 已启动,入口: combase.769A61D0
    "[I][02-12 07:54:16.973][35100,2964][applet_page.cc(1304)] AppletPage::OnLoadEnd is_page_closed_ = 0; RoutingID = 8; is_main_frame = 1; url = https://servicewechat.com/preload-10/10/page-frame.html\n"
    "[I][02-12 07:54:16.996][35100,2964][applet_page.cc(129)] AppletPage::init APPID = preload-10; time = 1676159656996\n"
    ???
    "[I][02-12 07:54:17.050][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:54:17.075][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    ???
    "[I][02-12 07:54:17.121][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b33_c26.png\n"
    ???
    "[I][02-12 07:54:17.164][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b36_42d.png\n"
    ???
    "[I][02-12 07:54:17.211][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b53_986.png\n"
    "[I][02-12 07:54:17.234][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b62_7c2.png\n"
    ???
    "[I][02-12 07:54:17.274][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://ipv4.gdt.qq.com/get_client_ip?trace_id=wx04b2wsp6h6hvqk\n"
    ???
    "[I][02-12 07:54:17.319][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:17.341][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:17.364][35100,2964][applet_runtime.cc(816)] SetMiniProgramPreloadReady is_ready = 1\n"
    "[I][02-12 07:54:17.384][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:17.405][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:17.429][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b6a_9aa.png\n"
    ???
    "[I][02-12 07:54:17.476][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b6f_1ce.png\n"
    "[I][02-12 07:54:17.496][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b6f_1ce.png\n"
    "[I][02-12 07:54:17.517][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b75_cf9.png\n"
    "[I][02-12 07:54:17.538][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b75_cf9.png\n"
    "[I][02-12 07:54:17.572][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064b7c_bb5.png\n"
    "[I][02-12 07:54:17.600][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064b7c_bb5.png\n"
    "[I][02-12 07:54:17.627][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064ba1_575.png\n"
    ???
    "[I][02-12 07:54:17.680][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bbd_d8f.png\n"
    "[I][02-12 07:54:17.705][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bbd_d8f.png\n"
    "[I][02-12 07:54:17.734][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bc2_e58.png\n"
    "[I][02-12 07:54:17.758][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bc2_e58.png\n"
    "[I][02-12 07:54:17.783][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bc9_dd9.png\n"
    ???
    "[I][02-12 07:54:17.839][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bcd_084.png\n"
    "[I][02-12 07:54:17.864][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bcd_084.png\n"
    "[I][02-12 07:54:17.890][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642064bfd_887.png\n"
    "[I][02-12 07:54:17.913][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642064bfd_887.png\n"
    "[I][02-12 07:54:17.940][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGameSubContext.js\n"
    ???
    "[I][02-12 07:54:17.993][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:18.017][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:18.037][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/ShopSkin-9942910892.bin\n"
    ???
    "[I][02-12 07:54:18.087][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/ui/c1001013-81b57bca11.sk\n"
    ???
    "[I][02-12 07:54:18.139][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAWebview.js\n"
    "[I][02-12 07:54:18.171][35100,2964][shared_worker_connector_impl.cc(93)] SharedWorkerConnectorImpl::XWebWorkerConnect url = https://servicewechat.com/preload-10/10/page-frame.html; webview_id = 12; render_id = 10\n"
    "[I][02-12 07:54:18.195][35100,2964][shared_worker_connector_impl.cc(119)] SharedWorkerConnectorImpl::XWebWorkerConnect app_id = preload-10; worker = https://servicewechat.com/preload-10/10/index.js\n"
    "[I][02-12 07:54:18.214][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-10; worker_url = https://servicewechat.com/preload-10/10/index.js\n"
    "[I][02-12 07:54:18.233][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f2615d5feef3c2d84f669661782764ef-6500-WAWebview.js.cachedata\n"
    "[I][02-12 07:54:18.264][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:18.288][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:18.314][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642b8ead3_877.png\n"
    ???
    "[I][02-12 07:54:18.369][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/1864206692e_7eb.png\n"
    ???
    "[I][02-12 07:54:18.516][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642b8eb0d_df9.png\n"
    "[I][02-12 07:54:18.543][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:wxfile://usr/layaairGame/18642b8eb0d_df9.png\n"
    "[I][02-12 07:54:18.566][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:wxfile://usr/layaairGame/18642b8eb1e_8e2.png\n"
    ???
    "[I][02-12 07:54:18.620][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:18.643][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:18.758][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:18.781][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:18.959][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://mmbiz.qpic.cn/mmbiz_png/icTdbqWNOwNTTiaKet81gQJAic1IGjzG9g458d7DpIe8URUq74t0dicbwKKc69rPBf8hiby1llOBTndbKUq2NTA9YaA/0?wx_fmt=png\n"
    "[I][02-12 07:54:18.985][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://mmbiz.qpic.cn/mmbiz_png/icTdbqWNOwNTTiaKet81gQJAic1IGjzG9g458d7DpIe8URUq7\n"
    "[I][02-12 07:54:19.398][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/131/20204/snssvpdownload/SH/reserved/ads_svp_video__0b53iqdnkaagzyabnupcbnrryrae2vcanvka.f1124003_0.jpeg?dis_k=dde166a71009a3e0e1c95927ae557535&dis_t=1675936962&sha256=7a99eac625b1992127567a42896045fdd30e72a8552e8b261aad880c8b82c7bb&ck=6d39aba9c128912478722ee6afe7a220&m=6d39aba9c128912478722ee6afe7a220\n"
    "[I][02-12 07:54:19.428][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/131/20204/snssvpdownload/SH/reserved/ads_svp_vid\n"
    "[I][02-12 07:54:19.457][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/63e4c47e0000cf0c0531d3749685970b0000008d00004eec?m=dbb2202a9bfefbd922bbaf2b686dab24&ck=dbb2202a9bfefbd922bbaf2b686dab24&sha256=592a7a655276731fae20321a252ba2e29e3e7679d178a74398cef6be1fecf670\n"
    "[I][02-12 07:54:19.486][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://wxsnsdythumb.wxs.qq.com/141/20204/snscosdownload/SZ/reserved/63e4c47e000\n"
    "[I][02-12 07:54:19.506][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wx.qlogo.cn/mmhead/Q3auHgzwzM4OrUia6GObHuDw1GDr0zftQRDHtr9C1DM5yS6Nf3hp1mw/0\n"
    "[I][02-12 07:54:19.530][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wx.qlogo.cn/mmhead/Q3auHgzwzM4OrUia6GObHuDw1GDr0zftQRDHtr9C1DM5yS6Nf3hp1m\n"
    "[I][02-12 07:54:19.554][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b53dydigaagsqaebahclzrryhqeqmpana2a.f124003.mp4?dis_k=e5ae13852b4b62eb9e3df7e1fae257eb&dis_t=1675937001&sha256=5ede903a51e88039344d56ddc105cfdd42645ba3d5d1952369a83fe4e9e8e124&m=2dba78b49504b0144fceeebfa11c3074\n"
    "[I][02-12 07:54:19.582][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:http://wxsnsdy.wxs.qq.com/131/20210/snssvpdownload/SH/reserved/ads_svp_video__0b\n"
    "[I][02-12 07:54:19.717][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:19.743][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/h5protocol?playerId=132125434\n"
    "[I][02-12 07:54:19.768][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    ???
    "[I][02-12 07:54:19.832][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:19.853][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    线程 834C 已退出
    "[I][02-12 07:54:20.123][35100,2964][applet_runtime_manager.cc(321)] AppletRuntimeManager::DestoryAppletRuntime app_id = wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:20.153][35100,2964][applet_runtime.cc(104)] AppletRuntime::~AppletRuntime app_id_ = wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:20.175][35100,2964][xfile_host_mgr.cc(287)] XFileHostMgr:: do PostTaskInWMPFThread \n"
    "[I][02-12 07:54:20.197][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 60E0DD30; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:54:20.197][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 60E0DD30; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:54:20.239][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 60772720\n"
    "[I][02-12 07:54:20.259][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:54:20.282][35100,2964][tab_wrapper.cc(266)]  NavigationController:60E0DC40\n"
    "[I][02-12 07:54:20.302][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60772720 this:60E0DC40\n"
    "[I][02-12 07:54:20.325][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:54:20.351][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60772720\n"
    线程 5828 已退出
    "[I][02-12 07:54:20.374][35100,2964][process_watcher.cc(82)] RenderProcessExited, ChildProcessTerminationInfo, exit_code = 0, renderer_has_visible_clients = 0, renderer_was_subframe = 1, status = 0\n"
    "[I][02-12 07:54:20.394][35100,2964][process_watcher.cc(103)] RenderProcessHostDestroyed\n"
    "[E][02-12 07:54:20.414][35100,2964][applet_runtime_manager.cc(211)] AppletRuntimeManager::GetAppletRuntimeByProcessID RETURN NULL process_id = 17820\n"
    "[I][02-12 07:54:20.433][35100,2964][mini_game_runtime_host.cc(27)] MiniGameRuntimeHost::~MiniGameRuntimeHost this = 60DD5040\n"
    "[I][02-12 07:54:20.459][35100,30844][xlogger.cc(161)] XLoggerImpl::~XLoggerImpl 60D29A90\n"
    "[I][02-12 07:54:24.146][35100,2964][applet_runtime_manager.cc(551)] LaunchApplet init_config.productId 1000; GetProductId() = 1000\n"
    "[I][02-12 07:54:24.170][35100,2964][applet_runtime_manager.cc(617)] AppletRuntimeManager::LaunchApplet USE PRELOAD runtime wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:24.195][35100,2964][mini_program_service_host.cc(80)] MiniProgramServiceHost::~MiniProgramServiceHost this = 60776140; worker_url_ = https://servicewechat.com/preload-10/10/index.js\n"
    "[I][02-12 07:54:24.220][35100,2964][shared_worker_service_impl.cc(453)] SharedWorkerServiceImpl::WmpfDestroyWorker https://servicewechat.com/preload-10/10/index.js\n"
    "[I][02-12 07:54:24.238][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-10; worker_url = https://servicewechat.com/preload-10/10/index.js\n"
    "[E][02-12 07:54:24.256][35100,2964][shared_worker_host.cc(183)] Ignore SendReportsAndRemoveSource in system shutDown process or minigameRuntime,appid:wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:24.275][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5F8D7BB0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:54:24.294][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 60771960\n"
    "[I][02-12 07:54:24.311][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:54:24.327][35100,2964][tab_wrapper.cc(266)]  NavigationController:5F8D78E0\n"
    "[I][02-12 07:54:24.345][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60771960 this:5F8D78E0\n"
    "[I][02-12 07:54:24.364][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:54:24.383][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60771960\n"
    "[I][02-12 07:54:24.403][35100,2964][applet_page.cc(80)] AppletPage::~AppletPage() this = 6147AD80; is_page_closed_ = 0\n"
    "[I][02-12 07:54:24.424][35100,2964][applet_page.cc(93)] AppletPage::closePage() this = 6147AD80; pinus_webview_ = 1; html_webview_ = 0\n"
    "[I][02-12 07:54:24.442][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 613362E0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:54:24.462][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 60777AE0\n"
    "[I][02-12 07:54:24.484][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:54:24.505][35100,2964][tab_wrapper.cc(266)]  NavigationController:61336330\n"
    "[I][02-12 07:54:24.525][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60777AE0 this:61336330\n"
    "[I][02-12 07:54:24.543][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:54:24.561][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60777AE0\n"
    "[I][02-12 07:54:24.578][35100,2964][performance_info.cc(61)] [Perf] start_time = 1676159664578\n"
    "[I][02-12 07:54:24.598][35100,2964][applet_package.cc(497)] initPublicInfoPath, current version = 827; new_publicVer = 318; filePath = E:\\WXFileRecv\\WeChat Files\\Applet\\publicLib\\318\\clientPublicLib.wxapkg\n"
    "[I][02-12 07:54:24.615][35100,2964][applet_package.cc(515)] AppletPackage::loadPublicLibWxpkg public_lib_path_ = \n"
    "[I][02-12 07:54:24.634][35100,2964][applet_package.cc(518)] AppletPackage::loadPublicLibWxpkg init PublicLib Path Not Exists\n"
    "[I][02-12 07:54:24.652][35100,2964][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 5F405C00\n"
    "[I][02-12 07:54:24.688][35100,2964][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:54:24.707][35100,2964][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg\n"
    "[I][02-12 07:54:24.735][35100,2964][applet_package.cc(185)] parsePkgFileContent correctMd5 = b1f95a71311d11f09dcfe1a4cd88a56a; current_md5 = b1f95a71311d11f09dcfe1a4cd88a56a; pgk_file_path = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg; moduleName = __APP__\n"
    "[I][02-12 07:54:24.756][35100,2964][applet_package.cc(191)] Need check md5\n"
    "[I][02-12 07:54:24.783][35100,2964][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 1\n"
    "[I][02-12 07:54:24.803][35100,2964][applet_config.cc(280)] MiniProgramServiceHost::GetConfig is_lazy_load_ = 0\n"
    "[I][02-12 07:54:24.821][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:54:24.906][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:54:24.944][35100,2964][applet_runtime_manager.cc(635)] LaunchApplet preload_applet_runtime_ = 0 ; g_EnablePreload = 1; pending_preload_runtime_ = 0\n"
    "[I][02-12 07:54:24.987][35100,37428][sandbox_rule_delegate.cc(84)] AddFileSystemRule. dataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\n AddFileSystemRule. shareddataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\shared\n"
    "[E][02-12 07:54:25.845][35100,2964][kv_storage_manager.cc(78)] KVStorageMgr::chooseStorage invalid storageid = 3\n"
    "[I][02-12 07:54:25.893][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:25.917][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:25.936][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js; path = /__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:25.960][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__plugin__/wx70d8aa25ec591f7a/plugin.js\n"
    "[I][02-12 07:54:26.058][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/game.js\n"
    "[I][02-12 07:54:26.076][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /game.js\n"
    "[I][02-12 07:54:26.092][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/game.js; path = /game.js\n"
    "[I][02-12 07:54:26.112][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/game.js\n"
    "[I][02-12 07:54:26.412][35100,2964][CONSOLE(1)] \"Unhandled promise rejection undefined\", source: https://servicewechat.com/__dev__/WAGame.js (1)\n"
    "[I][02-12 07:54:26.518][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:54:26.542][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:26.563][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:54:26.581][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:26.600][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 10\n"
    "[I][02-12 07:54:26.675][35100,2964][applet_runtime.cc(497)] OnFirstPageReady IsEnableCodeCache = 1\n"
    "[I][02-12 07:54:26.697][35100,2964][performance_info.cc(67)] [Perf] OnFirstPageReady ms = 2119\n"
    "[I][02-12 07:54:26.721][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:54:26.739][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:54:26.756][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg; path = /res/ui/StartMenu_atlas_msr2n-6e0d869fa6.jpg\n"
    "[I][02-12 07:54:26.772][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas_msr2n-6e\n"
    "[I][02-12 07:54:26.792][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54efe6b\n"
    "[I][02-12 07:54:26.810][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/config?appid=2a9769befac848e0a742de8ff54e\n"
    "[I][02-12 07:54:26.828][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:26.850][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:26.878][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:26.900][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:54:26.922][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:26.976][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:54:27.003][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:54:27.025][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac.png; path = /res/ui/Basics_atlas0-bfb69b52ac.png\n"
    "[I][02-12 07:54:27.046][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_atlas0-bfb69b52ac\n"
    "[I][02-12 07:54:27.068][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:54:27.087][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:54:27.109][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df.wav; path = /res/ui/Basics_o4lt7w-4614b949df.wav\n"
    "[I][02-12 07:54:27.128][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/Basics_o4lt7w-4614b949df\n"
    "[I][02-12 07:54:27.145][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://cdnminigame.lightlygame.com/hlxxx/wx/res/data/meta-571312daeb.json\n"
    "[I][02-12 07:54:27.162][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://cdnminigame.lightlygame.com/hlxxx/wx/res/data/meta-571312daeb.json\n"
    "[I][02-12 07:54:27.180][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:27.198][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:27.217][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:27.236][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:27.253][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:27.271][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:27.294][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGameSubContext.js\n"
    "[I][02-12 07:54:27.316][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = d793642b8b39a2bef6c18718bdbceb6d-6500-WAGameSubContext.js.cachedata\n"
    "[I][02-12 07:54:27.378][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/subContext.js\n"
    "[I][02-12 07:54:27.404][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /subContext.js\n"
    "[I][02-12 07:54:27.423][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/subContext.js; path = /subContext.js\n"
    "[I][02-12 07:54:27.441][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/subContext.js\n"
    线程 8D54 已启动,入口: wechatappex.02554B90
    SetThreadName(8D54, "wasapi_render_thread")
    EXCEPTION_DEBUG_INFO:
               dwFirstChance: 1
               ExceptionCode: 406D1388 (MS_VC_EXCEPTION)
              ExceptionFlags: 00000000
            ExceptionAddress: 75C9CEF4 kernelbase.75C9CEF4
            NumberParameters: 4
    ExceptionInformation[00]: 00001000
    ExceptionInformation[01]: 60CEC120
    ExceptionInformation[02]: 00008D54
    ExceptionInformation[03]: 00000000
    第一次异常于 75C9CEF4 (406D1388, MS_VC_EXCEPTION)!
    "[I][02-12 07:54:27.603][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:54:27.627][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:54:27.654][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781bc6f.png; path = /res/ui/StartMenu_atlas0-914781bc6f.png\n"
    "[I][02-12 07:54:27.675][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/res/ui/StartMenu_atlas0-914781b\n"
    "[I][02-12 07:54:27.696][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png\n"
    "[I][02-12 07:54:27.715][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /sub/img/mainfont.png\n"
    "[I][02-12 07:54:27.735][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png; path = /sub/img/mainfont.png\n"
    "[I][02-12 07:54:27.754][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/wx7a59aadcb728eca4/140/sub/img/mainfont.png\n"
    "[I][02-12 07:54:27.804][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://hlxxx.gameley02.cn/room/configInfo?udid=71683224-8126-5b97-b21c-6f34fc4648d3&version=0,0,0&channel=wx&client=windows&pt=windows&v=20073&rv=1724&lang=zh_CN&rand=2554\n"
    "[I][02-12 07:54:27.823][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://hlxxx.gameley02.cn/room/configInfo?udid=71683224-8126-5b97-b21c-6f34fc46\n"
    "[I][02-12 07:54:27.893][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:27.929][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:27.985][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:28.006][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://td.log-collect.lightlygame.com/sync_xcx\n"
    "[I][02-12 07:54:28.336][35100,2964][applet_runtime_manager.cc(321)] AppletRuntimeManager::DestoryAppletRuntime app_id = wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:28.359][35100,2964][applet_runtime.cc(104)] AppletRuntime::~AppletRuntime app_id_ = wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:28.381][35100,2964][xfile_host_mgr.cc(287)] XFileHostMgr:: do PostTaskInWMPFThread \n"
    "[I][02-12 07:54:28.404][35100,30844][xfile_host_mgr.cc(176)] XFileHostMgr::CloseXFile wxAppId = wx7a59aadcb728eca4,appid_map_array_[wxAppId].size() = 0\n"
    "[I][02-12 07:54:28.404][35100,30844][xfile_host_mgr.cc(176)] XFileHostMgr::CloseXFile wxAppId = wx7a59aadcb728eca4,appid_map_array_[wxAppId].size() = 0\n"
    "[I][02-12 07:54:28.438][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60774840 this:5F8DC930\n"
    "[I][02-12 07:54:28.470][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:54:28.489][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60774840\n"
    线程 8D54 已退出
    "[I][02-12 07:54:28.508][35100,2964][process_watcher.cc(82)] RenderProcessExited, ChildProcessTerminationInfo, exit_code = 0, renderer_has_visible_clients = 0, renderer_was_subframe = 1, status = 0\n"
    "[I][02-12 07:54:28.525][35100,2964][process_watcher.cc(103)] RenderProcessHostDestroyed\n"
    "[E][02-12 07:54:28.542][35100,2964][applet_runtime_manager.cc(211)] AppletRuntimeManager::GetAppletRuntimeByProcessID RETURN NULL process_id = 18492\n"
    "[I][02-12 07:54:28.559][35100,2964][mini_game_runtime_host.cc(27)] MiniGameRuntimeHost::~MiniGameRuntimeHost this = 5F7C3700\n"
    "[I][02-12 07:54:28.582][35100,30844][xlogger.cc(161)] XLoggerImpl::~XLoggerImpl 6109F060\n"
    "[W][02-12 07:54:28.615][35100,2964][base_js_api.cc(41)] CallbackWrapper::~CallbackWrapper callback_ = 1; api_name = operateWXData\n"
    "[W][02-12 07:54:28.646][35100,2964][base_js_api.cc(41)] CallbackWrapper::~CallbackWrapper callback_ = 1; api_name = operateWXData\n"
    "[I][02-12 07:54:28.978][35100,2964][applet_runtime_manager.cc(457)] AppletRuntimeManager::PreloadLoadRuntime available_physical_memory= 32711\n"
    "[I][02-12 07:54:28.996][35100,2964][applet_runtime.cc(99)] AppletRuntime::AppletRuntime app_id_ = \n"
    "[I][02-12 07:54:29.015][35100,2964][performance_info.cc(26)] [Perf] preload_start_time = 1676159669015\n"
    "[I][02-12 07:54:29.039][35100,2964][applet_runtime.cc(401)] AppletRuntime::InitSiteInstance render_client_id_ = 11\n"
    "[I][02-12 07:54:29.064][35100,2964][applet_runtime.cc(697)] AppletRuntime::StartPreload this = 5F88A680; app_id = preload-11\n"
    "[I][02-12 07:54:29.087][35100,2964][applet_runtime.cc(459)] ShowAppletWindow app_id_ = preload-11; for_preload = 1; is_minigame = 0\n"
    "[I][02-12 07:54:29.108][35100,2964][mini_program_service_host.cc(68)] MiniProgramServiceHost::MiniProgramServiceHost THIS = 60776D20; IsPreloadRuntime = 1; is_wait_download_ = 0\n"
    "[I][02-12 07:54:29.127][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:54:29.146][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:5F493AE0,webview_type:3,initial_size:0x0\n"
    "[I][02-12 07:54:29.168][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:5F493AE0 this:61332B40\n"
    "[I][02-12 07:54:29.189][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 5F493AE0\n"
    "[I][02-12 07:54:29.231][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:54:29.253][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:60775380,webview_type:5,initial_size:139x56\n"
    "[I][02-12 07:54:29.275][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:60775380 this:614B5450\n"
    "[I][02-12 07:54:29.293][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60775380\n"
    "[I][02-12 07:54:29.319][35100,2964][mini_program_service_host.cc(772)] [Perf] MiniProgramServiceHost::OnAfterCreated time = 1676159669318\n"
    "[I][02-12 07:54:29.341][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:29.363][35100,2964][render_process_host_impl.cc(1751)] Init, renderer_path = C:\\Users\\Misty\\AppData\\Roaming\\Tencent\\WeChat\\XPlugin\\Plugins\\RadiumWMPF\\6500\\extracted\\runtime\\WeChatAppEx.exe\n"
    "[I][02-12 07:54:29.386][35100,2964][content_browser_client_impl.cc(1173)] ExposeInterfacesToRenderer render_process_host = 11\n"
    "[I][02-12 07:54:29.407][35100,14504][sandbox_win.cc(1233)] StartSandboxedProcess:renderer\n"
    "[I][02-12 07:54:29.427][35100,14504][sandbox_rule_delegate.cc(39)] SetInitialRules Done.\n"
    "[I][02-12 07:54:29.448][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:29.470][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:54:29.493][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:29.515][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 1; url = https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:29.535][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-11/11/index.html\n"
    "[I][02-12 07:54:29.559][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:29.582][35100,14504][sandbox_win.cc(1259)] SpawnTarget start\n"
    "[I][02-12 07:54:29.610][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:29.639][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:54:29.665][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-11/11/index.html\n"
    "[I][02-12 07:54:29.692][35100,14504][sandbox_rule_delegate.cc(51)] BeforePolicyDone process_id:37664\n"
    "[I][02-12 07:54:29.713][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.html\n"
    "[I][02-12 07:54:29.730][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-11/11/index.html\n"
    "[I][02-12 07:54:29.747][35100,14504][sandbox_win.cc(1273)] SpawnTarget end\n"
    "[I][02-12 07:54:29.763][35100,14504][child_process_launcher_helper_win.cc(79)] LaunchProcessOnLauncherThread launch_result = 0\n"
    "[I][02-12 07:54:29.783][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:29.806][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:29.831][35100,30844][content_browser_client_impl.cc(1231)] <xlogger::mojom::XLogger> receiver \n"
    "[I][02-12 07:54:29.854][35100,30844][xlogger.cc(157)] XLoggerImpl::XLoggerImpl 5F7DEE20\n"
    "[I][02-12 07:54:29.883][35100,2964][content_browser_client_impl.cc(1180)] <applet::mojom::AppletRuntimeHost> receiver render_id = 11\n"
    "[I][02-12 07:54:29.907][35100,2964][applet_runtime.cc(640)] BindMiniProgramRuntimeHost mini_program_host_ = 0\n"
    "[I][02-12 07:54:29.932][35100,2964][content_browser_client_impl.cc(1196)] <applet::mojom::MiniGameRuntimeHost> receiver render_id = 11\n"
    "[I][02-12 07:54:29.957][35100,2964][applet_runtime.cc(649)] BindMiniGameRuntimeHost mini_game_host_ = 0; minigame_container_ = 1\n"
    "[I][02-12 07:54:29.983][35100,2964][mini_game_runtime_host.cc(23)] MiniGameRuntimeHost::MiniGameRuntimeHost this = 5FEC93C0\n"
    "[I][02-12 07:54:30.007][35100,2964][content_browser_client_impl.cc(1213)] <applet::mojom::CodeCacheHost> receiver render_id = 11\n"
    "[I][02-12 07:54:30.029][35100,2964][mini_program_runtime_host.cc(176)] MiniProgramRuntimeHost::Acquire render_client_id_ = 11\n"
    "[I][02-12 07:54:30.050][35100,2964][mini_game_runtime_host.cc(55)] MiniGameRuntimeHost::Acquire render_client_id_ = 11\n"
    "[I][02-12 07:54:30.086][35100,2964][mini_program_service_host.cc(783)] [Perf] MiniProgramServiceHost::OnLoadStart time = 1676159670085\n"
    "[I][02-12 07:54:30.112][35100,2964][tab_wrapper.cc(1091)] TabWrapper::CreateWmpfWorker appid = preload-11; url = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:30.137][35100,2964][shared_worker_service_impl.cc(222)] SharedWorkerServiceImpl::WmpfCreateWorker this = 5F452770\n"
    "[I][02-12 07:54:30.160][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:30.184][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:30.207][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:30.234][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:30.256][35100,2964][mini_program_service_host.cc(797)] [Perf] MiniProgramServiceHost::OnLoadEnd time = 1676159670255\n"
    "[I][02-12 07:54:30.275][35100,2964][shared_worker_service_impl.cc(366)] SharedWorkerServiceImpl::WmpfStartWorker did_fetch_worker_script = 1\n"
    "[I][02-12 07:54:30.293][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:30.310][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/index.js\n"
    "[I][02-12 07:54:30.328][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.js\n"
    "[I][02-12 07:54:30.346][35100,2964][shared_worker_connector_impl.cc(119)] SharedWorkerConnectorImpl::XWebWorkerConnect app_id = preload-11; worker = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:30.365][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-11; worker_url = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:30.387][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/index.js\n"
    "[E][02-12 07:54:30.508][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:54:30.545][35100,2964][mini_program_service_host.cc(424)] ReadFileSync; path = WAServiceMainContext.js; type = lib\n"
    "[I][02-12 07:54:30.579][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAServiceMainContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:30.601][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:54:30.620][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:30.639][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:54:30.661][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAServiceMainContext.js\n"
    "[I][02-12 07:54:30.680][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:30.710][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:30.731][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 0bd99d339fa167d5f6f284f745bda31b-6500-WAServiceMainContext.js.cachedata\n"
    "[I][02-12 07:54:30.751][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:30.769][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:54:30.787][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:30.810][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:54:30.832][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGame.js\n"
    "[I][02-12 07:54:30.862][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGame.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:30.886][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:54:30.910][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGame.js\n"
    "[I][02-12 07:54:30.944][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f53f331e9e44452d4ddcfafd46a94c91-6500-WAGame.js.cachedata\n"
    "[I][02-12 07:54:30.995][35100,2964][mini_program_service_host.cc(424)] ReadFileSync; path = WASubContext.js; type = lib\n"
    "[I][02-12 07:54:31.025][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WASubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:31.052][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WASubContext.js\n"
    "[I][02-12 07:54:31.085][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:54:31.107][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:31.129][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:54:31.152][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:54:31.176][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 5a4d234fa3e562e8930459a3fd7a6e4f-6500-WASubContext.js.cachedata\n"
    "[I][02-12 07:54:31.203][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:31.231][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:31.257][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:54:31.282][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:54:31.305][35100,2964][mini_program_service_host.cc(486)] MiniProgramServiceHost::OnAppEngineReady is_app_service_ready_ = 0; IsPreloadRuntime =1; is_wait_download_ = 0\n"
    "[I][02-12 07:54:31.328][35100,2964][performance_info.cc(38)] [Perf] app_service_ready_time_ = 1676159671327\n"
    "[I][02-12 07:54:31.350][35100,2964][applet_page_container.cc(520)] PreloadNextAppletPage isFrameSet = 0; processPreload = 1\n"
    "[I][02-12 07:54:31.371][35100,2964][applet_page.cc(64)] AppletPage::AppletPage() applet_controller_ = 5F6B40A0; contents_view_ = 5F4FFA00; is_preload_ = 1; is_preload_process_ = 1; this = 6147C600; ComponentId = 15\n"
    "[I][02-12 07:54:31.394][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:54:31.405][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:31.431][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:31.448][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:5F495AC0,webview_type:4,initial_size:138x56\n"
    "[I][02-12 07:54:31.466][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:5F495AC0 this:5F8D5680\n"
    "[I][02-12 07:54:31.488][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:54:31.507][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:54:31.528][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 5F495AC0\n"
    "[I][02-12 07:54:31.546][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:31.568][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:31.590][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:54:31.613][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:31.633][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:31.655][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGameSubContext.js\n"
    "[I][02-12 07:54:31.678][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 11\n"
    "[I][02-12 07:54:31.696][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = d793642b8b39a2bef6c18718bdbceb6d-6500-WAGameSubContext.js.cachedata\n"
    "[I][02-12 07:54:31.724][35100,2964][applet_page.cc(1299)] AppletPage::OnLoadStart is_main_frame = 1; url = https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:31.743][35100,2964][applet_page.cc(1304)] AppletPage::OnLoadEnd is_page_closed_ = 0; RoutingID = 9; is_main_frame = 1; url = https://servicewechat.com/preload-11/11/page-frame.html\n"
    "[I][02-12 07:54:31.761][35100,2964][applet_page.cc(129)] AppletPage::init APPID = preload-11; time = 1676159671761\n"
    "[I][02-12 07:54:31.789][35100,2964][applet_runtime.cc(816)] SetMiniProgramPreloadReady is_ready = 1\n"
    "[I][02-12 07:54:31.809][35100,2964][performance_info.cc(54)] [Perf] preload_end_time = 1676159671809\n"
    "[I][02-12 07:54:31.865][35100,2964][shared_worker_connector_impl.cc(93)] SharedWorkerConnectorImpl::XWebWorkerConnect url = https://servicewechat.com/preload-11/11/page-frame.html; webview_id = 15; render_id = 11\n"
    "[I][02-12 07:54:31.885][35100,2964][shared_worker_connector_impl.cc(119)] SharedWorkerConnectorImpl::XWebWorkerConnect app_id = preload-11; worker = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:31.902][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-11; worker_url = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:31.922][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAWebview.js\n"
    "[I][02-12 07:54:31.971][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f2615d5feef3c2d84f669661782764ef-6500-WAWebview.js.cachedata\n"
    线程 2968 已退出
    线程 8308 已退出
    "[I][02-12 07:54:59.607][35100,2964][applet_runtime_manager.cc(551)] LaunchApplet init_config.productId 1000; GetProductId() = 1000\n"
    "[I][02-12 07:54:59.630][35100,2964][applet_runtime_manager.cc(617)] AppletRuntimeManager::LaunchApplet USE PRELOAD runtime wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:59.653][35100,2964][mini_program_service_host.cc(80)] MiniProgramServiceHost::~MiniProgramServiceHost this = 60776D20; worker_url_ = https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:59.678][35100,2964][shared_worker_service_impl.cc(453)] SharedWorkerServiceImpl::WmpfDestroyWorker https://servicewechat.com/preload-11/11/index.js\n"
    "[I][02-12 07:54:59.694][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-11; worker_url = https://servicewechat.com/preload-11/11/index.js\n"
    "[E][02-12 07:54:59.709][35100,2964][shared_worker_host.cc(183)] Ignore SendReportsAndRemoveSource in system shutDown process or minigameRuntime,appid:wx7a59aadcb728eca4\n"
    "[I][02-12 07:54:59.726][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5FEEB5C0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:54:59.742][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 5F493AE0\n"
    "[I][02-12 07:54:59.759][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:54:59.775][35100,2964][tab_wrapper.cc(266)]  NavigationController:61332B40\n"
    "[I][02-12 07:54:59.792][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:5F493AE0 this:61332B40\n"
    "[I][02-12 07:54:59.809][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:54:59.826][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:5F493AE0\n"
    "[I][02-12 07:54:59.846][35100,2964][applet_page.cc(80)] AppletPage::~AppletPage() this = 6147C600; is_page_closed_ = 0\n"
    "[I][02-12 07:54:59.865][35100,2964][applet_page.cc(93)] AppletPage::closePage() this = 6147C600; pinus_webview_ = 1; html_webview_ = 0\n"
    "[I][02-12 07:54:59.882][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5F8DF900; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:54:59.899][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 5F495AC0\n"
    "[I][02-12 07:54:59.916][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:54:59.933][35100,2964][tab_wrapper.cc(266)]  NavigationController:5F8D5680\n"
    "[I][02-12 07:54:59.950][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:5F495AC0 this:5F8D5680\n"
    "[I][02-12 07:54:59.968][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:54:59.986][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:5F495AC0\n"
    "[I][02-12 07:55:00.007][35100,2964][performance_info.cc(61)] [Perf] start_time = 1676159700007\n"
    "[I][02-12 07:55:00.029][35100,2964][applet_package.cc(497)] initPublicInfoPath, current version = 827; new_publicVer = 318; filePath = E:\\WXFileRecv\\WeChat Files\\Applet\\publicLib\\318\\clientPublicLib.wxapkg\n"
    "[I][02-12 07:55:00.048][35100,2964][applet_package.cc(515)] AppletPackage::loadPublicLibWxpkg public_lib_path_ = \n"
    "[I][02-12 07:55:00.064][35100,2964][applet_package.cc(518)] AppletPackage::loadPublicLibWxpkg init PublicLib Path Not Exists\n"
    "[I][02-12 07:55:00.083][35100,2964][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 5F88A680\n"
    "[I][02-12 07:55:00.124][35100,2964][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:55:00.142][35100,2964][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg\n"
    "[I][02-12 07:55:00.170][35100,2964][applet_package.cc(185)] parsePkgFileContent correctMd5 = b1f95a71311d11f09dcfe1a4cd88a56a; current_md5 = 95bd5ff1612f86d577f8dfe0ea97f4de; pgk_file_path = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg; moduleName = __APP__\n"
    "[I][02-12 07:55:00.187][35100,2964][applet_package.cc(191)] Need check md5\n"
    "[E][02-12 07:55:00.204][35100,2964][applet_package.cc(193)] parsePkgFileContent check md5 failed,kill self ! \n"
    "[I][02-12 07:55:00.222][35100,2964][applet_package.cc(196)] parsePkgFileContentparsePkgFileContent DeleteFile succeed! \n"
    "[I][02-12 07:55:00.241][35100,2964][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 1\n"
    "[E][02-12 07:55:00.258][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:55:00.274][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[E][02-12 07:55:00.344][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:55:00.365][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    "[I][02-12 07:55:00.400][35100,2964][applet_runtime_manager.cc(635)] LaunchApplet preload_applet_runtime_ = 0 ; g_EnablePreload = 1; pending_preload_runtime_ = 0\n"
    "[E][02-12 07:55:00.433][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:55:00.464][35100,37428][sandbox_rule_delegate.cc(84)] AddFileSystemRule. dataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\wx7a59aadcb728eca4\n AddFileSystemRule. shareddataPath:E:\\WXFileRecv\\WeChat Files\\wxid_wp9bvftcln3b12\\Applet\\shared\n"
    "[E][02-12 07:55:01.346][35100,2964][kv_storage_manager.cc(78)] KVStorageMgr::chooseStorage invalid storageid = 3\n"
    "[I][02-12 07:55:01.402][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/game.js\n"
    "[I][02-12 07:55:01.427][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 0; utf8_path = /game.js\n"
    "[I][02-12 07:55:01.449][35100,30844][minigame_container.cc(1132)] GetPackageResourceResponse, g_decodeUrl = https://servicewechat.com/game.js; path = /game.js\n"
    "[E][02-12 07:55:01.470][35100,30844][applet_plugin_manager.cc(68)] AppletPluginManager::ReadPluginRes name = /game.js NOT FOUND\n"
    "[I][02-12 07:55:01.490][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:1,url:https://servicewechat.com/game.js\n"
    "[I][02-12 07:55:01.961][35100,2964][CONSOLE(1)] \"Unhandled promise rejection undefined\", source: https://servicewechat.com/__dev__/WAGame.js (1)\n"
    线程 8960 已启动,入口: crypt32.7787F060
    "[I][02-12 07:55:02.073][35100,2964][applet_runtime.cc(497)] OnFirstPageReady IsEnableCodeCache = 1\n"
    "[I][02-12 07:55:02.097][35100,2964][performance_info.cc(67)] [Perf] OnFirstPageReady ms = 2090\n"
    "[I][02-12 07:55:03.880][35100,2964][applet_runtime_manager.cc(321)] AppletRuntimeManager::DestoryAppletRuntime app_id = wx7a59aadcb728eca4\n"
    "[I][02-12 07:55:03.903][35100,2964][applet_runtime.cc(104)] AppletRuntime::~AppletRuntime app_id_ = wx7a59aadcb728eca4\n"
    "[I][02-12 07:55:03.924][35100,2964][xfile_host_mgr.cc(287)] XFileHostMgr:: do PostTaskInWMPFThread \n"
    "[I][02-12 07:55:03.941][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5FEEB1B0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:55:03.941][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5FEEB1B0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:55:03.972][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 60775380\n"
    "[I][02-12 07:55:03.988][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:55:04.005][35100,2964][tab_wrapper.cc(266)]  NavigationController:614B5450\n"
    "[I][02-12 07:55:04.023][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60775380 this:614B5450\n"
    "[I][02-12 07:55:04.042][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:55:04.059][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60775380\n"
    "[I][02-12 07:55:04.077][35100,2964][process_watcher.cc(82)] RenderProcessExited, ChildProcessTerminationInfo, exit_code = 0, renderer_has_visible_clients = 0, renderer_was_subframe = 1, status = 0\n"
    "[I][02-12 07:55:04.094][35100,2964][process_watcher.cc(103)] RenderProcessHostDestroyed\n"
    "[E][02-12 07:55:04.111][35100,2964][applet_runtime_manager.cc(211)] AppletRuntimeManager::GetAppletRuntimeByProcessID RETURN NULL process_id = 37664\n"
    "[I][02-12 07:55:04.132][35100,2964][mini_game_runtime_host.cc(27)] MiniGameRuntimeHost::~MiniGameRuntimeHost this = 5FEC93C0\n"
    "[I][02-12 07:55:04.156][35100,30844][xlogger.cc(161)] XLoggerImpl::~XLoggerImpl 5F7DEE20\n"
    "[I][02-12 07:55:04.428][35100,2964][applet_runtime_manager.cc(457)] AppletRuntimeManager::PreloadLoadRuntime available_physical_memory= 32745\n"
    "[I][02-12 07:55:04.447][35100,2964][applet_runtime.cc(99)] AppletRuntime::AppletRuntime app_id_ = \n"
    "[I][02-12 07:55:04.464][35100,2964][performance_info.cc(26)] [Perf] preload_start_time = 1676159704464\n"
    "[I][02-12 07:55:04.485][35100,2964][applet_runtime.cc(401)] AppletRuntime::InitSiteInstance render_client_id_ = 12\n"
    "[I][02-12 07:55:04.506][35100,2964][applet_runtime.cc(697)] AppletRuntime::StartPreload this = 5F889180; app_id = preload-12\n"
    "[I][02-12 07:55:04.530][35100,2964][applet_runtime.cc(459)] ShowAppletWindow app_id_ = preload-12; for_preload = 1; is_minigame = 0\n"
    "[I][02-12 07:55:04.553][35100,2964][mini_program_service_host.cc(68)] MiniProgramServiceHost::MiniProgramServiceHost THIS = 60772680; IsPreloadRuntime = 1; is_wait_download_ = 0\n"
    "[I][02-12 07:55:04.571][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:55:04.592][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:5F48D460,webview_type:3,initial_size:0x0\n"
    "[I][02-12 07:55:04.615][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:5F48D460 this:5FEF4120\n"
    "[I][02-12 07:55:04.642][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 5F48D460\n"
    "[I][02-12 07:55:04.695][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:55:04.721][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:5F494120,webview_type:5,initial_size:139x56\n"
    "[I][02-12 07:55:04.743][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:5F494120 this:5F7621C0\n"
    "[I][02-12 07:55:04.766][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 5F494120\n"
    "[I][02-12 07:55:04.794][35100,2964][mini_program_service_host.cc(772)] [Perf] MiniProgramServiceHost::OnAfterCreated time = 1676159704794\n"
    "[I][02-12 07:55:04.811][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-12/12/page-frame.html\n"
    "[I][02-12 07:55:04.828][35100,2964][render_process_host_impl.cc(1751)] Init, renderer_path = C:\\Users\\Misty\\AppData\\Roaming\\Tencent\\WeChat\\XPlugin\\Plugins\\RadiumWMPF\\6500\\extracted\\runtime\\WeChatAppEx.exe\n"
    "[I][02-12 07:55:04.847][35100,2964][content_browser_client_impl.cc(1173)] ExposeInterfacesToRenderer render_process_host = 12\n"
    "[I][02-12 07:55:04.870][35100,14504][sandbox_win.cc(1233)] StartSandboxedProcess:renderer\n"
    "[I][02-12 07:55:04.888][35100,14504][sandbox_rule_delegate.cc(39)] SetInitialRules Done.\n"
    "[I][02-12 07:55:04.907][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:04.926][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:55:04.944][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-12/12/page-frame.html\n"
    "[I][02-12 07:55:04.966][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 1; url = https://servicewechat.com/preload-12/12/page-frame.html\n"
    "[I][02-12 07:55:04.985][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-12/12/index.html\n"
    "[I][02-12 07:55:05.005][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-12/12/page-frame.html\n"
    "[I][02-12 07:55:05.028][35100,14504][sandbox_win.cc(1259)] SpawnTarget start\n"
    "[I][02-12 07:55:05.054][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:05.076][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:55:05.097][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-12/12/index.html\n"
    "[I][02-12 07:55:05.119][35100,14504][sandbox_rule_delegate.cc(51)] BeforePolicyDone process_id:33760\n"
    "[I][02-12 07:55:05.141][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.html\n"
    "[I][02-12 07:55:05.159][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-12/12/index.html\n"
    "[I][02-12 07:55:05.181][35100,14504][sandbox_win.cc(1273)] SpawnTarget end\n"
    "[I][02-12 07:55:05.201][35100,14504][child_process_launcher_helper_win.cc(79)] LaunchProcessOnLauncherThread launch_result = 0\n"
    "[I][02-12 07:55:05.227][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:05.260][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:05.290][35100,30844][content_browser_client_impl.cc(1231)] <xlogger::mojom::XLogger> receiver \n"
    "[I][02-12 07:55:05.319][35100,30844][xlogger.cc(157)] XLoggerImpl::XLoggerImpl 6109F0C8\n"
    "[I][02-12 07:55:05.345][35100,2964][content_browser_client_impl.cc(1180)] <applet::mojom::AppletRuntimeHost> receiver render_id = 12\n"
    "[I][02-12 07:55:05.369][35100,2964][applet_runtime.cc(640)] BindMiniProgramRuntimeHost mini_program_host_ = 0\n"
    "[I][02-12 07:55:05.393][35100,2964][content_browser_client_impl.cc(1196)] <applet::mojom::MiniGameRuntimeHost> receiver render_id = 12\n"
    "[I][02-12 07:55:05.416][35100,2964][applet_runtime.cc(649)] BindMiniGameRuntimeHost mini_game_host_ = 0; minigame_container_ = 1\n"
    "[I][02-12 07:55:05.440][35100,2964][mini_game_runtime_host.cc(23)] MiniGameRuntimeHost::MiniGameRuntimeHost this = 6137FD80\n"
    "[I][02-12 07:55:05.463][35100,2964][content_browser_client_impl.cc(1213)] <applet::mojom::CodeCacheHost> receiver render_id = 12\n"
    "[I][02-12 07:55:05.488][35100,2964][mini_program_runtime_host.cc(176)] MiniProgramRuntimeHost::Acquire render_client_id_ = 12\n"
    "[I][02-12 07:55:05.511][35100,2964][mini_game_runtime_host.cc(55)] MiniGameRuntimeHost::Acquire render_client_id_ = 12\n"
    "[I][02-12 07:55:05.548][35100,2964][mini_program_service_host.cc(783)] [Perf] MiniProgramServiceHost::OnLoadStart time = 1676159705547\n"
    "[I][02-12 07:55:05.573][35100,2964][tab_wrapper.cc(1091)] TabWrapper::CreateWmpfWorker appid = preload-12; url = https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:05.598][35100,2964][shared_worker_service_impl.cc(222)] SharedWorkerServiceImpl::WmpfCreateWorker this = 5F452770\n"
    "[I][02-12 07:55:05.624][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:05.646][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:05.668][35100,30844][mini_program_service_host.cc(834)] MiniProgramServiceHost::OnShouldInterceptRequest is_main_frame = 0; url = https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:05.693][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:05.716][35100,2964][mini_program_service_host.cc(797)] [Perf] MiniProgramServiceHost::OnLoadEnd time = 1676159705716\n"
    "[I][02-12 07:55:05.739][35100,2964][shared_worker_service_impl.cc(366)] SharedWorkerServiceImpl::WmpfStartWorker did_fetch_worker_script = 1\n"
    "[I][02-12 07:55:05.759][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:05.779][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /index.js\n"
    "[I][02-12 07:55:05.796][35100,2964][shared_worker_connector_impl.cc(93)] SharedWorkerConnectorImpl::XWebWorkerConnect url = https://servicewechat.com/preload-12/12/page-frame.html; webview_id = 1000000; render_id = 12\n"
    "[I][02-12 07:55:05.815][35100,2964][shared_worker_connector_impl.cc(119)] SharedWorkerConnectorImpl::XWebWorkerConnect app_id = preload-12; worker = https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:05.836][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-12; worker_url = https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:05.863][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/index.js\n"
    "[E][02-12 07:55:05.995][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:55:06.045][35100,2964][mini_program_service_host.cc(424)] ReadFileSync; path = WAServiceMainContext.js; type = lib\n"
    "[I][02-12 07:55:06.077][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAServiceMainContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:55:06.102][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:55:06.124][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:55:06.146][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAServiceMainContext.js\n"
    "[I][02-12 07:55:06.164][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:55:06.198][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:06.222][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 0bd99d339fa167d5f6f284f745bda31b-6500-WAServiceMainContext.js.cachedata\n"
    "[I][02-12 07:55:06.245][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:55:06.270][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:55:06.296][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:55:06.330][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:55:06.357][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGame.js\n"
    "[I][02-12 07:55:06.390][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGame.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:55:06.418][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGame.js\n"
    "[I][02-12 07:55:06.445][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAGame.js\n"
    "[I][02-12 07:55:06.484][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f53f331e9e44452d4ddcfafd46a94c91-6500-WAGame.js.cachedata\n"
    "[I][02-12 07:55:06.565][35100,2964][mini_program_service_host.cc(424)] ReadFileSync; path = WASubContext.js; type = lib\n"
    "[I][02-12 07:55:06.594][35100,2964][mini_program_service_host.cc(449)] ReadFileSync UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WASubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:55:06.617][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WASubContext.js\n"
    "[I][02-12 07:55:06.644][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:0, request_context_type:IFRAME\n"
    "[I][02-12 07:55:06.667][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:55:06.686][35100,2964][minigame_container.cc(583)] MinigameContainer OnGameEngineReady\n"
    "[I][02-12 07:55:06.706][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.html\n"
    "[I][02-12 07:55:06.728][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.html\n"
    "[I][02-12 07:55:06.749][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = 5a4d234fa3e562e8930459a3fd7a6e4f-6500-WASubContext.js.cachedata\n"
    "[I][02-12 07:55:06.770][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:06.795][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:55:06.823][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /frame.js\n"
    "[I][02-12 07:55:06.845][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/frame.js\n"
    "[I][02-12 07:55:06.866][35100,2964][mini_program_service_host.cc(486)] MiniProgramServiceHost::OnAppEngineReady is_app_service_ready_ = 0; IsPreloadRuntime =1; is_wait_download_ = 0\n"
    "[I][02-12 07:55:06.888][35100,2964][performance_info.cc(38)] [Perf] app_service_ready_time_ = 1676159706887\n"
    "[I][02-12 07:55:06.909][35100,2964][applet_page_container.cc(520)] PreloadNextAppletPage isFrameSet = 0; processPreload = 1\n"
    "[I][02-12 07:55:06.929][35100,2964][applet_page.cc(64)] AppletPage::AppletPage() applet_controller_ = 5F907980; contents_view_ = 5F4FA480; is_preload_ = 1; is_preload_process_ = 1; this = 6071BD40; ComponentId = 18\n"
    "[I][02-12 07:55:06.948][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:55:06.969][35100,2964][pinus_context.cc(155)] CreateInternal\n"
    "[I][02-12 07:55:06.990][35100,30844][minigame_container.cc(933)] OnShouldInterceptRequest, IsGameLibResource = 1; utf8_path = /__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:55:07.010][35100,2964][tab_wrapper.cc(111)] TabWrapper,this:60774160,webview_type:4,initial_size:138x56\n"
    "[I][02-12 07:55:07.029][35100,2964][navigation_controller_impl.cc(296)] AddObserver observer:60774160 this:60D4BC00\n"
    "[I][02-12 07:55:07.047][35100,30844][minigame_container.cc(1103)] GetGameLibResourceResponse UseCodeCache, cache_config = //XWEB_SCRIPT_VER2:{\"cache_option\":0,\"compile_mode\":3,\"js_name\":\"WAGameSubContext.js\",\"wmpf_version\":6500}XWEB_SCRIPT_END\n"
    "[I][02-12 07:55:07.070][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/__dev__/WAGameSubContext.js\n"
    "[I][02-12 07:55:07.090][35100,2964][pinus_context.cc(462)] PinusWebViewImpl::CreateOnUIThread END webview_ = 60774160\n"
    "[I][02-12 07:55:07.111][35100,2964][pinus_context.cc(201)] LoadUrl URL = https://servicewechat.com/preload-12/12/page-frame.html\n"
    "[I][02-12 07:55:07.134][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:07.153][35100,2964][content_browser_client_impl.cc(1300)] ShouldOverrideUrlLoading,is_redirect:0, blink::mojom::RequestContextType::HYPERLINK == request_context_type:0,blink::mojom::RequestContextType::LOCATION == request_context_type:1, request_context_type:LOCATION\n"
    "[I][02-12 07:55:07.171][35100,30844][tab_request_intrceptor.cc(28)] OnRequest:https://servicewechat.com/preload-12/12/page-frame.html\n"
    "[I][02-12 07:55:07.192][35100,30844][wmpf_proxying_url_loader_factory.cc(315)] InterceptResponseReceived,intercept by native Resource:0,url:https://servicewechat.com/preload-12/12/page-frame.html\n"
    ???
    "[I][02-12 07:55:07.238][35100,2964][content_browser_client_impl.cc(1273)] OverrideURLLoaderFactoryParams, Is AppletRuntime, process_id = 12\n"
    "[I][02-12 07:55:07.259][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = d793642b8b39a2bef6c18718bdbceb6d-6500-WAGameSubContext.js.cachedata\n"
    "[I][02-12 07:55:07.293][35100,2964][applet_page.cc(1299)] AppletPage::OnLoadStart is_main_frame = 1; url = https://servicewechat.com/preload-12/12/page-frame.html\n"
    ???
    "[I][02-12 07:55:07.335][35100,2964][applet_page.cc(129)] AppletPage::init APPID = preload-12; time = 1676159707334\n"
    "[I][02-12 07:55:07.367][35100,2964][applet_runtime.cc(816)] SetMiniProgramPreloadReady is_ready = 1\n"
    "[I][02-12 07:55:07.386][35100,2964][performance_info.cc(54)] [Perf] preload_end_time = 1676159707385\n"
    ???
    ???
    ???
    "[I][02-12 07:55:07.491][35100,2964][xweb_script_host.cc(98)] LoadFile type = kLib; file_name = WAWebview.js\n"
    "[I][02-12 07:55:07.541][35100,2964][xweb_script_host.cc(98)] LoadFile type = kCache; file_name = f2615d5feef3c2d84f669661782764ef-6500-WAWebview.js.cachedata\n"
    线程 5760 已退出
    断点已启用!
    断点已禁用!
    断点已启用!
    线程 8960 已退出
    "[I][02-12 07:55:46.334][35100,2964][applet_runtime_manager.cc(551)] LaunchApplet init_config.productId 1000; GetProductId() = 1000\n"
    "[I][02-12 07:55:46.357][35100,2964][applet_runtime_manager.cc(617)] AppletRuntimeManager::LaunchApplet USE PRELOAD runtime wx7a59aadcb728eca4\n"
    "[I][02-12 07:55:46.383][35100,2964][mini_program_service_host.cc(80)] MiniProgramServiceHost::~MiniProgramServiceHost this = 60772680; worker_url_ = https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:46.409][35100,2964][shared_worker_service_impl.cc(453)] SharedWorkerServiceImpl::WmpfDestroyWorker https://servicewechat.com/preload-12/12/index.js\n"
    "[I][02-12 07:55:46.430][35100,2964][shared_worker_service_impl.cc(440)] SharedWorkerServiceImpl::WmpfFindMatchingHost app_id = preload-12; worker_url = https://servicewechat.com/preload-12/12/index.js\n"
    "[E][02-12 07:55:46.450][35100,2964][shared_worker_host.cc(183)] Ignore SendReportsAndRemoveSource in system shutDown process or minigameRuntime,appid:wx7a59aadcb728eca4\n"
    "[I][02-12 07:55:46.470][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 5FEF1EC0; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:55:46.492][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 5F48D460\n"
    "[I][02-12 07:55:46.512][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:55:46.534][35100,2964][tab_wrapper.cc(266)]  NavigationController:5FEF4120\n"
    "[I][02-12 07:55:46.555][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:5F48D460 this:5FEF4120\n"
    "[I][02-12 07:55:46.573][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:55:46.590][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:5F48D460\n"
    "[I][02-12 07:55:46.607][35100,2964][applet_page.cc(80)] AppletPage::~AppletPage() this = 6071BD40; is_page_closed_ = 0\n"
    "[I][02-12 07:55:46.623][35100,2964][applet_page.cc(93)] AppletPage::closePage() this = 6071BD40; pinus_webview_ = 1; html_webview_ = 0\n"
    "[I][02-12 07:55:46.640][35100,2964][pinus_context.cc(110)] PinusWebViewImpl::~PinusWebViewImpl this = 60D4E090; closed_ = 1; webview_ = 1\n"
    "[I][02-12 07:55:46.655][35100,2964][tab_wrapper.cc(254)] TabWrapper::~TabWrapper() THIS = 60774160\n"
    "[I][02-12 07:55:46.673][35100,2964][tab_wrapper.cc(262)] TabWrapper::~TabWrapper() Begin Remove NavigationController obs.\n"
    "[I][02-12 07:55:46.690][35100,2964][tab_wrapper.cc(266)]  NavigationController:60D4BC00\n"
    "[I][02-12 07:55:46.708][35100,2964][navigation_controller_impl.cc(302)] RemoveObserver observer:60774160 this:60D4BC00\n"
    "[I][02-12 07:55:46.725][35100,2964][tab_wrapper.cc(273)] TabWrapper::~TabWrapper() Begin reset tab_.\n"
    "[I][02-12 07:55:46.742][35100,2964][tab_wrapper.cc(1434)] WebContentsDestroyed this:60774160\n"
    "[I][02-12 07:55:46.759][35100,2964][performance_info.cc(61)] [Perf] start_time = 1676159746760\n"
    "[I][02-12 07:55:46.777][35100,2964][applet_package.cc(497)] initPublicInfoPath, current version = 827; new_publicVer = 318; filePath = E:\\WXFileRecv\\WeChat Files\\Applet\\publicLib\\318\\clientPublicLib.wxapkg\n"
    "[I][02-12 07:55:46.796][35100,2964][applet_package.cc(515)] AppletPackage::loadPublicLibWxpkg public_lib_path_ = \n"
    "[I][02-12 07:55:46.815][35100,2964][applet_package.cc(518)] AppletPackage::loadPublicLibWxpkg init PublicLib Path Not Exists\n"
    "[I][02-12 07:55:46.835][35100,2964][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 5F889180\n"
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    "[I][02-12 07:55:54.515][35100,2964][applet_runtime.cc(204)] InitAppletPkg, applet_plugin_manager is_loaded = 1\n"
    "[I][02-12 07:55:54.533][35100,2964][applet_package.cc(123)] AppletPackage::loadModule moduleName = __APP__; pkgFilePath = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg\n"
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    "[I][02-12 07:55:56.737][35100,2964][applet_package.cc(185)] parsePkgFileContent correctMd5 = b1f95a71311d11f09dcfe1a4cd88a56a; current_md5 = 95bd5ff1612f86d577f8dfe0ea97f4de; pgk_file_path = E:\\WXFileRecv\\WeChat Files\\Applet\\wx7a59aadcb728eca4\\140\\__WITHOUT_MULTI_PLUGINCODE__.wxapkg; moduleName = __APP__\n"
    "[I][02-12 07:55:56.753][35100,2964][applet_package.cc(191)] Need check md5\n"
    "[E][02-12 07:55:56.770][35100,2964][applet_package.cc(193)] parsePkgFileContent check md5 failed,kill self ! \n"
    "[I][02-12 07:55:56.787][35100,2964][applet_package.cc(196)] parsePkgFileContentparsePkgFileContent DeleteFile succeed! \n"
    "[I][02-12 07:55:56.806][35100,2964][applet_runtime.cc(231)] InitAppletPkg, moduleName = __APP__; main_pkg_loaded = 1\n"
    "[E][02-12 07:55:56.824][35100,2964][applet_config.cc(155)] AppletAppConfig::startParse IsEmpty(m_configJson)\n"
    "[I][02-12 07:55:56.843][35100,2964][applet_manager.cc(1093)] getInitWindowSizeAsDp, game windowSize = 495x880\n"
    INT3 断点于 wechatappex.05D59C49 (05D59C49)!
    

    有了日志就可以快速的分析了,查看日志搜索md5.wxapkgchecksum等字样可以以迅速发现校验的位置
    可以看到md5的检查发生在parsePkgFileContent中

     correctMd5_content_1 = HIBYTE(v121);
        if ( v121 < 0 )
          correctMd5_content_1 = HIDWORD(correctMd5);
        if ( correctMd5_content_1 && !*(_DWORD *)(sub_169B180((_DWORD *)*this) + 332) )
        {
          if ( CheckLogLevel(2) )
          {
            sub_2531D20((char *)&v122, "../../applet/applet/runtime/applet_package.cc", 191, 2);
            AddLogString((int)&v123, (int)"Need check md5", 14);
            DoLog(&v122);
          }
          v36 = HIBYTE(v121);
          if...
          v38 = HIBYTE(v119);
          if ( v119 < 0 )
          {
            v18 = (int *)v117;
            v38 = v118;
          }
          if ( !(unsigned __int8)CompareStrNoCase(v18, v38, correctMd5_content, v36) )
          {
            if ( CheckLogLevel(4) )
            {
              sub_2531D20((char *)&v122, "../../applet/applet/runtime/applet_package.cc", 193, 4);
              v85 = AddLogString((int)&v123, (int)"parsePkgFileContent", 19);
              AddLogString(v85, (int)" check md5 failed,kill self ! ", 30);
              DoLog(&v122);
            }
    

    逆向分析小程序 – 优雅的Patch检查

    • 分析这段逻辑,想要绕过有两个思路
    • 思路1:patch md5的比对,让其失效
    • 简单直接,绝对有效
    • 当版本更新的时候需要重新分析一遍WeChatAppEx
    • 问题是WeChatAppEx太大了,分析起来很慢
    • 思路2:让correctMd5为空
    • 如果能找到不依赖二进制的pattern,那么就非常舒服
    • correctMd5的来源
    • 在当前函数中看,correctMd5来源于this[135]查表,这种完全没法定位
    • 从日志中看,correctMd5对应的内容最早出现在AppletManager::Init
    "[D][02-12 07:47:54.772][19152,31120][applet_manager.cc(139)] AppletManager::Init app_id_ = wx7a59aadcb728eca4; moduleListInfo = [{\"independent\":false,\"md5\":\"e0275c5cd469811468a54b6133a36c50\",\"name\":\"/playableDemo/\"},{\"independent\":false,\"md5\":\"b1f95a71311d11f09dcfe1a4cd88a56a\",\"name\":\"__APP__\"}]\n\n"
    "[D][02-12 07:47:54.773][19152,31120][applet_subpkg_mgr.cc(32)] AppletSubPkgMgr::init subInfos = [{\"independent\":false,\"md5\":\"e0275c5cd469811468a54b6133a36c50\",\"name\":\"/playableDemo/\"},{\"independent\":false,\"md5\":\"b1f95a71311d11f09dcfe1a4cd88a56a\",\"name\":\"__APP__\"}]\n\n"
    "[I][02-12 07:47:54.774][19152,31120][applet_plugin_manager.cc(37)] AppletPluginManager::Init pluginInfos = [ {\r\n   \"md5\": \"644acbce66bd1f1c387b50e01bd74730\",\r\n   \"name\": \"wx70d8aa25ec591f7a\",\r\n   \"prefix_path\": \"__plugin__/wx70d8aa25ec591f7a\",\r\n   \"version\": 24\r\n} ]\r\n; pluginDir = E:\\WXFileRecv\\WeChat Files\\Applet\\; 2AB30380\n"
    
  • 显然,md5是从json里面取出来的,所以肯定有"md5"这样一个字符串
  • IDA中搜索00 “md5” 00可以找到单独的md5字符串,找到了两个
  • 第一个有很多引用,第二个则仅仅用于TLS库中(忽略)
  • 在第一个的引用中,有几个就来自于 AppletSubPkgMgr::init 系列函数
  • stdstr::init1((int **)&v18, (char *)&PrefixString);
        sub_2CD3B11((int)&v34, v22, "name", v18, v19);
        if ( v28[11] < 0 )
          sub_5D85270(*(int *)v28);
        v24 = &v20;
        *(_DWORD *)&v28[8] = DWORD2(v34);
        *(_QWORD *)v28 = v34;
        v19 = DWORD2(v34);
        stdstr::init1((int **)&v18, (char *)&PrefixString);
        v11 = v22;
        sub_2CD3B11((int)&v34, v22, "md5", v18, v19);
        if ( v29 < 0 )
          sub_5D85270(*(int *)&v28[12]);
        v29 = DWORD2(v34);
        *(_QWORD *)&v28[12] = v34;
        LOBYTE(v31) = sub_2CD3957(v11, "independent", 0);
        v12 = v21[5];
    
  • 可以观察到 name md5 independent 等key出现
  • 其他的引用均是各种密码学算法列表中作为element,考虑到MD5已被淘汰,这些引用并不重要
  • 进一步探究moduleListInfo的来源,可以找到WeChatWin.dll中的单独md5字符串
  • md5、wxapkg_md5、name、independent等字样均一个函数中,且伴随着Json库函数调用,显然就是他负责和WeChatAppEx通讯
  • Patch的方法:在WeChatAppEx中直接修改md5为md6即可解决
  • 在WeChatWin.dll中修改这个字符串同样能实现效果,但考虑到微信中的逻辑较多,直接修改md5的后果难以预计,故还是在WeChatAppEx中修改更为稳妥
  • (测试通过~)
  • iOS微信的小程序Patch

    万事第一步:解锁日志

    考虑到上面的思路,我们首先解锁日志输出,随后根据日志输出来寻找入手点
    通过直接搜索wxapkg字符串,我们可以找到大量拼接wxapkg路径和获取wxapkgMD5的字符串
    随便点进去一个逻辑(例如找 wxapkg ready这个字符串的引用)
    引用位于MBPackageLogic类中,通过+[iConsole logWithLevel:module:errorCode:file:line:func:format:]函数输出日志
    找了一圈函数原型找到了这个:https://github.com/sunshinek31/WeChatReverse/blob/6d14138e6d40b83d1c60a1b2546185cb63368b3b/WeChatReverse/ViewController/iConsole.m#L33

    + (void)logWithLevel:(int)level module:(const char *)module errorCode:(unsigned int)errorCode file:(const char *)file line:(int)line func:(const char *)func format:(NSString *)format, ...
    {
        
    }
    
    + (void)logWithLevel:(int)level module:(const char *)module errorCode:(unsigned int)errorCode file:(const char *)file line:(int)line func:(const char *)func message:(id)arg7
    {
        
    }
    

    考虑到vararg不好hook,我们直接hook内部的函数

    v17 = objc_retain(format);
      if ( v17 && (unsigned int)+[AMLogHelper shouldLog:](&OBJC_CLASS___iConsole, "shouldLog:", v15) )
      {
        v18 = objc_alloc((Class)&OBJC_CLASS___NSString);
        v19 = objc_msgSend(v18, "initWithFormat:arguments:", v17, &args);
        -[__objc2_class logWithLevel:module:errorCode:file:line:func:message:](
          a1,
          "logWithLevel:module:errorCode:file:line:func:message:",
          v15,
          a4,
          v13,
          a6,
          v11,
          a8,
          v19);
        objc_release(v19);
      }
      objc_release(v17);
    }
    

    只要让shouldLog返回YES,然后hook下面的Log Message函数即可

    环境:Theos hook + 轻松签

    Theos配置generator为internal避免引入MobileSubstrate
    %config(generator=internal)
    不够,只是让Tweak.x → Tweak.m的过程使用objc-message.h,链接还是带着substrate
    阅读Theos makefile源码可以看出需要让LOGOS_DEFAULT_GENERATOR不等于substrate或libhooker
    故添加:wxapkgpatch_LOGOS_DEFAULT_GENERATOR = internal
    轻松签直接注入即可

    通过Hook分析:寻找wxapkg加载位置

    尝试hook wxapkg ready\n触发时的逻辑
    成功时会执行 – [MBPackageLogic setWxapkgPathUrl:]
    失败,没有触发
    分析日志:
    iOS微信小程序日志
    搜索md5发现结果太乱,无果
    搜索.wxapkg尝试寻找路径
    发现了这样两个函数涉及到wxapkg的路径

    +[WALocalCacheFilePathUtil getWeAppLocalCacheFilePathWithAppid:version:isDebugMode:packageType:moduleName:encryptType:versionDesc:]
    
    -[WAPackageInfoCacheLogic unpackPkgFromPath:appid:version:isDebugMode:packageType:extParams:]
    

    第一个是获取路径,有很多个函数用
    第二个显然是解压

    Patch:尝试优雅的Hook

    优雅方式:仅Hook unpackPkgFromPath使用的路径,绕过checksum

    思路:在.wxapkg文件旁边放一个.wxapkg_patch文件,让文件checksum用wxapkg,实际使用的时候用wxapkg_patch
    unpackPkg最后的函数是 - (BOOL)unpackPkgWithFilePath:(NSString *)filePath unpackLib:(void *)lib,之后便会转入C代码继续执行
    只要hook这个函数,不管body里面放什么东西,微信都会崩溃
    考虑到其他函数可以正常hook,因此不像是反调试,问题大概率出现在logos的hook方法上
    上下追踪lib参数,发现并没有任何的objc引用 ⇒ lib参数为纯c变量
    猜测lib参数被ARC自动retain导致内存访问异常,将void *改为uintptr_t后,微信正常运行

    结果:hook成功了,小程序能正常打开,但是小程序的patch没有生效
    微信内部还有另外一层

    简单粗暴:去除校验和

    修改wxapkg文件来强制触发校验失败,分析日志找出不同点
    搜索上面提到的两个函数(unpackPkgWithFilePathgetWeAppLocalCacheFilePathWithAppid)可以轻松找到报checksum错误的点:

    Feb 12 23:39:01 WeChat(wxapkgpatch.dylib)[18182] <Notice>: iConsole log: level4 module-WeAppError errCode-0 (WALocalCacheMgr.mm:405):-[WALocalCacheMgr verifyLocalCacheChecksum:] verifyLocalCacheChecksum error! localFileCheckSum:0d31e0517f00984517e84ea139c333e1, checkSum:5c5bfeb1db97e7cd9ad59852177d8e38
    Feb 12 23:39:01 WeChat(wxapkgpatch.dylib)[18182] <Notice>: iConsole log: level2 module-WeApp errCode-0 (WADatabaseMgr.mm:1227):-[WADatabaseMgr deletePluginVersionInfoByAppId:version:] delete pluginVersionInfo success! appId = wxee969de81bba9a45, version = 38
    

    直接hook verifyLocalCacheChecksum返回对即可
    考虑到微信的小程序每个版本会存放在单独的文件夹,因此直接将小程序对应目录设置为只读,让报错更直观

    意外收获

    WCPureTweak 微信净化的某个版本会导致iConsole输出不出来东西,找个别的版本或者禁用就可以了

    最终Tweak.x

    %config(generator=internal)
    
    #import <Foundation/Foundation.h>
    #import <CoreFoundation/CoreFoundation.h>
    
    NSString *getPatchWxapkg(NSString *path) {
        if (![path hasSuffix:@".wxapkg"]) {
            return path;
        }
        NSString *patchPath = [NSString stringWithFormat:@"%@%@", path, @"_patch"];
        NSLog(@"wxapkg_patch: Checking patch wxapkg path: %@", patchPath);
        if ([[NSFileManager defaultManager] fileExistsAtPath:patchPath]) {
            NSLog(@"wxapkg_patch: Patch exists, overriding wxapkg path from %@ to %@", path, patchPath);
            return patchPath;
        }
        return path;
    }
    
    %hook MBPackageLogic
    - (void) setWxapkgPathUrl: (NSURL *)url {
        NSString *newPath = getPatchWxapkg([url path]);
        %orig([NSURL URLWithString:newPath]);
    }
    %end
    
    %hook WAPackageInfoCacheLogic
    - (BOOL)unpackPkgWithFilePath:(NSString *)filePath unpackLib:(uintptr_t)lib {
        NSLog(@"wxapkg_patch: Entered unpackPkgWithFilePath %@ %lx!", filePath, lib);
        NSString *newPath = getPatchWxapkg(filePath);
        NSLog(@"wxapkg_patch: Final Path %@", newPath);
        return %orig(newPath, lib);
    }
    %end
    
    %hook WALocalCacheMgr
    
    - (BOOL) verifyLocalCacheChecksum:(id)a1 {
        return YES;
    }
    
    %end
    
    
    %hook AMLogHelper
    + (BOOL) shouldLog:(int)level {
        return YES;
    }
    %end
    
    %hook iConsole
    
    + (void)logWithLevel:(int)level module:(const char *)module errorCode:(unsigned int)errorCode file:(const char *)file line:(int)line func:(const char *)func message:(NSString *)arg7
    {
        NSLog(@"iConsole log: level%d module-%s errCode-%d (%s:%d):%s %@", level, module, errorCode, file, line, func, arg7);
    }
    %end
    
    %ctor {
        NSLog(@"wxapkg_patch: Initializing!");
        %init;
    }
    

    iOS上的小程序Debug

    当前日志状况

    经过上面的patch后,小程序的日志状态是这样的
    小程序的Console不会输出到NSLog那边
    小程序的错误(SyntaxError等)会通过-[WAEJBindingGlobalUtils _func_log:argc:argv:exception:]-[WAGameViewController log:func:line:]传出

    -[WAGameViewController log:func:line:] GameConsole: -[WAEJBindingGlobalUtils _func_log:argc:argv:exception:],81,{"level":3,"logs":["MiniProgramError\134n{\134
    

    尝试从OC层log函数下手

    尝试寻找可能跟log相关的函数
    -[WAEJBindingGlobalUtils _func_log:argc:argv:exception:]: Ejecta库的反射函数,最后会字EJClassLoader里面把所有WAEJBindingBase的继承类里面的_ptr_to_func_XXX绑定给JS,比如这个函数就是绑定到GlobalUtils.log
    这个函数内部调用了log:func:line:, 最终由Delegate WAGameController、WAOpenGLView等处理
    WAGameController调用jsLog:方法处理日志
    Ejecta是个iOS的WebGL库,所以普通的小程序肯定是不用这些的,所以这里应该不是主要的日志点
    -[WAGameViewController jsLog:]: 当vConsole初始化了的时候调用console._log,否则存到logs数组里面
    jsLog被 -[WAJSGameService printConsoleLog:level:]调用
    -[WAJSGameService printConsoleLog:level:]:由WAJSCoreService调用,看起来负责输出console log
    尝试hook:
    hook上jsLog和printConsoleLog,没反应(无日志输出)

    尝试从JS层下手

    注意到输出的日志里面有JS层传过来的MiniProgramError
    OC内没有MiniProgramError字符串,说明Error被Wrap了一层变成了MiniProgramError才传到OC
    微信程序包内搜索MiniProgramError,发现在很多PublicRes里面有,如WAGame.js
    深入逆向WAGame.js
    发现会对globalThis.console进行monkeypatch
    联想到之前在OC层中的WAGameController中大量出现的vConsole,查询资料得知小程序的日志是走vConsole而不是走OC层的

    逆向vConsole开启条件

    标准方式:vConsole需要在微信小程序处于调试模式下,点击菜单弹出选择开启调试按钮
    直接在方法列表中搜索vConsole
    注意到-[WAVConsoleJSLogicImpl injectVConsole],一路向上到-[WAVConsoleJSLogicImpl injectWeixinJSBridge]发现有很多调用
    注意到[WAJSCoreService isDebugAndVConsoleOpen]
    找他的setter方法[WAJSCoreService setIsDebugAndVConsoleOpen:]一路向上找发现只有来自WAAppTask的引用,在这些引用中他把isDebugAndVConsoleOpen属性复制给JSCoreService,但微信方法太多,全局交叉引用需要时间过久,放弃
    找看谁用到了这个属性,失败,只有VConsole相关的逻辑再用它,看起来是非常靠后的属性
    注意到-[WAGameViewController onSwitchVConsole]
    -[WAGameViewController gameActionSheet:clickedButtonTitle:]调用,可以在里面看到“开启调试”按钮的标题为WCAppBrand_MenuItem_OpenDebugMode
    通过标题交叉引用可找到-[WAGameViewController menuDebugButtonTitleArray]
    内部通过-[WAConfigMgr pageIsUseVConsoleForAppID:]判断当前是否开启调试
    通过-[WAWebViewController debugMode]判断是否允许调试
    注意到挨着-[WAConfigMgr pageIsUseVConsoleForAppID:][WAConfigMgr openUseVConsoleWithAppID:],都是在维护dicUseVConsoleApp,openUseVConsoleWithAppIDonSwitchVConsole引用
    -[WAWebViewController debugMode]通过判断m_extraInfo"weAppIsDebugMode"键值来判断是否开启debug
    -[WAAppTask generateExtraInfoWithAppID:Contact:]中对weAppIsDebugMode进行初始化,用的是contact的m_uiDebugModeType值
    -[WAContact m_uiDebugModeType]是实际的值提供者,有100多个引用(太多了),可以到此为止了

    Hook开启vConsole

    从最底层hook,patch m_uiDebugModeType
    会提示 开发版小程序过期,重新扫码

    //%hook WAContact
    //- (int) m_uiDebugModeType {
    //    return 1;
    //}
    //%end
    //%hook CContact
    //- (int) m_uiDebugModeType {
    //    return 1;
    //}
    //%end
    

    从上一层hook改weAppIsDebugMode
    generateExtraInfoWithAppID:(id)appid Contact:(id)contact
    能用!开启调试按钮出现了,vConsole按钮也可以出现
    查看Log,发现Log为空
    想起之前hook了jsLog和printConsoleLog,取消这些hook之后,log就出来了
    说明之前这些函数其实hook对了,只是因为js层monkeypatch了console.log导致日志没有过到OC层

    给TA打赏
    共{{data.count}}人
    人已打赏
    技术文档

    微信小程序反编译逆向之后运行报错“_typeof3 is not a function”

    2023-7-15 19:02:33

    技术文档

    在电脑上直接调试微信WxApkg小程序

    2023-12-22 20:38:14

    0 条回复 A文章作者 M管理员
      暂无讨论,说说你的看法吧
    个人中心
    有新私信 私信列表
    搜索