Rest of rename to QControlKit

This commit is contained in:
2020-09-07 08:42:42 -05:00
parent 69ddf3383c
commit 0aea997309
85 changed files with 2542 additions and 39 deletions
@@ -0,0 +1,19 @@
Any raw assets you want to be deployed with your application can be placed in
this directory (and child directories) and given a Build Action of "AndroidAsset".
These files will be deployed with your package and will be accessible using Android's
AssetManager, like this:
public class ReadAsset : Activity
{
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
InputStream input = Assets.Open ("my_asset.txt");
}
}
Additionally, some Android functions will automatically load asset files:
Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf");
@@ -0,0 +1,36 @@
using System;
using Android.App;
using Android.Content.PM;
using Android.Runtime;
using Android.Views;
using Android.Widget;
using Android.OS;
using Serilog;
namespace QControlKitXamDemo.Droid
{
[Activity(Label = "QControlKitXamDemo", Icon = "@mipmap/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsAppCompatActivity
{
protected override void OnCreate(Bundle savedInstanceState)
{
TabLayoutResource = Resource.Layout.Tabbar;
ToolbarResource = Resource.Layout.Toolbar;
base.OnCreate(savedInstanceState);
Log.Logger = new LoggerConfiguration().WriteTo.AndroidLog().MinimumLevel.Debug().CreateLogger();
Xamarin.Essentials.Platform.Init(this, savedInstanceState);
global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
LoadApplication(new App());
}
public override void OnRequestPermissionsResult(int requestCode, string[] permissions, [GeneratedEnum] Android.Content.PM.Permission[] grantResults)
{
Xamarin.Essentials.Platform.OnRequestPermissionsResult(requestCode, permissions, grantResults);
base.OnRequestPermissionsResult(requestCode, permissions, grantResults);
}
}
}
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="1" android:versionName="1.0" package="com.jwetzell.qcontrolkitxamdemo">
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="28" />
<application android:label="QControlKitXamDemo.Android"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
</manifest>
@@ -0,0 +1,30 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("QControlKitXamDemo.Android")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("QControlKitXamDemo.Android")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
// Add some common permissions, these can be removed if not needed
[assembly: UsesPermission(Android.Manifest.Permission.Internet)]
[assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)]
@@ -0,0 +1,109 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4F7F13C7-85EF-431F-AB03-B2494F0F4C7F}</ProjectGuid>
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<TemplateGuid>{c9e5eea5-ca05-42a1-839b-61506e0a37df}</TemplateGuid>
<OutputType>Library</OutputType>
<RootNamespace>QControlKitXamDemo.Droid</RootNamespace>
<AssemblyName>QControlKitXamDemo.Android</AssemblyName>
<Deterministic>True</Deterministic>
<AndroidApplication>True</AndroidApplication>
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
<AndroidResgenClass>Resource</AndroidResgenClass>
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<TargetFrameworkVersion>v9.0</TargetFrameworkVersion>
<AndroidEnableSGenConcurrent>true</AndroidEnableSGenConcurrent>
<AndroidUseAapt2>true</AndroidUseAapt2>
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidClientHandler</AndroidHttpClientHandlerType>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidLinkMode>None</AndroidLinkMode>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<AndroidManagedSymbols>true</AndroidManagedSymbols>
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
<Reference Include="System.Numerics" />
<Reference Include="System.Numerics.Vectors" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.Sinks.Xamarin">
<Version>0.2.0.64</Version>
</PackageReference>
<PackageReference Include="Xamarin.Forms" Version="4.7.0.968" />
<PackageReference Include="Xamarin.Essentials" Version="1.5.3.2" />
</ItemGroup>
<ItemGroup>
<Compile Include="MainActivity.cs" />
<Compile Include="Resources\Resource.designer.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\AboutResources.txt" />
<None Include="Assets\AboutAssets.txt" />
<None Include="Properties\AndroidManifest.xml" />
</ItemGroup>
<ItemGroup>
<AndroidResource Include="Resources\layout\Tabbar.xml" />
<AndroidResource Include="Resources\layout\Toolbar.xml" />
<AndroidResource Include="Resources\values\styles.xml" />
<AndroidResource Include="Resources\values\colors.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon.xml" />
<AndroidResource Include="Resources\mipmap-anydpi-v26\icon_round.xml" />
<AndroidResource Include="Resources\mipmap-hdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-hdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-mdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-mdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxhdpi\launcher_foreground.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\icon.png" />
<AndroidResource Include="Resources\mipmap-xxxhdpi\launcher_foreground.png" />
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\drawable\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\QControlKit\QControlKit.csproj">
<Project>{51cd2579-79c9-49a9-b68d-93cbe878baa1}</Project>
<Name>QControlKit</Name>
</ProjectReference>
<ProjectReference Include="..\QControlKitXamDemo\QControlKitXamDemo.csproj">
<Project>{20D2D0D8-A518-42DC-BAB8-CF098CDF03C4}</Project>
<Name>QControlKitXamDemo</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
<ProjectExtensions>
<VisualStudio>
<UserProperties XamarinHotReloadDebuggerTimeoutExceptionQControlKitXamDemoAndroidHideInfoBar="True" />
</VisualStudio>
</ProjectExtensions>
</Project>
@@ -0,0 +1,50 @@
Images, layout descriptions, binary blobs and string dictionaries can be included
in your application as resource files. Various Android APIs are designed to
operate on the resource IDs instead of dealing with images, strings or binary blobs
directly.
For example, a sample Android app that contains a user interface layout (main.xml),
an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
would keep its resources in the "Resources" directory of the application:
Resources/
drawable-hdpi/
icon.png
drawable-ldpi/
icon.png
drawable-mdpi/
icon.png
layout/
main.xml
values/
strings.xml
In order to get the build system to recognize Android resources, set the build action to
"AndroidResource". The native Android APIs do not operate directly with filenames, but
instead operate on resource IDs. When you compile an Android application that uses resources,
the build system will package the resources for distribution and generate a class called
"Resource" that contains the tokens for each one of the resources included. For example,
for the above Resources layout, this is what the Resource class would expose:
public class Resource {
public class drawable {
public const int icon = 0x123;
}
public class layout {
public const int main = 0x456;
}
public class strings {
public const int first_string = 0xabc;
public const int second_string = 0xbcd;
}
}
You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main
to reference the layout/main.xml file, or Resource.strings.first_string to reference the first
string in the dictionary file values/strings.xml.
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.TabLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/sliding_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:tabIndicatorColor="@android:color/white"
app:tabGravity="fill"
app:tabMode="fixed" />
@@ -0,0 +1,9 @@
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/launcher_background" />
<foreground android:drawable="@mipmap/launcher_foreground" />
</adaptive-icon>
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/launcher_background" />
<foreground android:drawable="@mipmap/launcher_foreground" />
</adaptive-icon>
Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="launcher_background">#FFFFFF</color>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
<color name="colorAccent">#FF4081</color>
</resources>
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MainTheme" parent="MainTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- Set theme colors from https://aka.ms/material-colors -->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">#1976D2</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">#FF4081</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
<item name="windowActionModeOverlay">true</item>
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
</style>
<style name="AppCompatDialogStyle" parent="Theme.AppCompat.Light.Dialog">
<item name="colorAccent">#FF4081</item>
</style>
</resources>
@@ -0,0 +1,731 @@
{
"protocol_version" : "0.0.6",
"configuration" : {
"version" : "(6.12.0.90) (2020-02/d3daacdaa80)",
"tlc" : "normal",
"sigsgev" : "altstack",
"notifications" : "kqueue",
"architecture" : "amd64",
"disabled_features" : "none",
"smallconfig" : "disabled",
"bigarrays" : "disabled",
"softdebug" : "enabled",
"interpreter" : "enabled",
"llvm_support" : "0",
"suspend" : "hybrid"
},
"memory" : {
"Resident Size" : "152399872",
"Virtual Size" : "4637904896",
"minor_gc_time" : "0",
"major_gc_time" : "0",
"minor_gc_count" : "0",
"major_gc_count" : "0",
"major_gc_time_concurrent" : "0"
},
"threads" : [
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x7000052ab000",
"thread_info_addr" : "0x7fde7b008200",
"thread_name" : "Finalizer",
"ctx" : {
"IP" : "0x7fff6e3eee36",
"SP" : "0x7000052aaeb8",
"BP" : "0x7000052aaf00"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x104cfbec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e96e67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d67fc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97d7d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x113474dc0",
"thread_info_addr" : "0x7fde79814000",
"thread_name" : "tid_307",
"ctx" : {
"IP" : "0x7fff6e3f1882",
"SP" : "0x7ffeeafb4cf8",
"BP" : "0x7ffeeafb4d90"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x104cfbec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e96e67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d67fc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7ffeeafb49e8",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f31eb0",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f49f91",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e94074",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e93e7a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104cc15fa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104c4d209",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e2adcc9",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x5",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : true,
"offset_free_hash" : "0x11a6748113",
"offset_rich_hash" : "0x11a6748628",
"crashed" : true,
"native_thread_id" : "0x70000782a000",
"thread_info_addr" : "0x7fde7b49fe00",
"thread_name" : "tid_9c03",
"ctx" : {
"IP" : "0x7fff6e3f533a",
"SP" : "0x700007822b98",
"BP" : "0x700007822bc0"
},
"managed_frames" : [
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00015"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0026a"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00043"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004286",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00093"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0xffffffff"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0003a"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00025"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002a"
}
],
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x104cfbec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e977aa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d69087",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d00bfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104d68382",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e37c808",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f54f37",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f35dbf",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f553ce",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f5554f",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f5558a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104f49d5e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e916c1",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e9831d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e95f8c",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff35960993",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fdfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fcf7",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3596292b",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34271b05",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243304",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243250",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34241d79",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34240e3e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff342c9489",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x107bb1fcc",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104c5ded2",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e6cf87",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e73830",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x104e97dbd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
}
]
}
@@ -0,0 +1,731 @@
{
"protocol_version" : "0.0.6",
"configuration" : {
"version" : "(6.12.0.90) (2020-02/d3daacdaa80)",
"tlc" : "normal",
"sigsgev" : "altstack",
"notifications" : "kqueue",
"architecture" : "amd64",
"disabled_features" : "none",
"smallconfig" : "disabled",
"bigarrays" : "disabled",
"softdebug" : "enabled",
"interpreter" : "enabled",
"llvm_support" : "0",
"suspend" : "hybrid"
},
"memory" : {
"Resident Size" : "144965632",
"Virtual Size" : "4691001344",
"minor_gc_time" : "0",
"major_gc_time" : "0",
"minor_gc_count" : "0",
"major_gc_count" : "0",
"major_gc_time_concurrent" : "0"
},
"threads" : [
{
"is_managed" : true,
"offset_free_hash" : "0x11a6748113",
"offset_rich_hash" : "0x11a6748628",
"crashed" : true,
"native_thread_id" : "0x70000928e000",
"thread_info_addr" : "0x7fc2ae02c600",
"thread_name" : "tid_6303",
"ctx" : {
"IP" : "0x7fff6e3f533a",
"SP" : "0x700009286b98",
"BP" : "0x700009286bc0"
},
"managed_frames" : [
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00015"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0026a"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00043"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004286",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00093"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0xffffffff"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0003a"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00025"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002a"
}
],
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x1090c1ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d7aa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912f087",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1090c6bfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912e382",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e37c808",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931af37",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1092fbdbf",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931b3ce",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931b54f",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10931b58a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10930fd5e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1092576c1",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925e31d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925bf8c",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff35960993",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fdfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fcf7",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3596292b",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34271b05",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243304",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243250",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34241d79",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34240e3e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff342c9489",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1100cffcc",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109023ed2",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109232f87",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109239830",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925ddbd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x700006f12000",
"thread_info_addr" : "0x7fc2ac016800",
"thread_name" : "Finalizer",
"ctx" : {
"IP" : "0x7fff6e3eee36",
"SP" : "0x700006f11eb8",
"BP" : "0x700006f11f00"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x1090c1ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925ce67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912dfc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925dd7d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x10b9a6dc0",
"thread_info_addr" : "0x7fc2ad008200",
"thread_name" : "tid_307",
"ctx" : {
"IP" : "0x7fff6e3f1882",
"SP" : "0x7ffee6beecf8",
"BP" : "0x7ffee6beed90"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x1090c1ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925d135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925ce67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10912dfc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7ffee6bee9e8",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1092f7eb0",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10930ff91",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10925a074",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109259e7a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1090875fa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x109013209",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e2adcc9",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x5",
"native_offset" : "0x00000"
}
]
}
]
}
@@ -0,0 +1,731 @@
{
"protocol_version" : "0.0.6",
"configuration" : {
"version" : "(6.12.0.90) (2020-02/d3daacdaa80)",
"tlc" : "normal",
"sigsgev" : "altstack",
"notifications" : "kqueue",
"architecture" : "amd64",
"disabled_features" : "none",
"smallconfig" : "disabled",
"bigarrays" : "disabled",
"softdebug" : "enabled",
"interpreter" : "enabled",
"llvm_support" : "0",
"suspend" : "hybrid"
},
"memory" : {
"Resident Size" : "140345344",
"Virtual Size" : "4632956928",
"minor_gc_time" : "0",
"major_gc_time" : "0",
"minor_gc_count" : "0",
"major_gc_count" : "0",
"major_gc_time_concurrent" : "0"
},
"threads" : [
{
"is_managed" : true,
"offset_free_hash" : "0x11a6748113",
"offset_rich_hash" : "0x11a6748628",
"crashed" : true,
"native_thread_id" : "0x70000c029000",
"thread_info_addr" : "0x7fc31ca62200",
"thread_name" : "tid_6603",
"ctx" : {
"IP" : "0x7fff6e3f533a",
"SP" : "0x70000c021b98",
"BP" : "0x70000c021bc0"
},
"managed_frames" : [
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00015"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0026a"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00043"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004286",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00093"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0xffffffff"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x0003a"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00025"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00071"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed1",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002b"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x0002a"
}
],
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x102f32ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce7aa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102fa0087",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f37bfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f9f382",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e37c808",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318bf37",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10316cdbf",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318c3ce",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318c54f",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x10318c58a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x103180d5e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030c86c1",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cf31d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ccf8c",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004287",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x6004487",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed4",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff35960993",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fdfe",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3595fcf7",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff3596292b",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34271b05",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243304",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34243250",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34241d79",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff34240e3e",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff342c9489",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x105f09fcc",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x00000",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "3B74EB7E-72BA-49D0-ADF6-22008AA5CB32",
"token" : "0x600447f",
"native_offset" : "0x0",
"filename" : "System.dll",
"sizeofimage" : "0x292000",
"timestamp" : "0xcbf565c7",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001f2c",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "true",
"guid" : "B18E5763-EC3F-41E6-8A8F-E16D7F5E0BEE",
"token" : "0x6001ed2",
"native_offset" : "0x0",
"filename" : "mscorlib.dll",
"sizeofimage" : "0x472000",
"timestamp" : "0xd1b6814b",
"il_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102e94ed2",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030a3f87",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030aa830",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cedbd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x105c8ddc0",
"thread_info_addr" : "0x7fc31e808200",
"thread_name" : "tid_307",
"ctx" : {
"IP" : "0x7fff6e3f1882",
"SP" : "0x7ffeecd7dcf8",
"BP" : "0x7ffeecd7dd90"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x102f32ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cde67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f9efc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7ffeecd7d9e8",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x103168eb0",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x103180f91",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cb074",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cae7a",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102ef85fa",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102e84209",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e2adcc9",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x5",
"native_offset" : "0x00000"
}
]
},
{
"is_managed" : false,
"offset_free_hash" : "0x0",
"offset_rich_hash" : "0x0",
"crashed" : false,
"native_thread_id" : "0x700009cad000",
"thread_info_addr" : "0x7fc31d820800",
"thread_name" : "Finalizer",
"ctx" : {
"IP" : "0x7fff6e3eee36",
"SP" : "0x700009caceb8",
"BP" : "0x700009cacf00"
},
"unmanaged_frames" : [
{
"is_managed" : "false",
"native_address" : "0x102f32ec6",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ce135",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030cde67",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x102f9efc3",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4a65fd",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "unregistered"
}
,
{
"is_managed" : "false",
"native_address" : "0x1030ced7d",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4b2109",
"native_offset" : "0x00000"
}
,
{
"is_managed" : "false",
"native_address" : "0x7fff6e4adb8b",
"native_offset" : "0x00000"
}
]
}
]
}