From 6555bacf36408e15224aa1d0beb4c17f2dc41d5d Mon Sep 17 00:00:00 2001 From: VioletXF Date: Sat, 5 Aug 2023 18:54:58 +0900 Subject: [PATCH] Fix bga player --- Assets/Scripts/BGAPlayer.cs | 56 +- mono_crash.1361216fd0.0.json | 9823 ++++++++++++++++++++++++++++++++++ 2 files changed, 9857 insertions(+), 22 deletions(-) create mode 100644 mono_crash.1361216fd0.0.json diff --git a/Assets/Scripts/BGAPlayer.cs b/Assets/Scripts/BGAPlayer.cs index 018782d..d2b5f7e 100644 --- a/Assets/Scripts/BGAPlayer.cs +++ b/Assets/Scripts/BGAPlayer.cs @@ -1,16 +1,28 @@ using System; using System.Collections; using System.Collections.Generic; +using System.Runtime.InteropServices; using UnityEngine; using UnityEngine.Video; + +class BGAPlayerState +{ + // schedules + + public SortedDictionary> Schedules = new(); + + public void Dispose() + { + Schedules.Clear(); + } +} public class BGAPlayer { private static readonly string[] extensions = { "mp4", "wmv", "m4v", "webm", "mpg", "mpeg", "m1v", "m2v", "avi" }; private readonly Dictionary players = new(); + private BGAPlayerState state = new(); - // schedules - public SortedDictionary> Schedules = new(); public int TotalPlayers { get; private set; } public int LoadedPlayers { get; private set; } @@ -76,17 +88,17 @@ private void OnPrepareCompleted(VideoPlayer source) public void Update(long timeMicro) { - foreach (var (time, ids) in Schedules) + foreach (var (time, ids) in state.Schedules) { foreach (var id in ids) { if (!players.ContainsKey(id)) continue; - Debug.Log("updating " + id + " at " + timeMicro); + // Debug.Log("updating " + id + " at " + timeMicro); if (timeMicro >= time) { players[id].skipOnDrop = true; players[id].externalReferenceTime = (timeMicro - time) / 1000000d; - if (!players[id].isPlaying) SafePlay(id); + if (!players[id].isPlaying) players[id].Play(); } } @@ -95,31 +107,23 @@ public void Update(long timeMicro) public void ResumeAll(long timeMicro) { - foreach (var (time, ids) in Schedules) + foreach (var (time, ids) in state.Schedules) foreach (var id in ids) { if (!players.ContainsKey(id)) continue; if (timeMicro >= time) { + + players[id].skipOnDrop = true; players[id].externalReferenceTime = (timeMicro - time) / 1000000d; - SafePlay(id); + players[id].time = (timeMicro - time) / 1000000d; + players[id].Play(); } } } - - private void SafePlay(int id) - { - try - { - players[id].Play(); - } - catch (Exception e) - { - - } - } + public void PauseAll() { @@ -131,9 +135,17 @@ public void Schedule(int id, long time) { if(!players.ContainsKey(id)) return; Debug.Log("Scheduling " + id + " at " + time); - if (!Schedules.ContainsKey(time)) - Schedules.Add(time, new List()); + if (!state.Schedules.ContainsKey(time)) + state.Schedules.Add(time, new List()); - Schedules[time].Add(id); + state.Schedules[time].Add(id); + } + + public void Reset() + { + state?.Dispose(); + state = new BGAPlayerState(); + foreach (var player in players.Values) + player.Stop(); } } \ No newline at end of file diff --git a/mono_crash.1361216fd0.0.json b/mono_crash.1361216fd0.0.json new file mode 100644 index 0000000..f13f528 --- /dev/null +++ b/mono_crash.1361216fd0.0.json @@ -0,0 +1,9823 @@ +{ + "protocol_version" : "0.0.6", + "configuration" : { + "version" : "(6.13.0) (explicit/d801339b)", + "tlc" : "__thread", + "sigsgev" : "normal", + "notifications" : "kqueue", + "architecture" : "arm64", + "disabled_features" : "com,shared_perfcounters", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "disabled", + "suspend" : "preemptive" + }, + "memory" : { + "Resident Size" : "1104822272", + "Virtual Size" : "427577049088", + "minor_gc_time" : "0", + "major_gc_time" : "288197871", + "minor_gc_count" : "0", + "major_gc_count" : "55", + "major_gc_time_concurrent" : "0" + }, + "threads" : [ + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x33e703000", + "thread_info_addr" : "0x12486da00", + "thread_name" : "Thread Pool Worker", + "ctx" : { + "IP" : "0x195c0fee8", + "SP" : "0x33e702db0", + "BP" : "0x33e702e50" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09955a0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d474", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x35245f000", + "thread_info_addr" : "0x33d1e4200", + "thread_name" : "Thread Pool Worker", + "ctx" : { + "IP" : "0x195c0fee8", + "SP" : "0x35245edb0", + "BP" : "0x35245ee50" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09955a0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d474", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : true, + "offset_free_hash" : "0x1491e05b4c", + "offset_rich_hash" : "0x1491e05f34", + "crashed" : false, + "native_thread_id" : "0x2c7f07000", + "thread_info_addr" : "0x2bd4bf600", + "thread_name" : "Burst-CompilerThread-1", + "ctx" : { + "IP" : "0x195c13750", + "SP" : "0x2c7f05a50", + "BP" : "0x2c7f05ae0" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0xffffffff" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x000c7" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x000a1" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ffb", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x0006e" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ffa", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x0003c" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ff5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", + "token" : "0x6000b49", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x192000", + "timestamp" : "0x9e316baa", + "il_offset" : "0x00024" + } +, + { + "is_managed" : "true", + "guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", + "token" : "0x6000ba5", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x192000", + "timestamp" : "0x9e316baa", + "il_offset" : "0x00096" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00071" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x0002b" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00065" + } + + ], + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c50574", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a8bee4", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a48d00", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a48978", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a37a28", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09e217c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ffb", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ffa", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ff5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", + "token" : "0x6000b49", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x192000", + "timestamp" : "0x9e316baa", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", + "token" : "0x6000ba5", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x192000", + "timestamp" : "0x9e316baa", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a08954f0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a1b594", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a1d1a4", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d568", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x17c7cf000", + "thread_info_addr" : "0x2e4076200", + "thread_name" : "tid_15303", + "ctx" : { + "IP" : "0x195c0fed0", + "SP" : "0x17c7ced10", + "BP" : "0x17c7ced20" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195aa099c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195aa1050", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x106fcbd4c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x104ce1700", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x104ce2ae4", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x104f42dc0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x2ac4e7000", + "thread_info_addr" : "0x1443a8a00", + "thread_name" : "Thread Pool Worker", + "ctx" : { + "IP" : "0x195c0fee8", + "SP" : "0x2ac4e6db0", + "BP" : "0x2ac4e6e50" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a09955a0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d474", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0x14b31bc862", + "offset_rich_hash" : "0x14b31bcdb9", + "crashed" : false, + "native_thread_id" : "0x3320e7000", + "thread_info_addr" : "0x2d8af7a00", + "thread_name" : "ServerSocket-UnityServer-Receiver", + "ctx" : { + "IP" : "0x195c144e4", + "SP" : "0x3320e5e20", + "BP" : "0x3320e5ea0" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0xffffffff" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6002b6b", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x0000c" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6002b5e", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x0002e" + } +, + { + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6002af9", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e29", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00006" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c20", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x000b2" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c1f", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e26", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x0003b" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c20", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x000b2" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c1f", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e25", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00021" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e24", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x0006c" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e37", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x0005c" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000937", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00033" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x60009b4", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x0004a" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e4e", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x000f6" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x600063e", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e4d", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00014" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00071" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x0002b" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00008" + } +, + { + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00065" + } + + ], +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a098ab00", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a25be4", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6002b6b", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6002b5e", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6002af9", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e29", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c20", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c1f", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e26", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c20", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000c1f", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e25", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e24", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e37", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000937", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x60009b4", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e4e", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x600063e", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", + "token" : "0x6000e4d", + "native_offset" : "0x0", + "filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", + "sizeofimage" : "0x90000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a08954f0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a1b594", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a1d1a4", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d568", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x17c85b000", +"thread_info_addr" : "0x144975000", +"thread_name" : "tid_15203", +"ctx" : { + "IP" : "0x195c0fed0", + "SP" : "0x17c85ad10", + "BP" : "0x17c85ad20" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195aa099c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195aa1050", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x106fcbd4c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x104ce1700", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x104ce2ae4", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x104f42dc0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2a133b000", +"thread_info_addr" : "0x1458f7600", +"thread_name" : "Debugger agent", +"ctx" : { + "IP" : "0x195c18848", + "SP" : "0x2a133aaa0", + "BP" : "0x2a133aae0" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0975978", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a096c574", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d474", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x354393000", +"thread_info_addr" : "0x2a39cd200", +"thread_name" : "Thread Pool Worker", +"ctx" : { + "IP" : "0x195c0fee8", + "SP" : "0x354392db0", + "BP" : "0x354392e50" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x2a09057a8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c708", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3ca64", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3c82c", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09467bc", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c7ea24", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a09955a0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d474", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0a3d320", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abcd68", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x2a0abccf0", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ffa8", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x195c4ada0", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491e05b4c", +"offset_rich_hash" : "0x1491e05f34", +"crashed" : false, +"native_thread_id" : "0x2c9413000", +"thread_info_addr" : "0x2c8899600", +"thread_name" : "Burst-CompilerThread-3", +"ctx" : { + "IP" : "0x195c13750", + "SP" : "0x2c9411a50", + "BP" : "0x2c9411ae0" +}, +"managed_frames" : [ +{ + "is_managed" : "false", + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0xffffffff" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020b3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x000c7" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020a5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x000a1" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x60020a9", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ffb", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x0006e" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ffa", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x0003c" + } +, +{ + "is_managed" : "true", + "guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", + "token" : "0x6003ff5", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x29a000", + "timestamp" : "0xb4e6bd4b", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", + "token" : "0x6000b49", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x192000", + "timestamp" : "0x9e316baa", + "il_offset" : "0x00024" + } +, +{ + "is_managed" : "true", + "guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", + "token" : "0x6000ba5", + "native_offset" : "0x0", + "filename" : "Burst.Compiler.IL.dll", + "sizeofimage" : "0x192000", + "timestamp" : "0x9e316baa", + "il_offset" : "0x00096" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00014" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f25", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00071" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f23", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f22", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x0002b" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x6001f7f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00008" + } +, +{ + "is_managed" : "true", + "guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x470000", + "timestamp" : "0xe61e2e82", + "il_offset" : "0x00065" + } + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48d00", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48978", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491e05b4c", +"offset_rich_hash" : "0x1491e05f34", +"crashed" : false, +"native_thread_id" : "0x2c982b000", +"thread_info_addr" : "0x2c8056200", +"thread_name" : "Burst-CompilerThread-5", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2c9829a50", +"BP" : "0x2c9829ae0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48d00", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48978", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491e05b4c", +"offset_rich_hash" : "0x1491e05f34", +"crashed" : false, +"native_thread_id" : "0x2c9c43000", +"thread_info_addr" : "0x2bdb47e00", +"thread_name" : "Burst-CompilerThread-7", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2c9c41a50", +"BP" : "0x2c9c41ae0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48d00", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48978", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2ab653000", +"thread_info_addr" : "0x1242be800", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x2ab652db0", +"BP" : "0x2ab652e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2aba6b000", +"thread_info_addr" : "0x2a4900400", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x2aba6adb0", +"BP" : "0x2aba6ae50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2abe83000", +"thread_info_addr" : "0x1448b6800", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x2abe82db0", +"BP" : "0x2abe82e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x332ae3000", +"thread_info_addr" : "0x2a48d7200", +"thread_name" : "tid_7a433", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x332ae2da0", +"BP" : "0x332ae2db0" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa099c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa1050", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106fcbd4c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1049a4c2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d94f44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d94a6c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d949dc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104f42dc0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x333413000", +"thread_info_addr" : "0x144d47400", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x333412db0", +"BP" : "0x333412e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x353307000", +"thread_info_addr" : "0x1458ad800", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x353306db0", +"BP" : "0x353306e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xf032b1378", +"offset_rich_hash" : "0xf032b14fe", +"crashed" : false, +"native_thread_id" : "0x331edb000", +"thread_info_addr" : "0x32e94a200", +"thread_name" : "ServerSocket-UnityServer-Sender", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x331eda350", +"BP" : "0x331eda3e0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f5d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f50", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f54", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", +"token" : "0x600039a", +"native_offset" : "0x0", +"filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", +"sizeofimage" : "0x90000", +"timestamp" : "0x0", +"il_offset" : "0x0002d" +} +, +{ +"is_managed" : "true", +"guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", +"token" : "0x6000397", +"native_offset" : "0x0", +"filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", +"sizeofimage" : "0x90000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48438", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4826c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a7760c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e0a80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f5d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f50", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f54", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", +"token" : "0x600039a", +"native_offset" : "0x0", +"filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", +"sizeofimage" : "0x90000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "C29FB98F-77D3-46E4-86DF-9FBA682CAD54", +"token" : "0x6000397", +"native_offset" : "0x0", +"filename" : "JetBrains.Rider.Unity.Editor.Plugin.Net46.Repacked", +"sizeofimage" : "0x90000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2ac6f3000", +"thread_info_addr" : "0x12433ba00", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x2ac6f2db0", +"BP" : "0x2ac6f2e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2a112f000", +"thread_info_addr" : "0x1458f5200", +"thread_name" : "Finalizer", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x2a112edd0", +"BP" : "0x2a112ee50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a762bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x354187000", +"thread_info_addr" : "0x1458b2800", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x354186db0", +"BP" : "0x354186e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491e05b4c", +"offset_rich_hash" : "0x1491e05f34", +"crashed" : false, +"native_thread_id" : "0x2c9207000", +"thread_info_addr" : "0x2c88a8600", +"thread_name" : "Burst-CompilerThread-2", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2c9205a50", +"BP" : "0x2c9205ae0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48d00", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48978", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491e05b4c", +"offset_rich_hash" : "0x1491e05f34", +"crashed" : false, +"native_thread_id" : "0x2c961f000", +"thread_info_addr" : "0x2bda6be00", +"thread_name" : "Burst-CompilerThread-4", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2c961da50", +"BP" : "0x2c961dae0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48d00", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48978", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1491e05b4c", +"offset_rich_hash" : "0x1491e05f34", +"crashed" : false, +"native_thread_id" : "0x2c9a37000", +"thread_info_addr" : "0x2c88c0600", +"thread_name" : "Burst-CompilerThread-6", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2c9a35a50", +"BP" : "0x2c9a35ae0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000c7" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0006e" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00024" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48d00", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48978", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020a9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffb", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ffa", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003ff5", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000b49", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6000ba5", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x15de3c8042", +"offset_rich_hash" : "0x15de3c83c7", +"crashed" : false, +"native_thread_id" : "0x2c9e4f000", +"thread_info_addr" : "0x2c88c3800", +"thread_name" : "Burst-ProgressReporter", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2c9e4e090", +"BP" : "0x2c9e4e120" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f5d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002f" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f50", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f52", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001ea2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001ea1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x000d9" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003fe9", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00067" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003fe8", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00006" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003fe4", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6001057", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x000c9" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48438", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4826c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a7760c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e0a80", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f5d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f50", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f52", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001ea2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001ea1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003fe9", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003fe8", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x6003fe4", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "532A8A16-9E6A-4953-B5D9-A4C213B71772", +"token" : "0x6001057", +"native_offset" : "0x0", +"filename" : "Burst.Compiler.IL.dll", +"sizeofimage" : "0x192000", +"timestamp" : "0x9e316baa", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1284ece672", +"offset_rich_hash" : "0x1284ece934", +"crashed" : false, +"native_thread_id" : "0x2ab85f000", +"thread_info_addr" : "0x2bd1fa200", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2ab85dbe0", +"BP" : "0x2ab85dc70" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00044" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002098", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "85E6A447-2B7B-468E-BCF7-262E0742DBD7", +"token" : "0x6000239", +"native_offset" : "0x0", +"filename" : "Unity.Mobile.AndroidLogcat.Editor.dll", +"sizeofimage" : "0x2c000", +"timestamp" : "0xe75490cd", +"il_offset" : "0x0011b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600204b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002049", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00021" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002031", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00074" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002046", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c50574", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bee4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48438", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4826c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48504", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002098", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "85E6A447-2B7B-468E-BCF7-262E0742DBD7", +"token" : "0x6000239", +"native_offset" : "0x0", +"filename" : "Unity.Mobile.AndroidLogcat.Editor.dll", +"sizeofimage" : "0x2c000", +"timestamp" : "0xe75490cd", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600204b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002049", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002031", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002046", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a40150", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09953c4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2abc77000", +"thread_info_addr" : "0x2a386da00", +"thread_name" : "Thread Pool I/O Selector", +"ctx" : { +"IP" : "0x195c1b030", +"SP" : "0x2abc76ae0", +"BP" : "0x2abc76ce0" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8e960", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a41c44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4165c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x33da07000", +"thread_info_addr" : "0x1445a6a00", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x33da06db0", +"BP" : "0x33da06e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2ac08f000", +"thread_info_addr" : "0x1465a9200", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x2ac08edb0", +"BP" : "0x2ac08ee50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1224727402", +"offset_rich_hash" : "0x12247275cb", +"crashed" : false, +"native_thread_id" : "0x3328d7000", +"thread_info_addr" : "0x144722a00", +"thread_name" : "Timer-Scheduler", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x3328d5ec0", +"BP" : "0x3328d5f50" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00044" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002098", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600215a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0003c" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00014" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00008" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00065" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c505a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bebc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48438", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a4826c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a48504", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a37a28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09e217c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60020b2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002098", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600209b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x600215a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x17c513000", +"thread_info_addr" : "0x12411e600", +"thread_name" : "tid_be0f", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x17c512d10", +"BP" : "0x17c512d20" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa099c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa1050", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106fcbd4c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce1700", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce2ae4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104f42dc0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x17c59f000", +"thread_info_addr" : "0x146b31000", +"thread_name" : "tid_d50b", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x17c59ed10", +"BP" : "0x17c59ed20" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa099c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa1050", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106fcbd4c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce1700", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce2ae4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104f42dc0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xabcb0f26a", +"offset_rich_hash" : "0xabcb0f3da", +"crashed" : false, +"native_thread_id" : "0x332f83000", +"thread_info_addr" : "0x144c9cc00", +"thread_name" : "tid_49a6b", +"ctx" : { +"IP" : "0x195c0ff54", +"SP" : "0x332f81800", +"BP" : "0x332f81850" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x60045d4", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x0003a" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00025" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00067" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c22280", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c18bb8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c102d0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2e7e4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2d0c4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2c4b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195db157c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a205d098", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "08C92DD9-F370-4AF2-8537-76517A9080FA", +"token" : "0x60045d4", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x29a000", +"timestamp" : "0xb4e6bd4b", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f22", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f7e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1d1a4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d568", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x34941b000", +"thread_info_addr" : "0x14686de00", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x34941adb0", +"BP" : "0x34941ae50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x17c62b000", +"thread_info_addr" : "0x2c827bc00", +"thread_name" : "tid_d20f", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x17c62ad10", +"BP" : "0x17c62ad20" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa099c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa1050", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106fcbd4c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce1700", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce2ae4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104f42dc0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x353513000", +"thread_info_addr" : "0x124339600", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x195c0fee8", +"SP" : "0x353512db0", +"BP" : "0x353512e50" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09955a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x55a03e8da", +"offset_rich_hash" : "0x55a03e903", +"crashed" : false, +"native_thread_id" : "0x1f0cd2080", +"thread_info_addr" : "0x146909200", +"thread_name" : "tid_103", +"ctx" : { +"IP" : "0x195c12c08", +"SP" : "0x16b9fccf0", +"BP" : "0x16b9fcd20" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x600008d", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "BBC0C603-AF8C-4D0F-BAF1-DA0413D6959C", +"token" : "0x600007b", +"native_offset" : "0x0", +"filename" : "Assembly-CSharp.dll", +"sizeofimage" : "0x14000", +"timestamp" : "0xc2dc666e", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4d0c4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4aa5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325ac534", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x33253a2c4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x332539708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325c913c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325ca758", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325ca660", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325c0d70", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x600008d", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "BBC0C603-AF8C-4D0F-BAF1-DA0413D6959C", +"token" : "0x600007b", +"native_offset" : "0x0", +"filename" : "Assembly-CSharp.dll", +"sizeofimage" : "0x14000", +"timestamp" : "0xc2dc666e", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b4b4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x10510f1ec", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1050ebbfc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1050eba84", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1051a1bf8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1050adab8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1049defdc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1049deaa4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1049dfd7c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d196b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d1698c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d1b378", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d2c318", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d91a9c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d94720", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d95600", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d54d24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d3d7d4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d3d79c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104d3dbe4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x105c88edc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x105c89714", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x105c8204c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x105c7f61c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106f093f8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x196cde438", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d483c8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d48070", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d47bc8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2d348", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2c4b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x19f57edf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x19f57ec2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x19f57e984", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x198f5397c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x198f52b18", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106f09250", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x196cde438", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d483c8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d48070", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d47bc8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2d348", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195d2c4b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x19f57edf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x19f57ec2c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x19f57e984", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x198f5397c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x198f52b18", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x198f46f7c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x198f1e3cc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106f21b04", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106f21e40", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x1958f7f28", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x17c6b7000", +"thread_info_addr" : "0x2bda39000", +"thread_name" : "tid_10003", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x17c6b6d10", +"BP" : "0x17c6b6d20" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa099c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa1050", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106fcbd4c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce1700", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce2ae4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104f42dc0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1361216fd0", +"offset_rich_hash" : "0x136121727f", +"crashed" : true, +"native_thread_id" : "0x34e217000", +"thread_info_addr" : "0x33f03ee00", +"thread_name" : "Thread Pool Worker", +"ctx" : { +"IP" : "0x3325bf7f0", +"SP" : "0x34e211bb0", +"BP" : "0x34e211bc0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0xffffffff" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x60000c7", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "BBC0C603-AF8C-4D0F-BAF1-DA0413D6959C", +"token" : "0x60000b9", +"native_offset" : "0x0", +"filename" : "Assembly-CSharp.dll", +"sizeofimage" : "0x14000", +"timestamp" : "0xc2dc666e", +"il_offset" : "0x00114" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fe", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0000f" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fa", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fd", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00071" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002466", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00034" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0004a" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002031", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00074" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002046", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d054", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0947608", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0909940", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0892230", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325bf7d0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x332535d5c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325cd8d0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x3325c51e8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B8546B9F-0319-4246-963F-B818D98BAC90", +"token" : "0x60000c7", +"native_offset" : "0x0", +"filename" : "FMODUnity.dll", +"sizeofimage" : "0x48000", +"timestamp" : "0xb1b3421a", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "BBC0C603-AF8C-4D0F-BAF1-DA0413D6959C", +"token" : "0x60000b9", +"native_offset" : "0x0", +"filename" : "Assembly-CSharp.dll", +"sizeofimage" : "0x14000", +"timestamp" : "0xc2dc666e", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fe", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fa", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fd", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f25", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6001f23", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002466", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x60023fb", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002031", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x6002046", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "130809AE-6F98-4869-A666-3C878F16E3F3", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x470000", +"timestamp" : "0xe61e2e82", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a08954f0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a1b594", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a40150", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09953c4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x2d86d7000", +"thread_info_addr" : "0x124f12800", +"thread_name" : "tid_3f343", +"ctx" : { +"IP" : "0x195c13750", +"SP" : "0x2d86d6c20", +"BP" : "0x2d86d6cb0" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c505a0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a8bebc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a95b98", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0994da8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d474", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3d320", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abcd68", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0abccf0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x17c743000", +"thread_info_addr" : "0x2a498be00", +"thread_name" : "tid_15403", +"ctx" : { +"IP" : "0x195c0fed0", +"SP" : "0x17c742d10", +"BP" : "0x17c742d20" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x2a09057a8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c708", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3ca64", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a0a3c82c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x2a09467bc", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c7ea24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa099c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195aa1050", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x106fcbd4c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce1700", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104ce2ae4", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x104f42dc0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ffa8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x195c4ada0", +"native_offset" : "0x00000" +} + +] +} +] +} \ No newline at end of file