From 928f64747dbc2105bd482133ab2a55db3de2784e Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Fri, 12 Feb 2021 20:18:50 +0100 Subject: [PATCH] Use stackallocs where possible/sensible --- .../Archives/GZip/GZipArchive.cs | 2 +- src/SharpCompress/Common/GZip/GZipFilePart.cs | 4 +- .../Common/Rar/RarCryptoWrapper.cs | 4 +- .../Common/SevenZip/ArchiveReader.cs | 3 +- .../Common/Tar/Headers/TarHeader.cs | 2 +- .../Common/Zip/WinzipAesCryptoStream.cs | 2 +- src/SharpCompress/Common/Zip/ZipFilePart.cs | 2 +- .../Compressors/Deflate/ZlibBaseStream.cs | 12 +- .../Compressors/LZMA/LZipStream.cs | 8 +- .../Compressors/PPMd/PpmdProperties.cs | 8 +- .../Compressors/Xz/BinaryUtils.cs | 7 +- src/SharpCompress/Compressors/Xz/Crc32.cs | 11 +- src/SharpCompress/Compressors/Xz/Crc64.cs | 8 +- .../Polyfills/StreamExtensions.cs | 4 +- src/SharpCompress/Utility.cs | 4 +- src/SharpCompress/Writers/Tar/TarWriter.cs | 4 +- .../Writers/Zip/ZipCentralDirectoryEntry.cs | 44 +- src/SharpCompress/Writers/Zip/ZipWriter.cs | 73 +- .../mono_crash.20ff255e25.0.json | 12716 ++++++++++++++++ 19 files changed, 12818 insertions(+), 100 deletions(-) create mode 100644 tests/SharpCompress.Test/mono_crash.20ff255e25.0.json diff --git a/src/SharpCompress/Archives/GZip/GZipArchive.cs b/src/SharpCompress/Archives/GZip/GZipArchive.cs index 025aacaaf..8360aad95 100644 --- a/src/SharpCompress/Archives/GZip/GZipArchive.cs +++ b/src/SharpCompress/Archives/GZip/GZipArchive.cs @@ -98,7 +98,7 @@ public void SaveTo(FileInfo fileInfo) public static bool IsGZipFile(Stream stream) { // read the header on the first read - byte[] header = new byte[10]; + Span header = stackalloc byte[10]; // workitem 8501: handle edge case (decompress empty stream) if (!stream.ReadFully(header)) diff --git a/src/SharpCompress/Common/GZip/GZipFilePart.cs b/src/SharpCompress/Common/GZip/GZipFilePart.cs index 03b5b9ae9..6edacfe9c 100644 --- a/src/SharpCompress/Common/GZip/GZipFilePart.cs +++ b/src/SharpCompress/Common/GZip/GZipFilePart.cs @@ -110,13 +110,13 @@ private void ReadAndValidateGzipHeader() private string ReadZeroTerminatedString(Stream stream) { - byte[] buf1 = new byte[1]; + Span buf1 = stackalloc byte[1]; var list = new List(); bool done = false; do { // workitem 7740 - int n = stream.Read(buf1, 0, 1); + int n = stream.Read(buf1); if (n != 1) { throw new ZlibException("Unexpected EOF reading GZIP header."); diff --git a/src/SharpCompress/Common/Rar/RarCryptoWrapper.cs b/src/SharpCompress/Common/Rar/RarCryptoWrapper.cs index dcc0df54a..78fee9337 100644 --- a/src/SharpCompress/Common/Rar/RarCryptoWrapper.cs +++ b/src/SharpCompress/Common/Rar/RarCryptoWrapper.cs @@ -50,11 +50,11 @@ public int ReadAndDecrypt(byte[] buffer, int offset, int count) if (sizeToRead > 0) { int alignedSize = sizeToRead + ((~sizeToRead + 1) & 0xf); - byte[] cipherText = new byte[RarRijndael.CRYPTO_BLOCK_SIZE]; + Span cipherText = stackalloc byte[RarRijndael.CRYPTO_BLOCK_SIZE]; for (int i = 0; i < alignedSize / 16; i++) { //long ax = System.currentTimeMillis(); - _actualStream.Read(cipherText, 0, RarRijndael.CRYPTO_BLOCK_SIZE); + _actualStream.Read(cipherText); var readBytes = _rijndael.ProcessBlock(cipherText); foreach (var readByte in readBytes) diff --git a/src/SharpCompress/Common/SevenZip/ArchiveReader.cs b/src/SharpCompress/Common/SevenZip/ArchiveReader.cs index 1ef60c0c1..93e0ff69e 100644 --- a/src/SharpCompress/Common/SevenZip/ArchiveReader.cs +++ b/src/SharpCompress/Common/SevenZip/ArchiveReader.cs @@ -1517,6 +1517,7 @@ public void Extract(ArchiveDatabase db, int[] indices) } } + byte[] buffer = null; foreach (CExtractFolderInfo efi in extractFolderInfoVector) { int startIndex; @@ -1553,7 +1554,7 @@ public void Extract(ArchiveDatabase db, int[] indices) Stream s = DecoderStreamHelper.CreateDecoderStream(_stream, folderStartPackPos, packSizes, folderInfo, db.PasswordProvider); - byte[] buffer = new byte[4 << 10]; + buffer ??= new byte[4 << 10]; for (; ; ) { int processed = s.Read(buffer, 0, buffer.Length); diff --git a/src/SharpCompress/Common/Tar/Headers/TarHeader.cs b/src/SharpCompress/Common/Tar/Headers/TarHeader.cs index 9d7c052f5..0a3824c02 100644 --- a/src/SharpCompress/Common/Tar/Headers/TarHeader.cs +++ b/src/SharpCompress/Common/Tar/Headers/TarHeader.cs @@ -97,7 +97,7 @@ private void WriteLongFilenameHeader(Stream output) { numPaddingBytes = BLOCK_SIZE; } - output.Write(new byte[numPaddingBytes], 0, numPaddingBytes); + output.Write(stackalloc byte[numPaddingBytes]); } internal bool Read(BinaryReader reader) diff --git a/src/SharpCompress/Common/Zip/WinzipAesCryptoStream.cs b/src/SharpCompress/Common/Zip/WinzipAesCryptoStream.cs index 322cedb5c..ea8aea3f3 100644 --- a/src/SharpCompress/Common/Zip/WinzipAesCryptoStream.cs +++ b/src/SharpCompress/Common/Zip/WinzipAesCryptoStream.cs @@ -75,7 +75,7 @@ protected override void Dispose(bool disposing) if (disposing) { //read out last 10 auth bytes - var ten = new byte[10]; + Span ten = stackalloc byte[10]; _stream.ReadFully(ten); _stream.Dispose(); } diff --git a/src/SharpCompress/Common/Zip/ZipFilePart.cs b/src/SharpCompress/Common/Zip/ZipFilePart.cs index 23fbaf24b..47dd0d600 100644 --- a/src/SharpCompress/Common/Zip/ZipFilePart.cs +++ b/src/SharpCompress/Common/Zip/ZipFilePart.cs @@ -93,7 +93,7 @@ protected Stream CreateDecompressionStream(Stream stream, ZipCompressionMethod m } case ZipCompressionMethod.PPMd: { - var props = new byte[2]; + Span props = stackalloc byte[2]; stream.ReadFully(props); return new PpmdStream(new PpmdProperties(props), stream, false); } diff --git a/src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs b/src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs index 564d15db4..439bd2254 100644 --- a/src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs +++ b/src/SharpCompress/Compressors/Deflate/ZlibBaseStream.cs @@ -256,17 +256,15 @@ private void finish() } // Read and potentially verify the GZIP trailer: CRC32 and size mod 2^32 - byte[] trailer = new byte[8]; + Span trailer = stackalloc byte[8]; // workitem 8679 if (_z.AvailableBytesIn != 8) { // Make sure we have read to the end of the stream - Array.Copy(_z.InputBuffer, _z.NextIn, trailer, 0, _z.AvailableBytesIn); + _z.InputBuffer.AsSpan(_z.NextIn, _z.AvailableBytesIn).CopyTo(trailer); int bytesNeeded = 8 - _z.AvailableBytesIn; - int bytesRead = _stream.Read(trailer, - _z.AvailableBytesIn, - bytesNeeded); + int bytesRead = _stream.Read(trailer.Slice(_z.AvailableBytesIn, bytesNeeded)); if (bytesNeeded != bytesRead) { throw new ZlibException(String.Format( @@ -276,12 +274,12 @@ private void finish() } else { - Array.Copy(_z.InputBuffer, _z.NextIn, trailer, 0, trailer.Length); + _z.InputBuffer.AsSpan(_z.NextIn, trailer.Length).CopyTo(trailer); } Int32 crc32_expected = BinaryPrimitives.ReadInt32LittleEndian(trailer); Int32 crc32_actual = crc.Crc32Result; - Int32 isize_expected = BinaryPrimitives.ReadInt32LittleEndian(trailer.AsSpan(4)); + Int32 isize_expected = BinaryPrimitives.ReadInt32LittleEndian(trailer.Slice(4)); Int32 isize_actual = (Int32)(_z.TotalBytesOut & 0x00000000FFFFFFFF); if (crc32_actual != crc32_expected) diff --git a/src/SharpCompress/Compressors/LZMA/LZipStream.cs b/src/SharpCompress/Compressors/LZMA/LZipStream.cs index be7c7d384..8e316b068 100644 --- a/src/SharpCompress/Compressors/LZMA/LZipStream.cs +++ b/src/SharpCompress/Compressors/LZMA/LZipStream.cs @@ -59,16 +59,16 @@ public void Finish() crc32Stream.Dispose(); var compressedCount = _countingWritableSubStream!.Count; - byte[] intBuf = new byte[8]; + Span intBuf = stackalloc byte[8]; BinaryPrimitives.WriteUInt32LittleEndian(intBuf, crc32Stream.Crc); - _countingWritableSubStream.Write(intBuf, 0, 4); + _countingWritableSubStream.Write(intBuf.Slice(0, 4)); BinaryPrimitives.WriteInt64LittleEndian(intBuf, _writeCount); - _countingWritableSubStream.Write(intBuf, 0, 8); + _countingWritableSubStream.Write(intBuf); //total with headers BinaryPrimitives.WriteUInt64LittleEndian(intBuf, compressedCount + 6 + 20); - _countingWritableSubStream.Write(intBuf, 0, 8); + _countingWritableSubStream.Write(intBuf); } _finished = true; } diff --git a/src/SharpCompress/Compressors/PPMd/PpmdProperties.cs b/src/SharpCompress/Compressors/PPMd/PpmdProperties.cs index 8b62388b9..08eef12ca 100644 --- a/src/SharpCompress/Compressors/PPMd/PpmdProperties.cs +++ b/src/SharpCompress/Compressors/PPMd/PpmdProperties.cs @@ -31,7 +31,11 @@ internal PpmdProperties(int allocatorSize, int modelOrder, ModelRestorationMetho public PpmdVersion Version { get; } = PpmdVersion.I1; internal ModelRestorationMethod RestorationMethod { get; } - public PpmdProperties(byte[] properties) + public PpmdProperties(byte[] properties) : this(properties.AsSpan()) + { + } + + public PpmdProperties(ReadOnlySpan properties) { if (properties.Length == 2) { @@ -43,7 +47,7 @@ public PpmdProperties(byte[] properties) else if (properties.Length == 5) { Version = PpmdVersion.H7Z; - AllocatorSize = BinaryPrimitives.ReadInt32LittleEndian(properties.AsSpan(1)); + AllocatorSize = BinaryPrimitives.ReadInt32LittleEndian(properties.Slice(1)); ModelOrder = properties[0]; } } diff --git a/src/SharpCompress/Compressors/Xz/BinaryUtils.cs b/src/SharpCompress/Compressors/Xz/BinaryUtils.cs index 73ae52035..12f34bf71 100644 --- a/src/SharpCompress/Compressors/Xz/BinaryUtils.cs +++ b/src/SharpCompress/Compressors/Xz/BinaryUtils.cs @@ -1,4 +1,5 @@ using System; +using System.Buffers.Binary; using System.IO; namespace SharpCompress.Compressors.Xz @@ -8,7 +9,7 @@ public static class BinaryUtils public static int ReadLittleEndianInt32(this BinaryReader reader) { byte[] bytes = reader.ReadBytes(4); - return (bytes[0] + (bytes[1] << 8) + (bytes[2] << 16) + (bytes[3] << 24)); + return BinaryPrimitives.ReadInt32LittleEndian(bytes); } internal static uint ReadLittleEndianUInt32(this BinaryReader reader) @@ -17,13 +18,13 @@ internal static uint ReadLittleEndianUInt32(this BinaryReader reader) } public static int ReadLittleEndianInt32(this Stream stream) { - byte[] bytes = new byte[4]; + Span bytes = stackalloc byte[4]; var read = stream.ReadFully(bytes); if (!read) { throw new EndOfStreamException(); } - return (bytes[0] + (bytes[1] << 8) + (bytes[2] << 16) + (bytes[3] << 24)); + return BinaryPrimitives.ReadInt32LittleEndian(bytes); } internal static uint ReadLittleEndianUInt32(this Stream stream) diff --git a/src/SharpCompress/Compressors/Xz/Crc32.cs b/src/SharpCompress/Compressors/Xz/Crc32.cs index 710cd4970..01a907913 100644 --- a/src/SharpCompress/Compressors/Xz/Crc32.cs +++ b/src/SharpCompress/Compressors/Xz/Crc32.cs @@ -1,7 +1,6 @@ #nullable disable using System; -using System.Collections.Generic; namespace SharpCompress.Compressors.Xz { @@ -24,7 +23,7 @@ public static UInt32 Compute(UInt32 seed, byte[] buffer) public static UInt32 Compute(UInt32 polynomial, UInt32 seed, byte[] buffer) { - return ~CalculateHash(InitializeTable(polynomial), seed, buffer, 0, buffer.Length); + return ~CalculateHash(InitializeTable(polynomial), seed, buffer); } private static UInt32[] InitializeTable(UInt32 polynomial) @@ -61,16 +60,16 @@ private static UInt32[] InitializeTable(UInt32 polynomial) return createTable; } - private static UInt32 CalculateHash(UInt32[] table, UInt32 seed, IList buffer, int start, int size) + private static UInt32 CalculateHash(UInt32[] table, UInt32 seed, ReadOnlySpan buffer) { var crc = seed; - for (var i = start; i < size - start; i++) + int len = buffer.Length; + for (var i = 0; i < len; i++) { - crc = (crc >> 8) ^ table[buffer[i] ^ crc & 0xff]; + crc = (crc >> 8) ^ table[(buffer[i] ^ crc) & 0xff]; } return crc; } - } } diff --git a/src/SharpCompress/Compressors/Xz/Crc64.cs b/src/SharpCompress/Compressors/Xz/Crc64.cs index 340d08952..1cc9e1b3a 100644 --- a/src/SharpCompress/Compressors/Xz/Crc64.cs +++ b/src/SharpCompress/Compressors/Xz/Crc64.cs @@ -22,14 +22,14 @@ public static UInt64 Compute(UInt64 seed, byte[] buffer) { Table ??= CreateTable(Iso3309Polynomial); - return CalculateHash(seed, Table, buffer, 0, buffer.Length); + return CalculateHash(seed, Table, buffer); } - public static UInt64 CalculateHash(UInt64 seed, UInt64[] table, IList buffer, int start, int size) + public static UInt64 CalculateHash(UInt64 seed, UInt64[] table, ReadOnlySpan buffer) { var crc = seed; - - for (var i = start; i < size; i++) + int len = buffer.Length; + for (var i = 0; i < len; i++) { unchecked { diff --git a/src/SharpCompress/Polyfills/StreamExtensions.cs b/src/SharpCompress/Polyfills/StreamExtensions.cs index 2df2112dd..16299adcd 100644 --- a/src/SharpCompress/Polyfills/StreamExtensions.cs +++ b/src/SharpCompress/Polyfills/StreamExtensions.cs @@ -12,7 +12,7 @@ public static int Read(this Stream stream, Span buffer) try { - int read = stream.Read(temp, 0, buffer.Length); + int read = stream.Read(buffer); temp.AsSpan(0, read).CopyTo(buffer); @@ -42,4 +42,4 @@ public static void Write(this Stream stream, ReadOnlySpan buffer) } } -#endif \ No newline at end of file +#endif diff --git a/src/SharpCompress/Utility.cs b/src/SharpCompress/Utility.cs index e3de66e6c..ffebb1526 100644 --- a/src/SharpCompress/Utility.cs +++ b/src/SharpCompress/Utility.cs @@ -281,11 +281,11 @@ private static byte[] GetTransferByteArray() return ArrayPool.Shared.Rent(81920); } - public static bool ReadFully(this Stream stream, byte[] buffer) + public static bool ReadFully(this Stream stream, Span buffer) { int total = 0; int read; - while ((read = stream.Read(buffer, total, buffer.Length - total)) > 0) + while ((read = stream.Read(buffer.Slice(total, buffer.Length - total))) > 0) { total += read; if (total >= buffer.Length) diff --git a/src/SharpCompress/Writers/Tar/TarWriter.cs b/src/SharpCompress/Writers/Tar/TarWriter.cs index ae7105a6b..7f0f05e00 100644 --- a/src/SharpCompress/Writers/Tar/TarWriter.cs +++ b/src/SharpCompress/Writers/Tar/TarWriter.cs @@ -99,7 +99,7 @@ private void PadTo512(long size, bool forceZeros) return; } zeros = 512 - zeros; - OutputStream.Write(new byte[zeros], 0, zeros); + OutputStream.Write(stackalloc byte[zeros]); } protected override void Dispose(bool isDisposing) @@ -128,4 +128,4 @@ protected override void Dispose(bool isDisposing) base.Dispose(isDisposing); } } -} \ No newline at end of file +} diff --git a/src/SharpCompress/Writers/Zip/ZipCentralDirectoryEntry.cs b/src/SharpCompress/Writers/Zip/ZipCentralDirectoryEntry.cs index d936c3525..8fe87d1e8 100644 --- a/src/SharpCompress/Writers/Zip/ZipCentralDirectoryEntry.cs +++ b/src/SharpCompress/Writers/Zip/ZipCentralDirectoryEntry.cs @@ -71,60 +71,60 @@ internal uint Write(Stream outputStream) usedCompression = ZipCompressionMethod.None; } - byte[] intBuf = new byte[] { 80, 75, 1, 2, version, 0, version, 0 }; + Span intBuf = stackalloc byte[] { 80, 75, 1, 2, version, 0, version, 0 }; //constant sig, then version made by, then version to extract - outputStream.Write(intBuf, 0, 8); + outputStream.Write(intBuf); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)flags); - outputStream.Write(intBuf, 0, 2); + outputStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)usedCompression); - outputStream.Write(intBuf, 0, 2); // zipping method + outputStream.Write(intBuf.Slice(0, 2)); // zipping method BinaryPrimitives.WriteUInt32LittleEndian(intBuf, ModificationTime.DateTimeToDosTime()); - outputStream.Write(intBuf, 0, 4); + outputStream.Write(intBuf.Slice(0, 4)); // zipping date and time BinaryPrimitives.WriteUInt32LittleEndian(intBuf, Crc); - outputStream.Write(intBuf, 0, 4); // file CRC + outputStream.Write(intBuf.Slice(0, 4)); // file CRC BinaryPrimitives.WriteUInt32LittleEndian(intBuf, compressedvalue); - outputStream.Write(intBuf, 0, 4); // compressed file size + outputStream.Write(intBuf.Slice(0, 4)); // compressed file size BinaryPrimitives.WriteUInt32LittleEndian(intBuf, decompressedvalue); - outputStream.Write(intBuf, 0, 4); // uncompressed file size + outputStream.Write(intBuf.Slice(0, 4)); // uncompressed file size BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)encodedFilename.Length); - outputStream.Write(intBuf, 0, 2); // Filename in zip + outputStream.Write(intBuf.Slice(0, 2)); // Filename in zip BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)extralength); - outputStream.Write(intBuf, 0, 2); // extra length + outputStream.Write(intBuf.Slice(0, 2)); // extra length BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)encodedComment.Length); - outputStream.Write(intBuf, 0, 2); + outputStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 0); - outputStream.Write(intBuf, 0, 2); // disk=0 + outputStream.Write(intBuf.Slice(0, 2)); // disk=0 BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)flags); - outputStream.Write(intBuf, 0, 2); // file type: binary + outputStream.Write(intBuf.Slice(0, 2)); // file type: binary BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)flags); - outputStream.Write(intBuf, 0, 2); // Internal file attributes + outputStream.Write(intBuf.Slice(0, 2)); // Internal file attributes BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 0x8100); - outputStream.Write(intBuf, 0, 2); + outputStream.Write(intBuf.Slice(0, 2)); // External file attributes (normal/readable) BinaryPrimitives.WriteUInt32LittleEndian(intBuf, headeroffsetvalue); - outputStream.Write(intBuf, 0, 4); // Offset of header + outputStream.Write(intBuf.Slice(0, 4)); // Offset of header outputStream.Write(encodedFilename, 0, encodedFilename.Length); if (zip64) { BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 0x0001); - outputStream.Write(intBuf, 0, 2); + outputStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)(extralength - 4)); - outputStream.Write(intBuf, 0, 2); + outputStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt64LittleEndian(intBuf, Decompressed); - outputStream.Write(intBuf, 0, 8); + outputStream.Write(intBuf); BinaryPrimitives.WriteUInt64LittleEndian(intBuf, Compressed); - outputStream.Write(intBuf, 0, 8); + outputStream.Write(intBuf); BinaryPrimitives.WriteUInt64LittleEndian(intBuf, HeaderOffset); - outputStream.Write(intBuf, 0, 8); + outputStream.Write(intBuf); BinaryPrimitives.WriteUInt32LittleEndian(intBuf, 0); - outputStream.Write(intBuf, 0, 4); // VolumeNumber = 0 + outputStream.Write(intBuf.Slice(0, 4)); // VolumeNumber = 0 } outputStream.Write(encodedComment, 0, encodedComment.Length); diff --git a/src/SharpCompress/Writers/Zip/ZipWriter.cs b/src/SharpCompress/Writers/Zip/ZipWriter.cs index 74ae71458..8bf0faba6 100644 --- a/src/SharpCompress/Writers/Zip/ZipWriter.cs +++ b/src/SharpCompress/Writers/Zip/ZipWriter.cs @@ -162,10 +162,9 @@ private int WriteHeader(string filename, ZipWriterEntryOptions zipWriterEntryOpt var explicitZipCompressionInfo = ToZipCompressionMethod(zipWriterEntryOptions.CompressionType ?? compressionType); byte[] encodedFilename = WriterOptions.ArchiveEncoding.Encode(filename); - // TODO: Use stackalloc when we exclusively support netstandard2.1 or higher - byte[] intBuf = new byte[4]; + Span intBuf = stackalloc byte[4]; BinaryPrimitives.WriteUInt32LittleEndian(intBuf, ZipHeaderFactory.ENTRY_HEADER_BYTES); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf); if (explicitZipCompressionInfo == ZipCompressionMethod.Deflate) { if (OutputStream.CanSeek && useZip64) @@ -193,18 +192,18 @@ private int WriteHeader(string filename, ZipWriterEntryOptions zipWriterEntryOpt } BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)flags); - OutputStream.Write(intBuf, 0, 2); + OutputStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)explicitZipCompressionInfo); - OutputStream.Write(intBuf, 0, 2); // zipping method + OutputStream.Write(intBuf.Slice(0, 2)); // zipping method BinaryPrimitives.WriteUInt32LittleEndian(intBuf, zipWriterEntryOptions.ModificationDateTime.DateTimeToDosTime()); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf); // zipping date and time OutputStream.Write(stackalloc byte[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }); // unused CRC, un/compressed size, updated later BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)encodedFilename.Length); - OutputStream.Write(intBuf, 0, 2); // filename length + OutputStream.Write(intBuf.Slice(0, 2)); // filename length var extralength = 0; if (OutputStream.CanSeek && useZip64) @@ -213,7 +212,7 @@ private int WriteHeader(string filename, ZipWriterEntryOptions zipWriterEntryOpt } BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)extralength); - OutputStream.Write(intBuf, 0, 2); // extra length + OutputStream.Write(intBuf.Slice(0, 2)); // extra length OutputStream.Write(encodedFilename, 0, encodedFilename.Length); if (extralength != 0) @@ -227,13 +226,13 @@ private int WriteHeader(string filename, ZipWriterEntryOptions zipWriterEntryOpt private void WriteFooter(uint crc, uint compressed, uint uncompressed) { - byte[] intBuf = new byte[4]; + Span intBuf = stackalloc byte[4]; BinaryPrimitives.WriteUInt32LittleEndian(intBuf, crc); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf); BinaryPrimitives.WriteUInt32LittleEndian(intBuf, compressed); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf); BinaryPrimitives.WriteUInt32LittleEndian(intBuf, uncompressed); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf); } private void WriteEndRecord(ulong size) @@ -244,7 +243,7 @@ private void WriteEndRecord(ulong size) var sizevalue = size >= uint.MaxValue ? uint.MaxValue : (uint)size; var streampositionvalue = streamPosition >= uint.MaxValue ? uint.MaxValue : (uint)streamPosition; - byte[] intBuf = new byte[8]; + Span intBuf = stackalloc byte[8]; if (zip64) { var recordlen = 2 + 2 + 4 + 4 + 8 + 8 + 8 + 8; @@ -253,34 +252,34 @@ private void WriteEndRecord(ulong size) OutputStream.Write(stackalloc byte[] { 80, 75, 6, 6 }); BinaryPrimitives.WriteUInt64LittleEndian(intBuf, (ulong)recordlen); - OutputStream.Write(intBuf, 0, 8); // Size of zip64 end of central directory record + OutputStream.Write(intBuf); // Size of zip64 end of central directory record BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 0); - OutputStream.Write(intBuf, 0, 2); // Made by + OutputStream.Write(intBuf.Slice(0, 2)); // Made by BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 45); - OutputStream.Write(intBuf, 0, 2); // Version needed + OutputStream.Write(intBuf.Slice(0, 2)); // Version needed BinaryPrimitives.WriteUInt32LittleEndian(intBuf, 0); - OutputStream.Write(intBuf, 0, 4); // Disk number - OutputStream.Write(intBuf, 0, 4); // Central dir disk + OutputStream.Write(intBuf.Slice(0, 4)); // Disk number + OutputStream.Write(intBuf.Slice(0, 4)); // Central dir disk // TODO: entries.Count is int, so max 2^31 files BinaryPrimitives.WriteUInt64LittleEndian(intBuf, (ulong)entries.Count); - OutputStream.Write(intBuf, 0, 8); // Entries in this disk - OutputStream.Write(intBuf, 0, 8); // Total entries + OutputStream.Write(intBuf); // Entries in this disk + OutputStream.Write(intBuf); // Total entries BinaryPrimitives.WriteUInt64LittleEndian(intBuf, size); - OutputStream.Write(intBuf, 0, 8); // Central Directory size + OutputStream.Write(intBuf); // Central Directory size BinaryPrimitives.WriteUInt64LittleEndian(intBuf, (ulong)streamPosition); - OutputStream.Write(intBuf, 0, 8); // Disk offset + OutputStream.Write(intBuf); // Disk offset // Write zip64 end of central directory locator OutputStream.Write(stackalloc byte[] { 80, 75, 6, 7 }); BinaryPrimitives.WriteUInt32LittleEndian(intBuf, 0); - OutputStream.Write(intBuf, 0, 4); // Entry disk + OutputStream.Write(intBuf.Slice(0, 4)); // Entry disk BinaryPrimitives.WriteUInt64LittleEndian(intBuf, (ulong)streamPosition + size); - OutputStream.Write(intBuf, 0, 8); // Offset to the zip64 central directory + OutputStream.Write(intBuf); // Offset to the zip64 central directory BinaryPrimitives.WriteUInt32LittleEndian(intBuf, 0); - OutputStream.Write(intBuf, 0, 4); // Number of disks + OutputStream.Write(intBuf); // Number of disks streamPosition += recordlen + (4 + 4 + 8 + 4); streampositionvalue = streamPosition >= uint.MaxValue ? uint.MaxValue : (uint)streampositionvalue; @@ -289,15 +288,15 @@ private void WriteEndRecord(ulong size) // Write normal end of central directory record OutputStream.Write(stackalloc byte[] { 80, 75, 5, 6, 0, 0, 0, 0 }); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)entries.Count); - OutputStream.Write(intBuf, 0, 2); - OutputStream.Write(intBuf, 0, 2); + OutputStream.Write(intBuf.Slice(0, 2)); + OutputStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt32LittleEndian(intBuf, sizevalue); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf.Slice(0, 4)); BinaryPrimitives.WriteUInt32LittleEndian(intBuf, streampositionvalue); - OutputStream.Write(intBuf, 0, 4); + OutputStream.Write(intBuf.Slice(0, 4)); byte[] encodedComment = WriterOptions.ArchiveEncoding.Encode(zipComment); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, (ushort)encodedComment.Length); - OutputStream.Write(intBuf, 0, 2); + OutputStream.Write(intBuf.Slice(0, 2)); OutputStream.Write(encodedComment, 0, encodedComment.Length); } @@ -443,16 +442,16 @@ protected override void Dispose(bool disposing) if (entry.Zip64HeaderOffset != 0) { originalStream.Position = (long)(entry.HeaderOffset + entry.Zip64HeaderOffset); - byte[] intBuf = new byte[8]; + Span intBuf = stackalloc byte[8]; BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 0x0001); - originalStream.Write(intBuf, 0, 2); + originalStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt16LittleEndian(intBuf, 8 + 8); - originalStream.Write(intBuf, 0, 2); + originalStream.Write(intBuf.Slice(0, 2)); BinaryPrimitives.WriteUInt64LittleEndian(intBuf, entry.Decompressed); - originalStream.Write(intBuf, 0, 8); + originalStream.Write(intBuf); BinaryPrimitives.WriteUInt64LittleEndian(intBuf, entry.Compressed); - originalStream.Write(intBuf, 0, 8); + originalStream.Write(intBuf); } originalStream.Position = writer.streamPosition + (long)entry.Compressed; @@ -471,9 +470,9 @@ protected override void Dispose(bool disposing) throw new NotSupportedException("Streams larger than 4GiB are not supported for non-seekable streams"); } - byte[] intBuf = new byte[4]; + Span intBuf = stackalloc byte[4]; BinaryPrimitives.WriteUInt32LittleEndian(intBuf, ZipHeaderFactory.POST_DATA_DESCRIPTOR); - originalStream.Write(intBuf, 0, 4); + originalStream.Write(intBuf); writer.WriteFooter(entry.Crc, compressedvalue, decompressedvalue); diff --git a/tests/SharpCompress.Test/mono_crash.20ff255e25.0.json b/tests/SharpCompress.Test/mono_crash.20ff255e25.0.json new file mode 100644 index 000000000..03e1fd933 --- /dev/null +++ b/tests/SharpCompress.Test/mono_crash.20ff255e25.0.json @@ -0,0 +1,12716 @@ +{ + "protocol_version" : "0.0.5", + "configuration" : { + "version" : "(6.6.0.166) (tarball)", + "tlc" : "__thread", + "sigsgev" : "altstack", + "notifications" : "epoll", + "architecture" : "amd64", + "disabled_features" : "none", + "smallconfig" : "disabled", + "bigarrays" : "disabled", + "softdebug" : "enabled", + "interpreter" : "enabled", + "llvm_support" : "disabled", + "suspend" : "hybrid" + }, + "memory" : { + "minor_gc_time" : "205812326", + "major_gc_time" : "11406628", + "minor_gc_count" : "3241", + "major_gc_count" : "38", + "major_gc_time_concurrent" : "220984080" + }, + "threads" : [ + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f958dbf5700", + "thread_info_addr" : "0x7f9548000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958dbf4c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f953173e700", + "thread_info_addr" : "0x7f958829f4b0", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f953173dc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f961fdfe700", + "thread_info_addr" : "0x7f960c000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f961fdfdc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f961f6a3700", + "thread_info_addr" : "0x7f9610000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f961f6a2c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f95260ff700", + "thread_info_addr" : "0x7f95f4078c30", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95260fec70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f952aff7700", + "thread_info_addr" : "0x7f95c811a270", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952aff6c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f963ffff700", + "thread_info_addr" : "0x7f9638000b60", + "thread_name" : "mono", + "ctx" : { + "IP" : "0x7f9653e401b8", + "SP" : "0x7f963fffeb90", + "BP" : "0x558e94e92000" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e401b8", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94d0401e", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94d0fa59", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca93a3", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f958ffff700", + "thread_info_addr" : "0x7f9550000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958fffec70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f958e9fc700", + "thread_info_addr" : "0x7f9568000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958e9fbc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f95303fe700", + "thread_info_addr" : "0x7f959c170f50", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95303fdc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f9532545700", + "thread_info_addr" : "0x7f9570057fb0", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9532544c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f9533bfd700", + "thread_info_addr" : "0x7f953c020360", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9533bfcc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] + }, + { + "is_managed" : true, + "offset_free_hash" : "0xa574af465", + "offset_rich_hash" : "0xa574af76e", + "crashed" : false, + "native_thread_id" : "0x7f963f1fe700", + "thread_info_addr" : "0x7f9624000b60", + "thread_name" : "ProcessWriteQue", + "ctx" : { + "IP" : "0x7f9653e3fe92", + "SP" : "0x7f963f1fd2f0", + "BP" : "0x558e95c11bf0" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60040aa", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0003a" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x600409d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00011" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x600409f", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6003fe7", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00026" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6003fe6", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x000fe" + } +, + { + "is_managed" : "true", + "guid" : "13E87EE1-A85D-4B5E-8544-328288BAB252", + "token" : "0x60007e8", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x2ae000", + "timestamp" : "0x0", + "il_offset" : "0x0007e" + } +, + { + "is_managed" : "true", + "guid" : "13E87EE1-A85D-4B5E-8544-328288BAB252", + "token" : "0x60007e7", + "native_offset" : "0x0", + "filename" : "System.dll", + "sizeofimage" : "0x2ae000", + "timestamp" : "0x0", + "il_offset" : "0x00006" + } +, + { + "is_managed" : "true", + "guid" : "C13615CC-A0C7-4CEA-A15D-FD4227FC93CF", + "token" : "0x600003a", + "native_offset" : "0x0", + "filename" : "OmniSharp.Host.dll", + "sizeofimage" : "0x1a000", + "timestamp" : "0x842f1bbf", + "il_offset" : "0x0000c" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60040ca", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00017" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004073", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0008d" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004071", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004070", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00031" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60040cc", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0000b" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0002a" + } + + ], + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e3fe92", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94d0407d", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c60c3a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c6246c", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c9cd73", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f952bdfe700", + "thread_info_addr" : "0x7f95a4067e10", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952bdfdc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f95a3dfe700", + "thread_info_addr" : "0x7f9590000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95a3dfdc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f958d7f3700", + "thread_info_addr" : "0x7f9540000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958d7f2c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f953334c700", + "thread_info_addr" : "0x7f954c0c4b90", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f953334bc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f961f2a1700", + "thread_info_addr" : "0x7f9608000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f961f2a0c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f9530973700", + "thread_info_addr" : "0x7f959017d1d0", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9530972c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f961e45c700", + "thread_info_addr" : "0x7f95f4000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f961e45bc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f9525cfd700", + "thread_info_addr" : "0x7f95fc002780", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9525cfcc70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : false, + "offset_free_hash" : "0x0", + "offset_rich_hash" : "0x0", + "crashed" : false, + "native_thread_id" : "0x7f952abf5700", + "thread_info_addr" : "0x7f95cc0b78b0", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952abf4c70", + "BP" : "0x558e94e82c48" + }, + "unmanaged_frames" : [ + { + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, + { + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + + ] +}, +{ + "is_managed" : true, + "offset_free_hash" : "0x12b655144f", + "offset_rich_hash" : "0x12b65518dd", + "crashed" : false, + "native_thread_id" : "0x7f963fbfd700", + "thread_info_addr" : "0x7f9634000b60", + "thread_name" : "Thread Pool Wor", + "ctx" : { + "IP" : "0x7f9653e439ac", + "SP" : "0x7f963fbfbef0", + "BP" : "0x7f963fbfbf30" + }, + "managed_frames" : [ + { + "is_managed" : "false", + "native_address" : "unregistered" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004941", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00010" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60048ff", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00002" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60048e6", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0002c" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60048e5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x000b9" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60009b5", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x000bf" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60009b7", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0002e" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60049ab", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6000a38", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0000a" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6000a3a", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0000a" + } +, + { + "is_managed" : "true", + "guid" : "F4F40B9E-D303-4A52-8E91-F200FF10538E", + "token" : "0x6000031", + "native_offset" : "0x0", + "filename" : "OmniSharp.Stdio.dll", + "sizeofimage" : "0xc000", + "timestamp" : "0xb045312f", + "il_offset" : "0x00048" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6003634", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00031" + } +, + { + "is_managed" : "true", + "guid" : "F4F40B9E-D303-4A52-8E91-F200FF10538E", + "token" : "0x600000f", + "native_offset" : "0x0", + "filename" : "OmniSharp.Stdio.dll", + "sizeofimage" : "0xc000", + "timestamp" : "0xb045312f", + "il_offset" : "0x0001c" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60029cd", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00012" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6002ac1", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6002ac4", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00007" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004073", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0008d" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004071", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6002b2d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0003d" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6002ac3", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0005e" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6002ac2", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x600417d", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00096" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004192", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, + { + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0002a" + } + + ], +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e439ac", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94b637ef", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94b611ef", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94cacb13", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94bbeaef", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958e5fa700", +"thread_info_addr" : "0x7f9560000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958e5f9c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958fa33700", +"thread_info_addr" : "0x7f957c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958fa32c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532143700", +"thread_info_addr" : "0x7f9578164d30", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9532142c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95337fb700", +"thread_info_addr" : "0x7f9544003a30", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95337fac70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958c4e6700", +"thread_info_addr" : "0x7f952c019fb0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958c4e5c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95f3c6a700", +"thread_info_addr" : "0x7f95e0000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95f3c69c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952b9fc700", +"thread_info_addr" : "0x7f95ac041b00", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952b9fbc70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d4f27700", +"thread_info_addr" : "0x7f959c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95d4f26c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95a39fc700", +"thread_info_addr" : "0x7f9588000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95a39fbc70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d6d0a700", +"thread_info_addr" : "0x7f95c8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95d6d09c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958d3f1700", +"thread_info_addr" : "0x7f9538000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958d3f0c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532f4a700", +"thread_info_addr" : "0x7f9554114390", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9532f49c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95258fb700", +"thread_info_addr" : "0x7f96040f36f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95258fac70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952a7f3700", +"thread_info_addr" : "0x7f95dc2d5a60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952a7f2c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f963f7fb700", +"thread_info_addr" : "0x7f962c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f963f7fac70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958e1f8700", +"thread_info_addr" : "0x7f9558000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958e1f7c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958f631700", +"thread_info_addr" : "0x7f9574000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958f630c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9531d41700", +"thread_info_addr" : "0x7f958004ac20", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9531d40c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d58c6700", +"thread_info_addr" : "0x7f95b0000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95d58c5c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95f3868700", +"thread_info_addr" : "0x7f95d8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95f3867c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952b5fa700", +"thread_info_addr" : "0x7f95b40e5c20", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952b5f9c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d6908700", +"thread_info_addr" : "0x7f95c0000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95d6907c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958efff700", +"thread_info_addr" : "0x7f956c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958effec70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532b48700", +"thread_info_addr" : "0x7f955c007b00", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f9532b47c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95f18ff700", +"thread_info_addr" : "0x7f95dc013e70", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f95f18fec70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952a3f1700", +"thread_info_addr" : "0x7f95e4289fa0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f952a3f0c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958ddf6700", +"thread_info_addr" : "0x7f9544000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f958ddf5c70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f953193f700", +"thread_info_addr" : "0x7f95840196b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { + "IP" : "0x7f9653e42c58", + "SP" : "0x7f953193ec70", + "BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ + "is_managed" : "false", + "native_address" : "0x558e94a334f2", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c37ba9", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c38e58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c443c7", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94a8881a", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e44a90", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42c58", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e42d83", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94ca8846", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x558e94c3f87b", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653e39432", + "native_offset" : "0x00000" + } +, +{ + "is_managed" : "false", + "native_address" : "0x7f9653d4c6d3", + "native_offset" : "0x00000" + } + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x66f2711e8", +"offset_rich_hash" : "0x66f271314", +"crashed" : false, +"native_thread_id" : "0x7f961ffff700", +"thread_info_addr" : "0x7f9614000b60", +"thread_name" : "mono", +"ctx" : { + "IP" : "0x7f9653e401b8", + "SP" : "0x7f961fffe6d0", + "BP" : "0x558e94e92000" +}, +"managed_frames" : [ +{ + "is_managed" : "false", + "native_address" : "unregistered" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60040f2", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0001c" + } +, +{ + "is_managed" : "true", + "guid" : "461CB061-F860-48D0-A29A-7CFAA7BE0582", + "token" : "0x6000102", + "native_offset" : "0x0", + "filename" : "OmniSharp.Shared.dll", + "sizeofimage" : "0x12000", + "timestamp" : "0x81df316c", + "il_offset" : "0x00006" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60040ca", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00017" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004073", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0008d" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004071", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00000" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x6004070", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x00031" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x60040cc", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0000b" + } +, +{ + "is_managed" : "true", + "guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", + "token" : "0x00000", + "native_offset" : "0x0", + "filename" : "mscorlib.dll", + "sizeofimage" : "0x49c000", + "timestamp" : "0x0", + "il_offset" : "0x0002a" + } + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e401b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0401e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0fa59", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c412db", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bcc21c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x20ff255e25", +"offset_rich_hash" : "0x20ff257aaa", +"crashed" : true, +"native_thread_id" : "0x7f961d117700", +"thread_info_addr" : "0x7f95ec000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f9653c877d5", +"SP" : "0x7f961d113520", +"BP" : "0x7f95ec0e5980" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004f2e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0001d" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x60013d6", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x00002" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x6000a5b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x0008e" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x600027d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x6000283", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x00039" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x600027e", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x0000d" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x6000293", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x6000339", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x00515" +} +, +{ +"is_managed" : "true", +"guid" : "284D11F2-7576-4CAF-BA66-8D0E682555F7", +"token" : "0x600034a", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.Tasks.Core.dll", +"sizeofimage" : "0x14c000", +"timestamp" : "0xbe4a89e5", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600154b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00029" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600236a", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x002fc" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600363f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013ea", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6002365", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00065" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600363f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013e8", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6002361", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x001f5" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600363f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013e3", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600235f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0015c" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600363f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013e2", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0002c" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600235d", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00187" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600363f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013dd", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00061" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600235b", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0005f" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600363f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013b7", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00046" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6002359", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x002b6" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6003634", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60013b0", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6002353", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0041d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600365b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600365a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0003b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002b76", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002ac5", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002ac1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002ac4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002b2d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002ac3", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0005e" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002c06", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600233c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0001a" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040ca", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004070", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040cc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0000b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c4450c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8951f", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a89700", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a35902", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a88907", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653c877d5", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653c70895", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e949f13b0", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94cfe295", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d1b617", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bf1c6d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94b77754", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bb2a4b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bc0eff", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d54c4700", +"thread_info_addr" : "0x7f95a8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d54c3c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952b1f8700", +"thread_info_addr" : "0x7f95bc0bee00", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952b1f7c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d6506700", +"thread_info_addr" : "0x7f95b8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d6505c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958ebfd700", +"thread_info_addr" : "0x7f9564000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958ebfcc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95305ff700", +"thread_info_addr" : "0x7f9598031d80", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95305fec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532746700", +"thread_info_addr" : "0x7f956400f010", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9532745c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9533dfe700", +"thread_info_addr" : "0x7f9540013af0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9533dfdc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9529fef700", +"thread_info_addr" : "0x7f95e8624a00", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9529feec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x9123aca5d", +"offset_rich_hash" : "0x9123acc32", +"crashed" : false, +"native_thread_id" : "0x7f963f3ff700", +"thread_info_addr" : "0x7f9620000b60", +"thread_name" : "Timer-Scheduler", +"ctx" : { +"IP" : "0x7f9653e401b8", +"SP" : "0x7f963f3fdf30", +"BP" : "0x558e95c0b910" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041fe", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00059" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041ea", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e7", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60064b6", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0003f" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040ca", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004070", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040cc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0000b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e401b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0401e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c60c3a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c62652", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c62f4b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c4141b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bccd44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952bfff700", +"thread_info_addr" : "0x7f95a8225640", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952bffec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95a3fff700", +"thread_info_addr" : "0x7f9598000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95a3ffec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958d9f4700", +"thread_info_addr" : "0x7f953c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958d9f3c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f953153d700", +"thread_info_addr" : "0x7f9594077ca0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f953153cc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f961f4a2700", +"thread_info_addr" : "0x7f9604000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f961f4a1c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9525efe700", +"thread_info_addr" : "0x7f9600108040", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9525efdc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952915b700", +"thread_info_addr" : "0x7f95ec262ec0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952915ac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952adf6700", +"thread_info_addr" : "0x7f95c43765a0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952adf5c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f963fdfe700", +"thread_info_addr" : "0x7f9630000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f963fdfdc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958e7fb700", +"thread_info_addr" : "0x7f955c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958e7fac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958fc34700", +"thread_info_addr" : "0x7f9584000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958fc33c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532344700", +"thread_info_addr" : "0x7f956c01abd0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9532343c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95339fc700", +"thread_info_addr" : "0x7f95480585f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95339fbc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x835771efd", +"offset_rich_hash" : "0x8357721f6", +"crashed" : false, +"native_thread_id" : "0x7f961e90f700", +"thread_info_addr" : "0x7f95fc000b60", +"thread_name" : "In-proc Node (D", +"ctx" : { +"IP" : "0x7f9653e3fe92", +"SP" : "0x7f961e90df30", +"BP" : "0x558e94e81ee0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041ff", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x000ee" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041f1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x000ba" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041f4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x60012e0", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00047" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6001501", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040ca", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004070", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040cc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0000b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e3fe92", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0407d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c604f6", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c62eab", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c4141b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bccd44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0xa32a3256a", +"offset_rich_hash" : "0xa32a328ee", +"crashed" : false, +"native_thread_id" : "0x7f961e8ce700", +"thread_info_addr" : "0x7f9600000b60", +"thread_name" : "RequestBuilder ", +"ctx" : { +"IP" : "0x7f9653e3fe92", +"SP" : "0x7f961e8cd320", +"BP" : "0x558e95c12050" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040aa", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0003a" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600409d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00011" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600409f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6003fe7", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00026" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6003fe6", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x000fe" +} +, +{ +"is_managed" : "true", +"guid" : "13E87EE1-A85D-4B5E-8544-328288BAB252", +"token" : "0x60007e8", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x2ae000", +"timestamp" : "0x0", +"il_offset" : "0x0007e" +} +, +{ +"is_managed" : "true", +"guid" : "13E87EE1-A85D-4B5E-8544-328288BAB252", +"token" : "0x6004321", +"native_offset" : "0x0", +"filename" : "System.dll", +"sizeofimage" : "0x2ae000", +"timestamp" : "0x0", +"il_offset" : "0x0005f" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x600233c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x0002e" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040ca", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004070", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00031" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60040cc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0000b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e3fe92", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0407d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c60c3a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c6246c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c9cd73", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d7fff700", +"thread_info_addr" : "0x7f95cc000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d7ffec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958c6e7700", +"thread_info_addr" : "0x558e969f7280", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958c6e6c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95f3e6b700", +"thread_info_addr" : "0x7f95e8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95f3e6ac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952bbfd700", +"thread_info_addr" : "0x7f95b00af3b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952bbfcc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9646b6f700", +"thread_info_addr" : "0x7f9640000b60", +"thread_name" : "Finalizer", +"ctx" : { +"IP" : "0x7f9653e42a24", +"SP" : "0x7f9646b6ec90", +"BP" : "0x558e94e82320" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42a24", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42b28", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c984c8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95a3bfd700", +"thread_info_addr" : "0x7f9594000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95a3bfcc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d6f0b700", +"thread_info_addr" : "0x7f95c4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d6f0ac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958d5f2700", +"thread_info_addr" : "0x7f9534000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958d5f1c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f953314b700", +"thread_info_addr" : "0x7f95581a7300", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f953314ac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f961e25b700", +"thread_info_addr" : "0x7f95f8000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f961e25ac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x87f900928", +"offset_rich_hash" : "0x87f900c6f", +"crashed" : false, +"native_thread_id" : "0x7f9653c46780", +"thread_info_addr" : "0x558e95c15600", +"thread_name" : "mono", +"ctx" : { +"IP" : "0x7f9653e3fe92", +"SP" : "0x7ffdefea4020", +"BP" : "0x558e95c0c400" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041fe", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00059" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041ea", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e6", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "A71C98ED-8B68-4BB3-A4F9-98E3407EA96F", +"token" : "0x6000006", +"native_offset" : "0x0", +"filename" : "OmniSharp.exe", +"sizeofimage" : "0x8000", +"timestamp" : "0xa97022d2", +"il_offset" : "0x00183" +} +, +{ +"is_managed" : "true", +"guid" : "C13615CC-A0C7-4CEA-A15D-FD4227FC93CF", +"token" : "0x60000e3", +"native_offset" : "0x0", +"filename" : "OmniSharp.Host.dll", +"sizeofimage" : "0x1a000", +"timestamp" : "0x842f1bbf", +"il_offset" : "0x0000b" +} +, +{ +"is_managed" : "true", +"guid" : "344A1E8C-D659-4B17-B1E0-1F8DF6AE8827", +"token" : "0x60000b9", +"native_offset" : "0x0", +"filename" : "McMaster.Extensions.CommandLineUtils.dll", +"sizeofimage" : "0x28000", +"timestamp" : "0x83b188f9", +"il_offset" : "0x00039" +} +, +{ +"is_managed" : "true", +"guid" : "C13615CC-A0C7-4CEA-A15D-FD4227FC93CF", +"token" : "0x6000002", +"native_offset" : "0x0", +"filename" : "OmniSharp.Host.dll", +"sizeofimage" : "0x1a000", +"timestamp" : "0x842f1bbf", +"il_offset" : "0x00081" +} +, +{ +"is_managed" : "true", +"guid" : "A71C98ED-8B68-4BB3-A4F9-98E3407EA96F", +"token" : "0x6000004", +"native_offset" : "0x0", +"filename" : "OmniSharp.exe", +"sizeofimage" : "0x8000", +"timestamp" : "0xa97022d2", +"il_offset" : "0x00028" +} +, +{ +"is_managed" : "true", +"guid" : "C13615CC-A0C7-4CEA-A15D-FD4227FC93CF", +"token" : "0x600001d", +"native_offset" : "0x0", +"filename" : "OmniSharp.Host.dll", +"sizeofimage" : "0x1a000", +"timestamp" : "0x842f1bbf", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "A71C98ED-8B68-4BB3-A4F9-98E3407EA96F", +"token" : "0x6000001", +"native_offset" : "0x0", +"filename" : "OmniSharp.exe", +"sizeofimage" : "0x8000", +"timestamp" : "0xa97022d2", +"il_offset" : "0x00005" +} +, +{ +"is_managed" : "true", +"guid" : "A71C98ED-8B68-4BB3-A4F9-98E3407EA96F", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "OmniSharp.exe", +"sizeofimage" : "0x8000", +"timestamp" : "0xa97022d2", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e3fe92", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0407d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c60c3a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c6246c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c62f4b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c4141b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bccd44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9525afc700", +"thread_info_addr" : "0x7f96083bdcb0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9525afbc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952a9f4700", +"thread_info_addr" : "0x7f95d0109990", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952a9f3c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x85eac6657", +"offset_rich_hash" : "0x85eac69e3", +"crashed" : false, +"native_thread_id" : "0x7f963f9fc700", +"thread_info_addr" : "0x7f9628000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e401b8", +"SP" : "0x7f963f9fab80", +"BP" : "0x558e94e81ee0" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041ff", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x000ee" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041f1", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x000ba" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041f2", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00032" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600649a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004197", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0000e" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004195", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600417d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004192", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e401b8", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0401e", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c60448", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c62eab", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c4141b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bccd44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958e3f9700", +"thread_info_addr" : "0x7f9554000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958e3f8c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958f832700", +"thread_info_addr" : "0x7f9580000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958f831c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9531f42700", +"thread_info_addr" : "0x7f9574052f70", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9531f41c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95335fa700", +"thread_info_addr" : "0x7f955004bc20", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95335f9c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : true, +"offset_free_hash" : "0x1a7a41b541", +"offset_rich_hash" : "0x1a7a41bc2c", +"crashed" : false, +"native_thread_id" : "0x7f958c2e5700", +"thread_info_addr" : "0x7f9538085150", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e3fe92", +"SP" : "0x7f958c2e2e60", +"BP" : "0x558e95c10370" +}, +"managed_frames" : [ +{ +"is_managed" : "false", +"native_address" : "unregistered" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041fe", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00059" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041ea", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00017" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e9", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e4", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0001c" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60041e6", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000d2c", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00053" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000c3e", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000c41", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000e74", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x000d3" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000e75", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000e61", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000e5f", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "F7274894-CE15-4696-AFBA-1F0FFCD06434", +"token" : "0x6000e5e", +"native_offset" : "0x0", +"filename" : "Microsoft.Build.dll", +"sizeofimage" : "0x1dc000", +"timestamp" : "0xe22f0072", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x6000036", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x0007b" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x60000de", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x6000173", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00042" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x6000051", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x0001b" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x6000050", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x00020" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x600004e", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x000a1" +} +, +{ +"is_managed" : "true", +"guid" : "ECC03816-AB95-4B56-9CAF-0CD018C8F575", +"token" : "0x600016e", +"native_offset" : "0x0", +"filename" : "OmniSharp.MSBuild.dll", +"sizeofimage" : "0x20000", +"timestamp" : "0xe73b4609", +"il_offset" : "0x00073" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600365b", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004073", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0008d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004071", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600365a", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0003b" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002b7f", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00023" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002ada", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00061" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002abe", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00045" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60029c7", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00058" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002b3e", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0003d" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6002b30", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x60064bc", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00007" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004195", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00019" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x600417d", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00096" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x6004192", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x0002a" +} + +], +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e3fe92", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94d0407d", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c60c3a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c6246c", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c62f4b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c4141b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94bccd44", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "true", +"guid" : "B9ABB743-AA73-4E3E-8715-2AE31FBC1DFF", +"token" : "0x00000", +"native_offset" : "0x0", +"filename" : "mscorlib.dll", +"sizeofimage" : "0x49c000", +"timestamp" : "0x0", +"il_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d5ac7700", +"thread_info_addr" : "0x7f95ac000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d5ac6c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95f3a69700", +"thread_info_addr" : "0x7f95e4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95f3a68c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952725b700", +"thread_info_addr" : "0x7f95f838d2f0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952725ac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952b7fb700", +"thread_info_addr" : "0x7f95b809b580", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952b7fac70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958d1f0700", +"thread_info_addr" : "0x7f952c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958d1efc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d6b09700", +"thread_info_addr" : "0x7f95bc000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d6b08c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532d49700", +"thread_info_addr" : "0x7f9560016770", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9532d48c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952a5f2700", +"thread_info_addr" : "0x7f95d83870b0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952a5f1c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958dff7700", +"thread_info_addr" : "0x7f954c000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958dff6c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9531b40700", +"thread_info_addr" : "0x7f957c030000", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9531b3fc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958f430700", +"thread_info_addr" : "0x7f9578000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958f42fc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d56c5700", +"thread_info_addr" : "0x7f95a4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d56c4c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952b3f9700", +"thread_info_addr" : "0x7f95c0aa95d0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952b3f8c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95d6707700", +"thread_info_addr" : "0x7f95b4000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95d6706c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f958edfe700", +"thread_info_addr" : "0x7f9570000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f958edfdc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9532947700", +"thread_info_addr" : "0x7f956802dce0", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9532946c70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f9533fff700", +"thread_info_addr" : "0x7f9534024f70", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f9533ffec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f95f16fe700", +"thread_info_addr" : "0x7f95d0002a40", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f95f16fdc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f963c2ff700", +"thread_info_addr" : "0x7f9618000b60", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f963c2fec70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +}, +{ +"is_managed" : false, +"offset_free_hash" : "0x0", +"offset_rich_hash" : "0x0", +"crashed" : false, +"native_thread_id" : "0x7f952a1f0700", +"thread_info_addr" : "0x7f95e134f310", +"thread_name" : "Thread Pool Wor", +"ctx" : { +"IP" : "0x7f9653e42c58", +"SP" : "0x7f952a1efc70", +"BP" : "0x558e94e82c48" +}, +"unmanaged_frames" : [ +{ +"is_managed" : "false", +"native_address" : "0x558e94a334f2", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c37ba9", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c38e58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c443c7", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94a8881a", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e44a90", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42c58", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e42d83", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94ca8846", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x558e94c3f87b", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653e39432", +"native_offset" : "0x00000" +} +, +{ +"is_managed" : "false", +"native_address" : "0x7f9653d4c6d3", +"native_offset" : "0x00000" +} + +] +} +] +} \ No newline at end of file