Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IOS] Platform-views Deadlock caused by thread merging #94524

Open
0xZOne opened this issue Dec 2, 2021 · 22 comments
Open

[IOS] Platform-views Deadlock caused by thread merging #94524

0xZOne opened this issue Dec 2, 2021 · 22 comments
Labels
a: platform-views Embedding Android/iOS views in Flutter apps a: production Issues experienced in live production apps c: crash Stack traces logged to the console engine flutter/engine repository. See also e: labels. P2 Important issues not at the top of the work list platform-ios iOS applications specifically team-ios Owned by iOS platform team triaged-ios Triaged by iOS platform team

Comments

@0xZOne
Copy link
Member

0xZOne commented Dec 2, 2021

As shown below, If thread merging occurs before the code is executed in the green box, this results in a deadlock. As the task in the red box will never be executed, the current thread will always be blocked and will never be awoken.

截屏2021-12-02 下午2 11 00

For example:

void TaskRunner::RunNowOrPostTask(fml::RefPtr<fml::TaskRunner> runner,
                                  const fml::closure& task) {
  FML_DCHECK(runner);
  if (runner->RunsTasksOnCurrentThread()) { /// -------->>> A
    task();
  } else {
    runner->PostTask(std::move(task));   /// ----------->> B
  }
}

void PlatformView::NotifyCreated() {
  ...
  fml::ManualResetWaitableEvent latch;
  fml::TaskRunner::RunNowOrPostTask(
      task_runners_.GetRasterTaskRunner(),
      [platform_view, &surface, &latch]() {
        surface = platform_view->CreateRenderingSurface();
        if (surface && !surface->IsValid()) {
          surface.reset();
        }
        latch.Signal();
      });
  latch.Wait();   ////------>>>> C
  ...
}

1st scenario:
when the platform thread executes after A and before B, the raster thread preempts the CPU and obtains the right to execute, and starts thread merging (Assuming the raster task queue is empty now). When the platform thread gets the CPU again, the task continues to be put into the raster task queue, waiting for the platform thread to be processed later. But the platform thread will block at the C.

2nd scenario:
After the platform thread posts the sync task to the raster task queue (after B), the raster thread gets the CPU and starts thread merging immediately, and no chance to get the previous sync task to execute. The deadlock will also happen.

Related issue: #80491

Valuable stacktrace
#0  0x00000001bd675550 in __psynch_cvwait ()
#1  0x00000001ddaa396c in _pthread_cond_wait$VARIANT$armv81 ()
#2  0x000000019b22b2b8 in std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) ()
#3  0x00000001164745c0 in fml::ManualResetWaitableEvent::Wait()
#4  0x0000000117552000 in flutter::PlatformView::NotifyCreated()
#5  0x000000011639ddc4 in -[FlutterViewController surfaceUpdated:]
#6  0x0000000104e98230 in -[FLBFlutterViewContainer surfaceUpdated:]
#7  0x0000000104e98698 in -[FLBFlutterViewContainer viewDidAppear:]
#8  0x00000001072deb90 in -[LTaoMiniDetailFlutterViewController viewDidAppear:] ()
#9  0x0000000186598c4c in -[UIViewController _setViewAppearState:isAnimating:] ()
#10  0x0000000186680570 in -[UIViewController __viewDidAppear:] ()
#11  0x0000000186606420 in -[UIViewController _endAppearanceTransition:] ()
#12  0x0000000186792a5c in -[UINavigationController navigationTransitionView:didEndTransition:fromView:toView:] ()
#13  0x0000000105272ad4 in -[UINavigationController(AliHA) aliHASwizzledNavigationTransitionView:didEndTransition:fromView:toView:]
#14  0x0000000186845fe8 in __49-[UINavigationController _startCustomTransition:]_block_invoke ()
#15  0x000000018662ac34 in -[_UIViewControllerTransitionContext completeTransition:] ()
#16  0x0000000186d55468 in __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke.158 ()
#17  0x00000001866ab000 in -[UIViewAnimationBlockDelegate _didEndBlockAnimation:finished:context:] ()
#18  0x000000018657d9a8 in -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] ()
#19  0x0000000186591210 in -[UIViewAnimationState animationDidStop:finished:] ()
#20  0x0000000186591364 in -[UIViewAnimationState animationDidStop:finished:] ()
#21  0x0000000187c66db0 in CA::Layer::run_animation_callbacks(void*) ()
#22  0x000000010f62e1c8 in _dispatch_client_callout ()
#23  0x000000010f63c8d8 in _dispatch_main_queue_callback_4CF ()
#24  0x00000001840e57f8 in __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ ()
#25  0x00000001840a30f8 in __CFRunLoopRun ()
#26  0x00000001840b5d8c in CFRunLoopRunSpecific ()
#27  0x000000019e1c29a0 in GSEventRunModal ()
#28  0x00000001868eb018 in -[UIApplication _run] ()
#29  0x000000018667f29c in UIApplicationMain ()
#30  0x0000000104d9919c in main
#31  0x000000010f5a4190 in start ()
Complete raw log
Incident Identifier: 5F2953D7-33AE-4832-9F47-BE8AE94103FB
CrashReporter Key:   JDYThreadTracer
Hardware Model:      iPhone9,2
Process:             xxxxxxxxxxx [15706]
Path:                /var/containers/Bundle/Application/831A0198-A379-4A3B-BCC0-535C17389B2E/xxxxxxxxxxx.app/xxxxxxxxxxx
Identifier:          LxxxxxxxFlutterViewController|com.xxx.xxxx
Version:             22057887 (4.14.0)
Code Type:           ARM-64
Parent Process:      launchd [1]

Date/Time:           2021-11-30 14:17:21 +0800
Launch Time:         2021-11-30 14:13:22 +0800
OS Version:          iOS 15.1 (19B74)
Report Version:      104

Exception Type:  SIGTRAP
Exception Codes: MAIN_THREAD_BLOCK_UNTIL_ABORT
Triggered by Thread:  0

Thread 0 Crashed:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   Flutter                         0x00000001086d6438 0x0000000108690000 + 287800
4   Flutter                         0x00000001089f33fc 0x0000000108690000 + 3552252
5   Flutter                         0x00000001086b30ec 0x0000000108690000 + 143596
6   xxxxxxxxxxx                     0x0000000103e06098 _destroy_helper_block_ COChan.m:236 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103e06474 _destroy_helper_block_ COChan.m:236 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001043866a0 -[LxxxxxxxFlutterViewController viewDidAppear:] LxxxxxxxFlutterViewController.m:205 (in xxxxxxxxxxx)
9   UIKitCore                       0x00000001864f4108 0x0000000186358000 + 1687816
10  UIKitCore                       0x00000001865dafb4 0x0000000186358000 + 2633652
11  UIKitCore                       0x0000000186561120 0x0000000186358000 + 2134304
12  UIKitCore                       0x00000001866ec59c 0x0000000186358000 + 3753372
13  xxxxxxxxxxx                     0x00000001023d2ef4 -[UINavigationController(AliHA) aliHASwizzledNavigationTransitionView:didEndTransition:fromView:toView:] UINavigationController+AliHA.m:92 (in xxxxxxxxxxx)
14  UIKitCore                       0x000000018679f538 0x0000000186358000 + 4486456
15  UIKitCore                       0x00000001865859fc 0x0000000186358000 + 2284028
16  UIKitCore                       0x0000000186cae788 0x0000000186358000 + 9791368
17  UIKitCore                       0x0000000186605098 0x0000000186358000 + 2805912
18  UIKitCore                       0x00000001864d8cd4 0x0000000186358000 + 1576148
19  UIKitCore                       0x00000001864ec6cc 0x0000000186358000 + 1656524
20  UIKitCore                       0x00000001864ec820 0x0000000186358000 + 1656864
21  QuartzCore                      0x0000000187bc3440 0x0000000187b05000 + 779328
22  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
23  libdispatch.dylib               0x0000000183cfe5d0 0x0000000183cee000 + 67024
24  CoreFoundation                  0x00000001840417e8 0x0000000183ff4000 + 317416
25  CoreFoundation                  0x0000000183fff0e8 0x0000000183ff4000 + 45288
26  CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
27  GraphicsServices                0x000000019e2869a0 0x000000019e285000 + 6560
28  UIKitCore                       0x000000018684405c 0x0000000186358000 + 5161052
29  UIKitCore                       0x00000001865d9ce0 0x0000000186358000 + 2628832
30  xxxxxxxxxxx                     0x000000010420779c main main.m:49 (in xxxxxxxxxxx)

Thread 1:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   Foundation                      0x000000018574a00c 0x0000000185732000 + 98316
6   Foundation                      0x000000018578918c 0x0000000185732000 + 356748
7   UIKitCore                       0x00000001867c1d58 0x0000000186358000 + 4627800
8   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 2:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   xxxxxxxxxxx                     0x0000000103379ab4 _CMa32aLKqi2ig1 :132 (in xxxxxxxxxxx)
3   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
4   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 3:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   xxxxxxxxxxx                     0x0000000103379ab4 _CMa32aLKqi2ig1 :132 (in xxxxxxxxxxx)
3   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
4   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 4:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   xxxxxxxxxxx                     0x0000000103379ab4 _CMa32aLKqi2ig1 :132 (in xxxxxxxxxxx)
3   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
4   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 5:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   libsystem_kernel.dylib          0x00000001bdafbffc 0x00000001bdaf0000 + 49148
3   xxxxxxxxxxx                     0x0000000102fd34ac handleExceptions KSCrashMonitor_MachException.c:280 (in xxxxxxxxxxx)
4   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
5   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 6:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   xxxxxxxxxxx                     0x0000000102fd34d8 handleExceptions KSCrashMonitor_MachException.c:296 (in xxxxxxxxxxx)
3   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
4   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 7:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   libsystem_kernel.dylib          0x00000001bdaf72f4 0x00000001bdaf0000 + 29428
3   xxxxxxxxxxx                     0x0000000102fbe7b4 jdy_copyMemory JDYMachArch.c:14 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000102fbedfc jdy_backtraceThread JDYThreadTraceInternal.c:60 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x0000000102fbe0a4 +[JDYThreadTracer(Backtrace) backtraceThread:] JDYThreadTracer+Backtrace.m:70 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000102fbd7ac +[JDYThreadTracer suspendAndBacktraceThread:] JDYThreadTracer.m:559 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000102fbd624 +[JDYThreadTracer getCallstack:andName:ofThread:] JDYThreadTracer.m:501 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x0000000102fbd1bc +[JDYThreadTracer getThreadCallstacks:andNames:cpuUsage:withReportMask:] JDYThreadTracer.m:439 (in xxxxxxxxxxx)
9   xxxxxxxxxxx                     0x0000000102fbc16c +[JDYThreadTracer generateTraceReport:needSymbolicated:customReason:pageName:additionCustomInfo:] JDYThreadTracer.m:207 (in xxxxxxxxxxx)
10  xxxxxxxxxxx                     0x000000010351faa4 +[TBRunLoopHandler generateMainThreadBlockLog] TBRunLoopHandler.m:181 (in xxxxxxxxxxx)
11  xxxxxxxxxxx                     0x000000010351fbc4 +[TBRunLoopHandler uploadMainthreadInfo:] TBRunLoopHandler.m:198 (in xxxxxxxxxxx)
12  xxxxxxxxxxx                     0x000000010351df08 -[TBMainRunloopObserver blockTimerFired] TBMainRunloopObserver.m:362 (in xxxxxxxxxxx)
13  xxxxxxxxxxx                     0x000000010351dd48 -[TBMainRunloopObserver detectBlock] TBMainRunloopObserver.m:342 (in xxxxxxxxxxx)
14  xxxxxxxxxxx                     0x000000010351dae4 _44-[TBMainRunloopObserver startRunLoopMonitor]_block_invoke TBMainRunloopObserver.m:271 (in xxxxxxxxxxx)
15  libdispatch.dylib               0x0000000183d51194 0x0000000183cee000 + 405908
16  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
17  libdispatch.dylib               0x0000000183cf80d4 0x0000000183cee000 + 41172
18  libdispatch.dylib               0x0000000183cf8b84 0x0000000183cee000 + 43908
19  libdispatch.dylib               0x0000000183d02750 0x0000000183cee000 + 83792
20  libsystem_pthread.dylib         0x00000001de059e84 0x00000001de055000 + 20100
21  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 8:
0   libsystem_kernel.dylib          0x00000001bdaf22f8 0x00000001bdaf0000 + 8952
1   xxxxxxxxxxx                     0x00000001022ff270 kqueue_poll ev_kqueue.h:101 (in xxxxxxxxxxx)
2   xxxxxxxxxxx                     0x00000001022fe92c ev_run ev.c:833 (in xxxxxxxxxxx)
3   xxxxxxxxxxx                     0x00000001022fe5c8 easy_io_on_thread_start easy_io.c:341 (in xxxxxxxxxxx)
4   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
5   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 9:
0   libsystem_kernel.dylib          0x00000001bdaf22f8 0x00000001bdaf0000 + 8952
1   xxxxxxxxxxx                     0x00000001022ff270 kqueue_poll ev_kqueue.h:101 (in xxxxxxxxxxx)
2   xxxxxxxxxxx                     0x00000001022fe92c ev_run ev.c:833 (in xxxxxxxxxxx)
3   xxxxxxxxxxx                     0x00000001022fe5c8 easy_io_on_thread_start easy_io.c:341 (in xxxxxxxxxxx)
4   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
5   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 10:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x000000010230c0e4 instrument::TraceFile::WaitUntilBufferOverflow() trace_file.cpp:486 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x000000010230bfa0 instrument::TraceFile::AsyncLoopAndDump() trace_file.cpp:497 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x000000010230bd30 _ZNSt3__114__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEMN10instrument9TraceFileEFvvEPS8_EEEEEPvSD_ type_traits:4294 (in xxxxxxxxxxx)
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 11:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001027f4778 CXXCommonKit::LinkedBlockingQueue<instrument::LogBlockObject>::Take() __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001027f4700 instrument::LogFileWithBufferQueue::AsyncLoopAndDump() log_file_buffer_queue.cpp:96 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001022d7b50 _ZNSt3__114__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEMN10instrument7LogFileEFvvEPS8_EEEEEPvSD_ type_traits:4294 (in xxxxxxxxxxx)
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 12:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CFNetwork                       0x0000000184a15f38 0x00000001847ca000 + 2408248
6   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 13:
0   libsystem_platform.dylib        0x00000001de049820 0x00000001de048000 + 6176
1   CoreFoundation                  0x0000000184012284 0x0000000183ff4000 + 123524
2   CoreFoundation                  0x0000000184034e24 0x0000000183ff4000 + 265764
3   Foundation                      0x00000001857d15b4 0x0000000185732000 + 652724
4   CFNetwork                       0x00000001849b8128 0x00000001847ca000 + 2023720
5   CFNetwork                       0x000000018483d6bc 0x00000001847ca000 + 472764
6   CFNetwork                       0x00000001849b7e24 0x00000001847ca000 + 2022948
7   CFNetwork                       0x000000018483be60 0x00000001847ca000 + 466528
8   CFNetwork                       0x0000000184a039dc 0x00000001847ca000 + 2333148
9   CFNetwork                       0x00000001848d5e48 0x00000001847ca000 + 1097288
10  xxxxxxxxxxx                     0x0000000103d02aac -[NSURLConnection(WVWKBugFix) wvInitWithRequest:delegate:startImmediately:] WVWKCustomProtocolLoaderBugFix.m:28 (in xxxxxxxxxxx)
11  xxxxxxxxxxx                     0x0000000102369468 -[TBSDKURLConnectionOperation operationDidStart] TBSDKURLConnectionOperation.m:335 (in xxxxxxxxxxx)
12  Foundation                      0x000000018576ddd8 0x0000000185732000 + 245208
13  CoreFoundation                  0x00000001840a6210 0x0000000183ff4000 + 729616
14  CoreFoundation                  0x00000001840b6238 0x0000000183ff4000 + 795192
15  CoreFoundation                  0x0000000183ff95d8 0x0000000183ff4000 + 21976
16  CoreFoundation                  0x0000000183ffea08 0x0000000183ff4000 + 43528
17  CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
18  Foundation                      0x000000018574a00c 0x0000000185732000 + 98316
19  Foundation                      0x000000018574a780 0x0000000185732000 + 100224
20  xxxxxxxxxxx                     0x0000000102369158 +[TBSDKURLConnectionOperation networkRequestThreadEntryPoint:] TBSDKURLConnectionOperation.m:137 (in xxxxxxxxxxx)
21  Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
22  libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
23  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 14:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CFNetwork                       0x0000000184a15f38 0x00000001847ca000 + 2408248
6   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 15:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   CoreMotion                      0x00000001903eba2c 0x00000001903d9000 + 76332
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 16:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   JavaScriptCore                  0x000000018f5c6d10 0x000000018e5ae000 + 16878864
4   JavaScriptCore                  0x000000018f5cb7cc 0x000000018e5ae000 + 16897996
5   JavaScriptCore                  0x000000018f5cb180 0x000000018e5ae000 + 16896384
6   JavaScriptCore                  0x000000018f5cc820 0x000000018e5ae000 + 16902176
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 17:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc350 0x000000019b2c3000 + 37712
3   xxxxxxxxxxx                     0x00000001032a634c wait_for<long long, std::__1::ratio<1, 1000000000> > __mutex_base:471 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a6274 _do_timed_wait<std::__1::chrono::steady_clock> __mutex_base:524 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a6210 wait_until<std::__1::chrono::steady_clock, std::__1::chrono::duration<long long, std::__1::ratio<1, 1000000000> > > __mutex_base:427 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a6158 WaitFor __mutex_base:438 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a3840 Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
9   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
10  xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
11  xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
12  libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
13  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 18:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   Foundation                      0x000000018574a00c 0x0000000185732000 + 98316
6   Foundation                      0x000000018574a780 0x0000000185732000 + 100224
7   xxxxxxxxxxx                     0x0000000104bf43fc -[MPMLogControlManager runThreadForever] MPMLogControlManager.m:127 (in xxxxxxxxxxx)
8   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 19:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 20:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 21:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 22:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a84dc Run SequencedWorkerPool.cpp:430 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 23:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a84dc Run SequencedWorkerPool.cpp:430 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 24:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a84dc Run SequencedWorkerPool.cpp:430 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 25:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a760c Run SequencedWorkerPool.cpp:198 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 26:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   Foundation                      0x000000018574a00c 0x0000000185732000 + 98316
6   xxxxxxxxxxx                     0x0000000104fe88c0 -[WXBridgeManager _runLoopThread] WXBridgeManager.m:124 (in xxxxxxxxxxx)
7   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 27:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 28:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 29:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 30:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 31:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   xxxxxxxxxxx                     0x0000000103f260cc Run message_loop_darwin.mm:47 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000103f213c8 DoRun message_loop_impl.cc:84 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103f259b4 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/thread.cc:33:23)> > thread.cc:40 (in xxxxxxxxxxx)
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 32:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   xxxxxxxxxxx                     0x0000000103f260cc Run message_loop_darwin.mm:47 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000103f213c8 DoRun message_loop_impl.cc:84 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103f259b4 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/thread.cc:33:23)> > thread.cc:40 (in xxxxxxxxxxx)
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 33:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   xxxxxxxxxxx                     0x0000000103f260cc Run message_loop_darwin.mm:47 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000103f213c8 DoRun message_loop_impl.cc:84 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103f259b4 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/thread.cc:33:23)> > thread.cc:40 (in xxxxxxxxxxx)
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 34:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   xxxxxxxxxxx                     0x0000000103f260cc Run message_loop_darwin.mm:47 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000103f213c8 DoRun message_loop_impl.cc:84 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103f259b4 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/thread.cc:33:23)> > thread.cc:40 (in xxxxxxxxxxx)
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 35:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x0000000103f1d700 WorkerMain __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103f1e344 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/concurrent_message_loop.cc:31:27)> > concurrent_message_loop.cc:34 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 36:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x0000000103f1d700 WorkerMain __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103f1e344 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/concurrent_message_loop.cc:31:27)> > concurrent_message_loop.cc:34 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 37:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x0000000103f1d700 WorkerMain __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103f1e344 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/concurrent_message_loop.cc:31:27)> > concurrent_message_loop.cc:34 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 38:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc350 0x000000019b2c3000 + 37712
3   xxxxxxxxxxx                     0x00000001036916bc std::__1::cv_status std::__1::condition_variable::wait_for<long long, std::__1::ratio<1l, 1000l> >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> > const&) __mutex_base:471 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103ef040c Run dispatch_center.cc:69 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x0000000103ef0d48 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (gaea::lwp::DispatchCenter::*)(), gaea::lwp::DispatchCenter *> > type_traits:4302 (in xxxxxxxxxxx)
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 39:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc350 0x000000019b2c3000 + 37712
3   xxxxxxxxxxx                     0x00000001036916bc std::__1::cv_status std::__1::condition_variable::wait_for<long long, std::__1::ratio<1l, 1000l> >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> > const&) __mutex_base:471 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103ef040c Run dispatch_center.cc:69 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x0000000103ef0d48 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (gaea::lwp::DispatchCenter::*)(), gaea::lwp::DispatchCenter *> > type_traits:4302 (in xxxxxxxxxxx)
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 40:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc350 0x000000019b2c3000 + 37712
3   xxxxxxxxxxx                     0x00000001036916bc std::__1::cv_status std::__1::condition_variable::wait_for<long long, std::__1::ratio<1l, 1000l> >(std::__1::unique_lock<std::__1::mutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> > const&) __mutex_base:471 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103ef040c Run dispatch_center.cc:69 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x0000000103ef0d48 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (gaea::lwp::DispatchCenter::*)(), gaea::lwp::DispatchCenter *> > type_traits:4302 (in xxxxxxxxxxx)
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 41:
0   libsystem_kernel.dylib          0x00000001bdaf1088 0x00000001bdaf0000 + 4232
1   libsystem_c.dylib               0x000000018e4e48e0 0x000000018e4e0000 + 18656
2   libsystem_c.dylib               0x000000018e4e55a8 0x000000018e4e0000 + 21928
3   xxxxxxxxxxx                     0x00000001041cc0cc unixSleep sqlite3.c:35675 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001041d17d4 sqlite3OsSleep sqlite3.c:20057 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 42:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   xxxxxxxxxxx                     0x0000000103f260cc Run message_loop_darwin.mm:47 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000103f213c8 DoRun message_loop_impl.cc:84 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103f259b4 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/thread.cc:33:23)> > thread.cc:40 (in xxxxxxxxxxx)
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 43:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001032a60b4 Wait __mutex_base:409 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001032a384c Run MessagePumpDefault.cpp:65 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001032a17f8 Run MessageLoop.cpp:141 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001032a671c ThreadMain Thread.cpp:86 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x00000001032a5d10 ThreadProc PlatformThread.cpp:69 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x00000001032a5e58 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, unsigned int (*)(void *), prglite::PlatformThread *> > type_traits:3545 (in xxxxxxxxxxx)
9   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
10  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 44:
0   libsystem_kernel.dylib          0x00000001bdaf1088 0x00000001bdaf0000 + 4232
1   libsystem_c.dylib               0x000000018e4e48e0 0x000000018e4e0000 + 18656
2   libsystem_c.dylib               0x000000018e4e55a8 0x000000018e4e0000 + 21928
3   xxxxxxxxxxx                     0x00000001041cc0cc unixSleep sqlite3.c:35675 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001041d17d4 sqlite3OsSleep sqlite3.c:20057 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 45:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   xxxxxxxxxxx                     0x0000000103f260cc Run message_loop_darwin.mm:47 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000103f213c8 DoRun message_loop_impl.cc:84 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000103f259b4 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../third_party/fml/thread.cc:33:23)> > thread.cc:40 (in xxxxxxxxxxx)
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 46:
0   libsystem_kernel.dylib          0x00000001bdaf1088 0x00000001bdaf0000 + 4232
1   libsystem_c.dylib               0x000000018e4e48e0 0x000000018e4e0000 + 18656
2   libsystem_c.dylib               0x000000018e4e55a8 0x000000018e4e0000 + 21928
3   xxxxxxxxxxx                     0x00000001041cc0cc unixSleep sqlite3.c:35675 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001041d17d4 sqlite3OsSleep sqlite3.c:20057 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 47:
0   libsystem_kernel.dylib          0x00000001bdaf1088 0x00000001bdaf0000 + 4232
1   libsystem_c.dylib               0x000000018e4e48e0 0x000000018e4e0000 + 18656
2   libsystem_c.dylib               0x000000018e4e55a8 0x000000018e4e0000 + 21928
3   xxxxxxxxxxx                     0x00000001041cc0cc unixSleep sqlite3.c:35675 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001041d17d4 sqlite3OsSleep sqlite3.c:20057 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 48:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x000000010403fe18 wait<(lambda at ../../sync/sync/common/sync_queue.hpp:40:29)> __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x000000010403eae8 Take sync_queue.hpp:42 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x0000000104040370 RunInThread dispatch_queue.cpp:67 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000104040620 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (alibaba::ark::DispatchQueue::*)(), alibaba::ark::DispatchQueue *> > type_traits:4302 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 49:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x00000001040408f8 wait __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000104040f14 run sync_timer.cpp:104 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x00000001040415c8 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, (lambda at ../../sync/sync/common/sync_timer.cpp:28:22)> > sync_timer.cpp:30 (in xxxxxxxxxxx)
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 50:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x000000010403fe18 wait<(lambda at ../../sync/sync/common/sync_queue.hpp:40:29)> __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x000000010403eae8 Take sync_queue.hpp:42 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x000000010403e988 RunInThread async_job.cpp:66 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x000000010403f150 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (alibaba::ark::AsyncJob::*)(), alibaba::ark::AsyncJob *> > type_traits:4302 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 51:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   xxxxxxxxxxx                     0x000000010403fe18 wait<(lambda at ../../sync/sync/common/sync_queue.hpp:40:29)> __mutex_base:375 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x000000010403eae8 Take sync_queue.hpp:42 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x0000000104040370 RunInThread dispatch_queue.cpp:67 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x0000000104040620 _thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (alibaba::ark::DispatchQueue::*)(), alibaba::ark::DispatchQueue *> > type_traits:4302 (in xxxxxxxxxxx)
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 52:

Thread 53:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   Flutter                         0x00000001086d74d4 0x0000000108690000 + 292052
6   Flutter                         0x00000001086d2b10 0x0000000108690000 + 273168
7   Flutter                         0x00000001086d6bcc 0x0000000108690000 + 289740
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 54:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   Flutter                         0x00000001086d74d4 0x0000000108690000 + 292052
6   Flutter                         0x00000001086d2b10 0x0000000108690000 + 273168
7   Flutter                         0x00000001086d6bcc 0x0000000108690000 + 289740
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 55:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   Flutter                         0x00000001086cf5ec 0x0000000108690000 + 259564
4   Flutter                         0x00000001086cfd50 0x0000000108690000 + 261456
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 56:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc2b8 0x000000019b2c3000 + 37560
3   Flutter                         0x00000001086cf5ec 0x0000000108690000 + 259564
4   Flutter                         0x00000001086cfd50 0x0000000108690000 + 261456
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 57:
0   libsystem_kernel.dylib          0x00000001bdaf22f8 0x00000001bdaf0000 + 8952
1   Flutter                         0x0000000108aceed8 0x0000000108690000 + 4452056
2   Flutter                         0x0000000108aebbbc 0x0000000108690000 + 4570044
3   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
4   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 58:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   AudioSession                    0x000000018cb94d7c 0x000000018cb8f000 + 23932
6   AudioSession                    0x000000018cb9e0ac 0x000000018cb8f000 + 61612
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 59:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   libc++.1.dylib                  0x000000019b2cc350 0x000000019b2c3000 + 37712
3   xxxxxxxxxxx                     0x0000000103c8c110 VPM::MessageCenter::notifyListenerWithMessage() __mutex_base:419 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x0000000103c8c694 _ZNSt3__114__thread_proxyINS_5tupleIJNS_10unique_ptrINS_15__thread_structENS_14default_deleteIS3_EEEEZN3VPM13MessageCenterC1EvE3$_0EEEEEPvSB_ MessageCenter.cpp:29 (in xxxxxxxxxxx)
5   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
6   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 60:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   Foundation                      0x000000018574a00c 0x0000000185732000 + 98316
6   xxxxxxxxxxx                     0x0000000104f60734 -[WXComponentManager _runLoopThread] WXComponentManager.mm:178 (in xxxxxxxxxxx)
7   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 61:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 62:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x0000000104ff7b14 -[XSDeallocQueue threadMain] XSRunLoopQueue.mm:79 (in xxxxxxxxxxx)
7   Foundation                      0x0000000185796efc 0x0000000185732000 + 413436
8   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
9   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 63:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x000000010330dfd8 -[SDWebImageDownloaderOperation start] SDWebImageDownloaderOperation.m:156 (in xxxxxxxxxxx)
7   Foundation                      0x000000018577f714 0x0000000185732000 + 317204
8   Foundation                      0x000000018578ce4c 0x0000000185732000 + 372300
9   libdispatch.dylib               0x0000000183cfedc8 0x0000000183cee000 + 69064
10  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
11  libdispatch.dylib               0x0000000183cf4550 0x0000000183cee000 + 25936
12  libdispatch.dylib               0x0000000183cf3cf0 0x0000000183cee000 + 23792
13  libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
14  libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
15  libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
16  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 64:
0   libsystem_kernel.dylib          0x00000001bdaf13b8 0x00000001bdaf0000 + 5048
1   libsystem_pthread.dylib         0x00000001de059c2c 0x00000001de055000 + 19500
2   libdispatch.dylib               0x0000000183d064d0 0x0000000183cee000 + 99536
3   libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
4   libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
5   libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
6   libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 65:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 66:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 67:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 68:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 69:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 70:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061c28 0x00000001de055000 + 52264
2   Flutter                         0x0000000108c13078 0x0000000108690000 + 5779576
3   Flutter                         0x0000000108c53894 0x0000000108690000 + 6043796
4   Flutter                         0x0000000108c53b54 0x0000000108690000 + 6044500
5   Flutter                         0x0000000108c1276c 0x0000000108690000 + 5777260
6   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
7   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 71:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x000000010330dfd8 -[SDWebImageDownloaderOperation start] SDWebImageDownloaderOperation.m:156 (in xxxxxxxxxxx)
7   Foundation                      0x000000018577f714 0x0000000185732000 + 317204
8   Foundation                      0x000000018578ce4c 0x0000000185732000 + 372300
9   libdispatch.dylib               0x0000000183cfedc8 0x0000000183cee000 + 69064
10  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
11  libdispatch.dylib               0x0000000183cf4550 0x0000000183cee000 + 25936
12  libdispatch.dylib               0x0000000183cf3cf0 0x0000000183cee000 + 23792
13  libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
14  libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
15  libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
16  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 72:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x000000010330dfd8 -[SDWebImageDownloaderOperation start] SDWebImageDownloaderOperation.m:156 (in xxxxxxxxxxx)
7   Foundation                      0x000000018577f714 0x0000000185732000 + 317204
8   Foundation                      0x000000018578ce4c 0x0000000185732000 + 372300
9   libdispatch.dylib               0x0000000183cfedc8 0x0000000183cee000 + 69064
10  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
11  libdispatch.dylib               0x0000000183cf4550 0x0000000183cee000 + 25936
12  libdispatch.dylib               0x0000000183cf3c58 0x0000000183cee000 + 23640
13  libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
14  libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
15  libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
16  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 73:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x000000010330dfd8 -[SDWebImageDownloaderOperation start] SDWebImageDownloaderOperation.m:156 (in xxxxxxxxxxx)
7   Foundation                      0x000000018577f714 0x0000000185732000 + 317204
8   Foundation                      0x000000018578ce4c 0x0000000185732000 + 372300
9   libdispatch.dylib               0x0000000183cfedc8 0x0000000183cee000 + 69064
10  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
11  libdispatch.dylib               0x0000000183cf4550 0x0000000183cee000 + 25936
12  libdispatch.dylib               0x0000000183cf3cf0 0x0000000183cee000 + 23792
13  libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
14  libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
15  libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
16  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 74:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x000000010330dfd8 -[SDWebImageDownloaderOperation start] SDWebImageDownloaderOperation.m:156 (in xxxxxxxxxxx)
7   Foundation                      0x000000018577f714 0x0000000185732000 + 317204
8   Foundation                      0x000000018578ce4c 0x0000000185732000 + 372300
9   libdispatch.dylib               0x0000000183cfedc8 0x0000000183cee000 + 69064
10  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
11  libdispatch.dylib               0x0000000183cf4550 0x0000000183cee000 + 25936
12  libdispatch.dylib               0x0000000183cf3cf0 0x0000000183cee000 + 23792
13  libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
14  libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
15  libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
16  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 75:
0   libsystem_kernel.dylib          0x00000001bdaf0b10 0x00000001bdaf0000 + 2832
1   libsystem_kernel.dylib          0x00000001bdaf1134 0x00000001bdaf0000 + 4404
2   CoreFoundation                  0x0000000183ffaac0 0x0000000183ff4000 + 27328
3   CoreFoundation                  0x0000000183ffeba8 0x0000000183ff4000 + 43944
4   CoreFoundation                  0x0000000184011d7c 0x0000000183ff4000 + 122236
5   CoreFoundation                  0x000000018408c260 0x0000000183ff4000 + 623200
6   xxxxxxxxxxx                     0x000000010330dfd8 -[SDWebImageDownloaderOperation start] SDWebImageDownloaderOperation.m:156 (in xxxxxxxxxxx)
7   Foundation                      0x000000018577f714 0x0000000185732000 + 317204
8   Foundation                      0x000000018578ce4c 0x0000000185732000 + 372300
9   libdispatch.dylib               0x0000000183cfedc8 0x0000000183cee000 + 69064
10  libdispatch.dylib               0x0000000183d52198 0x0000000183cee000 + 410008
11  libdispatch.dylib               0x0000000183cf4550 0x0000000183cee000 + 25936
12  libdispatch.dylib               0x0000000183cf3cf0 0x0000000183cee000 + 23792
13  libdispatch.dylib               0x0000000183d0142c 0x0000000183cee000 + 78892
14  libdispatch.dylib               0x0000000183d01c28 0x0000000183cee000 + 80936
15  libsystem_pthread.dylib         0x00000001de059e48 0x00000001de055000 + 20040
16  libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 76:
0   libsystem_kernel.dylib          0x00000001bdaf10cc 0x00000001bdaf0000 + 4300
1   libsystem_pthread.dylib         0x00000001de059ed0 0x00000001de055000 + 20176
2   libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 77:
0   libsystem_kernel.dylib          0x00000001bdaf13b8 0x00000001bdaf0000 + 5048
1   libsystem_pthread.dylib         0x00000001de05a180 0x00000001de055000 + 20864
2   libdispatch.dylib               0x0000000183cf37b8 0x0000000183cee000 + 22456
3   libdispatch.dylib               0x0000000183cf3950 0x0000000183cee000 + 22864
4   libdispatch.dylib               0x0000000183cf4614 0x0000000183cee000 + 26132
5   libdispatch.dylib               0x0000000183d05fb8 0x0000000183cee000 + 98232
6   libdispatch.dylib               0x0000000183cf9d20 0x0000000183cee000 + 48416
7   libdispatch.dylib               0x0000000183d02750 0x0000000183cee000 + 83792
8   libsystem_pthread.dylib         0x00000001de059e84 0x00000001de055000 + 20100
9   libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 78:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   xxxxxxxxxxx                     0x0000000105175acc qking::ThreadCondition::timedWait(qking::Mutex&, qking::WallTime) :144 (in xxxxxxxxxxx)
3   xxxxxxxxxxx                     0x0000000105140b80 qking::ParkingLot::parkConditionallyImpl(void const*, qking::ScopedLambda<bool ()()> const&, qking::ScopedLambda<void ()()> const&, qking::TimeWithClockType const&) :1712 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001051447b0 _ZN5qking10ParkingLot17parkConditionallyIZNS_9Condition9waitUntilINS_4LockEEEbRT_RKNS_17TimeWithClockTypeEEUlvE_ZNS3_IS4_EEbS6_S9_EUlvE0_EENS0_10ParkResultEPKvRKS5_RKT0_S9_ :64 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x000000010514474c bool qking::Condition::waitUntil<qking::Lock>(qking::Lock&, qking::TimeWithClockType const&) :96 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001051446d8 bool qking::Condition::waitFor<qking::Lock>(qking::Lock&, qking::Seconds) :68 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000105175010 _ZN5qking6detail15CallableWrapperIZNS_15AutomaticThread5startERKNS_14AbstractLockerEE3$_0vJEE4callEv :160 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x0000000105189108 qking::Thread::entryPoint(qking::Thread::NewThreadContext*) :100 (in xxxxxxxxxxx)
9   xxxxxxxxxxx                     0x0000000105175678 qking::qkingThreadEntryPoint(void*) :12 (in xxxxxxxxxxx)
10  libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
11  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 79:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   xxxxxxxxxxx                     0x0000000105175acc qking::ThreadCondition::timedWait(qking::Mutex&, qking::WallTime) :144 (in xxxxxxxxxxx)
3   xxxxxxxxxxx                     0x0000000105140b80 qking::ParkingLot::parkConditionallyImpl(void const*, qking::ScopedLambda<bool ()()> const&, qking::ScopedLambda<void ()()> const&, qking::TimeWithClockType const&) :1712 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001051447b0 _ZN5qking10ParkingLot17parkConditionallyIZNS_9Condition9waitUntilINS_4LockEEEbRT_RKNS_17TimeWithClockTypeEEUlvE_ZNS3_IS4_EEbS6_S9_EUlvE0_EENS0_10ParkResultEPKvRKS5_RKT0_S9_ :64 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x000000010514474c bool qking::Condition::waitUntil<qking::Lock>(qking::Lock&, qking::TimeWithClockType const&) :96 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001051446d8 bool qking::Condition::waitFor<qking::Lock>(qking::Lock&, qking::Seconds) :68 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000105175010 _ZN5qking6detail15CallableWrapperIZNS_15AutomaticThread5startERKNS_14AbstractLockerEE3$_0vJEE4callEv :160 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x0000000105189108 qking::Thread::entryPoint(qking::Thread::NewThreadContext*) :100 (in xxxxxxxxxxx)
9   xxxxxxxxxxx                     0x0000000105175678 qking::qkingThreadEntryPoint(void*) :12 (in xxxxxxxxxxx)
10  libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
11  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 80:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   JavaScriptCore                  0x000000018f54f47c 0x000000018e5ae000 + 16389244
3   JavaScriptCore                  0x000000018ed84450 0x000000018e5ae000 + 8217680
4   JavaScriptCore                  0x000000018f51bcd4 0x000000018e5ae000 + 16178388
5   JavaScriptCore                  0x000000018f573d94 0x000000018e5ae000 + 16539028
6   JavaScriptCore                  0x000000018f5766e0 0x000000018e5ae000 + 16549600
7   libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
8   libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 81:
0   libsystem_pthread.dylib         0x00000001de0599e8 0x00000001de055000 + 18920

Thread 82:
0   libsystem_kernel.dylib          0x00000001bdaf10cc 0x00000001bdaf0000 + 4300
1   libsystem_pthread.dylib         0x00000001de059ed0 0x00000001de055000 + 20176
2   libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread 83:
0   libsystem_kernel.dylib          0x00000001bdaf14f0 0x00000001bdaf0000 + 5360
1   libsystem_pthread.dylib         0x00000001de061bfc 0x00000001de055000 + 52220
2   xxxxxxxxxxx                     0x0000000105175acc qking::ThreadCondition::timedWait(qking::Mutex&, qking::WallTime) :144 (in xxxxxxxxxxx)
3   xxxxxxxxxxx                     0x0000000105140b80 qking::ParkingLot::parkConditionallyImpl(void const*, qking::ScopedLambda<bool ()()> const&, qking::ScopedLambda<void ()()> const&, qking::TimeWithClockType const&) :1712 (in xxxxxxxxxxx)
4   xxxxxxxxxxx                     0x00000001051447b0 _ZN5qking10ParkingLot17parkConditionallyIZNS_9Condition9waitUntilINS_4LockEEEbRT_RKNS_17TimeWithClockTypeEEUlvE_ZNS3_IS4_EEbS6_S9_EUlvE0_EENS0_10ParkResultEPKvRKS5_RKT0_S9_ :64 (in xxxxxxxxxxx)
5   xxxxxxxxxxx                     0x000000010514474c bool qking::Condition::waitUntil<qking::Lock>(qking::Lock&, qking::TimeWithClockType const&) :96 (in xxxxxxxxxxx)
6   xxxxxxxxxxx                     0x00000001051446d8 bool qking::Condition::waitFor<qking::Lock>(qking::Lock&, qking::Seconds) :68 (in xxxxxxxxxxx)
7   xxxxxxxxxxx                     0x0000000105175010 _ZN5qking6detail15CallableWrapperIZNS_15AutomaticThread5startERKNS_14AbstractLockerEE3$_0vJEE4callEv :160 (in xxxxxxxxxxx)
8   xxxxxxxxxxx                     0x0000000105189108 qking::Thread::entryPoint(qking::Thread::NewThreadContext*) :100 (in xxxxxxxxxxx)
9   xxxxxxxxxxx                     0x0000000105175678 qking::qkingThreadEntryPoint(void*) :12 (in xxxxxxxxxxx)
10  libsystem_pthread.dylib         0x00000001de05b3a4 0x00000001de055000 + 25508
11  libsystem_pthread.dylib         0x00000001de0599fc 0x00000001de055000 + 18940

Thread 84:
0   libsystem_kernel.dylib          0x00000001bdaf10cc 0x00000001bdaf0000 + 4300
1   libsystem_pthread.dylib         0x00000001de059ed0 0x00000001de055000 + 20176
2   libsystem_pthread.dylib         0x00000001de0599f0 0x00000001de055000 + 18928

Thread State:
     x8:0x000000000     x9:0x000000000     lr:0x000000000     fp:0x000000000
    x10:0x000000000    x12:0x000000000    x11:0x000000000    x14:0x000000000
    x13:0x000000000    x16:0x000000000     sp:0x000000000    x15:0x000000000
    x18:0x000000000    x17:0x000000000    x19:0x000000000   cpsr:0x000000000
     pc:0x000000000    x21:0x000000000    x20:0x000000000     x0:0x000000000
    x23:0x000000000     x1:0x000000000    x22:0x000000c00     x2:0x000000000
    x25:0x000000000     x3:0x000000c00    x24:0x000000000     x4:0x000000000
    x27:0x010004004     x5:0x000000000    x26:0x000000000     x6:0x000000000
     x7:0x000000001    x28:0x000000001

Binary Images:
0x0000000102224000 - 0x00000001052f3fff xxxxxxxxxxx arm64  <6286c16d4c1434af9b1dbb073d6b33d7> /private/var/containers/Bundle/Application/831A0198-A379-4A3B-BCC0-535C17389B2E/xxxxxxxxxxx.app/xxxxxxxxxxx
0x00000001dcf76000 - 0x00000001dd03ffff libcompression.dylib arm64  <728f5e8f15083fc9ba9b9fbf9b6e84e8> /usr/lib/libcompression.dylib
0x000000019b2c3000 - 0x000000019b31bfff libc++.1.dylib arm64  <0b3e0b571a513ec98680bd398555aeeb> /usr/lib/libc++.1.dylib
0x000000019b31c000 - 0x000000019b334fff libc++abi.dylib arm64  <a69670f6fe393e03a3f051781fbe97b5> /usr/lib/libc++abi.dylib
0x0000000183d7c000 - 0x0000000183ff3fff libicucore.A.dylib arm64  <c023e8102e263fbebd40e16c2c54914e> /usr/lib/libicucore.A.dylib
0x00000001dda72000 - 0x00000001dda89fff libresolv.9.dylib arm64  <7ab7bcd64b3d300a83f9efa1a0073c53> /usr/lib/libresolv.9.dylib
0x00000001a6bd5000 - 0x00000001a6d60fff libsqlite3.dylib arm64  <1fae582a692f3ee2b5ec36c198e4c4e4> /usr/lib/libsqlite3.dylib
0x00000001ddad9000 - 0x00000001ddbbffff libxml2.2.dylib arm64  <be63471339d3312aa681da49c1a992cd> /usr/lib/libxml2.2.dylib
0x00000001ddbec000 - 0x00000001ddbfdfff libz.1.dylib arm64  <b0a9c2b6fb703501b91b1cb31fb6fbf9> /usr/lib/libz.1.dylib
0x00000001c1bd8000 - 0x00000001c1bd8fff AVFoundation arm64  <281c093b9fa43d63aac0dbc7d3eb0cdd> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x000000019c9eb000 - 0x000000019cb29fff AVKit arm64  <b58f298e991b39a6aad859671662a292> /System/Library/Frameworks/AVKit.framework/AVKit
0x00000001c1bd9000 - 0x00000001c1bd9fff Accelerate arm64  <828c853799a53abbb96825210e906e17> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x00000001c208f000 - 0x00000001c2090fff AdSupport arm64  <62640675f9f8330b9a2492e3ac8de4b4> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x00000001c2091000 - 0x00000001c20bafff AddressBook arm64  <0a0591e944f8372581a861c67348c3a4> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x00000001c20bb000 - 0x00000001c20c3fff AddressBookUI arm64  <55f18f0360a6319f82f8fc5f21867b44> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x0000000107344000 - 0x000000010734bfff App arm64  <03970952ee4d32daacede1242a14c3cf> /private/var/containers/Bundle/Application/831A0198-A379-4A3B-BCC0-535C17389B2E/xxxxxxxxxxx.app/Frameworks/App.framework/App
0x00000001c20ca000 - 0x00000001c20dafff AssetsLibrary arm64  <7320e4fdcb213133a514a2ff744f88ac> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x000000018e05c000 - 0x000000018e2d7fff AudioToolbox arm64  <4cd2cb684c2e3004a94a985fa9264bc8> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x00000001847ca000 - 0x0000000184c5ffff CFNetwork arm64  <d47c42c4e8f531babf5e074a91376b00> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x00000001b0cf8000 - 0x00000001b1340fff CoreAudio arm64  <a97100aff3063573a321eae4dcbac741> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x000000018b0a4000 - 0x000000018b419fff CoreData arm64  <da492e462aa6361b88f88f850755b4a0> /System/Library/Frameworks/CoreData.framework/CoreData
0x0000000183ff4000 - 0x000000018442efff CoreFoundation arm64  <ea9c1df294c7379bbf8d970335b1552f> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x0000000185dab000 - 0x0000000186357fff CoreGraphics arm64  <1bfb476ba98235e7a1b12e969664dbf8> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x000000018ae1b000 - 0x000000018aed3fff CoreLocation arm64  <f115c86463fe3d9c96f68e3eaee142d2> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x000000018df53000 - 0x000000018e05bfff CoreMedia arm64  <78b1b609495335ac8eb02d6bdd487283> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x00000001903d9000 - 0x00000001906c2fff CoreMotion arm64  <dc86c14d59d231b99421110b1cad7b9c> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x00000001846b9000 - 0x00000001847c9fff CoreTelephony arm64  <55df7e6de9b43e9a97acd58e893fecb0> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x0000000188e97000 - 0x0000000189049fff CoreText arm64  <75f1cdcd204e35cbbdf4dd1018f637ea> /System/Library/Frameworks/CoreText.framework/CoreText
0x00000001906c3000 - 0x000000019083dfff EventKit arm64  <dcbdc48025893463b53638a0836375ef> /System/Library/Frameworks/EventKit.framework/EventKit
0x0000000185732000 - 0x0000000185a12fff Foundation arm64  <86d8a58db71f34c683e0014b2b835f1d> /System/Library/Frameworks/Foundation.framework/Foundation
0x00000001c2917000 - 0x00000001c2944fff GLKit arm64  <6924a45c7312306b942c40a20b9f20bf> /System/Library/Frameworks/GLKit.framework/GLKit
0x0000000185a13000 - 0x0000000185d92fff ImageIO arm64  <a9c4e97681b430e99d38eb2a18e7dee0> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x000000018e5ae000 - 0x000000018f6d5fff JavaScriptCore arm64  <c9068a147fe935909fd2c07e82a16a8e> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x0000000194ba5000 - 0x0000000194efafff MapKit arm64  <4a39e36a7e213323ac9a6290fbdd1139> /System/Library/Frameworks/MapKit.framework/MapKit
0x000000018c770000 - 0x000000018cb8efff MediaPlayer arm64  <9431480fe1633236a8c73e0814879278> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x000000019db62000 - 0x000000019dcd0fff MessageUI arm64  <fcacbbbc19c635438b0925aae68fc645> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x00000001c365d000 - 0x00000001c365dfff MobileCoreServices arm64  <4f938883ebf5340fba8eac3e10beaa68> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x00000001c4288000 - 0x00000001c4291fff OpenGLES arm64  <b4a553c1e08235dabc3fddd7fa4ced0c> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x0000000196517000 - 0x00000001967b8fff Photos arm64  <6181e6b709e53ba1bfe3883315966073> /System/Library/Frameworks/Photos.framework/Photos
0x00000001989ee000 - 0x0000000199021fff PhotosUI arm64  <c5e5ebcb4eaa3a10b63cfe8419af7ee0> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
0x0000000187b05000 - 0x0000000187dc1fff QuartzCore arm64  <e31fb9090fd03f0991a559b91bad2c7f> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x000000018c611000 - 0x000000018c76ffff Security arm64  <369fe1567df637398391af88a6e56e1c> /System/Library/Frameworks/Security.framework/Security
0x00000001bf1de000 - 0x00000001bf249fff Social arm64  <c3b58f0ad47a3c498066536625f2528f> /System/Library/Frameworks/Social.framework/Social
0x00000001abd95000 - 0x00000001abe41fff StoreKit arm64  <15650bdadae2383f958dc229db589a5a> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x0000000184642000 - 0x00000001846b8fff SystemConfiguration arm64  <9043bb0d86b43a55b89c5e41494a766f> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x00000001c4cf5000 - 0x00000001c4cf5fff UIKit arm64  <ec1ea20b3cf93b3284e7d086e4b4bf08> /System/Library/Frameworks/UIKit.framework/UIKit
0x0000000194aa2000 - 0x0000000194ae5fff UserNotifications arm64  <e76e35275e9337bba91222b7aa5f2145> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x0000000198556000 - 0x0000000198863fff VideoToolbox arm64  <394b03e0cedd35368655622170b42c59> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x0000000191a81000 - 0x0000000192338fff WebKit arm64  <983c21c1b55337dbbf390679176056e8> /System/Library/Frameworks/WebKit.framework/WebKit
0x000000018937a000 - 0x00000001894f3fff Contacts arm64  <e888fa6e7cfe36598b39af6649f48f84> /System/Library/Frameworks/Contacts.framework/Contacts
0x0000000188c2f000 - 0x0000000188e96fff ContactsUI arm64  <68eaad8b2bf439aa862266a5682b9606> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x00000001bd04f000 - 0x00000001bd067fff LocalAuthentication arm64  <d1b62d02674f37089ac0e0042a964bb1> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x00000001c20c6000 - 0x00000001c20c9fff AppTrackingTransparency arm64  <207edce32b453a69b3ab318dc76dd566> /System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency
0x000000019b225000 - 0x000000019b25afff libobjc.A.dylib arm64  <78e77e2874d0371aa2466d41374ba19a> /usr/lib/libobjc.A.dylib
0x00000001c0cab000 - 0x00000001c0cacfff libSystem.B.dylib arm64  <372a6fcb01253e4a8f83ac6ac066ef05> /usr/lib/libSystem.B.dylib
0x000000018d41e000 - 0x000000018d73afff CoreImage arm64  <462025c465e53555b188b72cc31a1e88> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x000000018d7fa000 - 0x000000018d835fff CoreVideo arm64  <f72061b9ac973fa49c66419707c35e52> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x0000000108690000 - 0x0000000108ce3fff Flutter arm64  <22b5fb634d80310aaeaa32c47a89b1dd> /private/var/containers/Bundle/Application/831A0198-A379-4A3B-BCC0-535C17389B2E/xxxxxxxxxxx.app/Frameworks/Flutter.framework/Flutter
0x00000001dd23c000 - 0x00000001dd254fff liblzma.5.dylib arm64  <b73809087b933776bb3164c4cea9fe56> /usr/lib/liblzma.5.dylib
0x00000001ddeb8000 - 0x00000001ddebdfff libcache.dylib arm64  <480804e128013a209a4806c05be83c70> /usr/lib/system/libcache.dylib
0x00000001ddebe000 - 0x00000001ddecafff libcommonCrypto.dylib arm64  <5ecbbb213360304180ca8b5e1e469522> /usr/lib/system/libcommonCrypto.dylib
0x00000001ddecb000 - 0x00000001ddecffff libcompiler_rt.dylib arm64  <e71d76b7de4433f698a8447ae0c470e1> /usr/lib/system/libcompiler_rt.dylib
0x00000001dded0000 - 0x00000001dded8fff libcopyfile.dylib arm64  <0a0b3778901e3a34ab2268fc8f0dbb54> /usr/lib/system/libcopyfile.dylib
0x00000001a7e60000 - 0x00000001a7ed7fff libcorecrypto.dylib arm64  <65b92d9ec544314b85f9d2b8ab1b149b> /usr/lib/system/libcorecrypto.dylib
0x0000000183cee000 - 0x0000000183d70fff libdispatch.dylib arm64  <56aa6e938d8e32feac73d3e79b1ba2f5> /usr/lib/system/libdispatch.dylib
0x0000000183d71000 - 0x0000000183d7bfff libdyld.dylib arm64  <e687890b2d2b3d28aebcc949c70b5622> /usr/lib/system/libdyld.dylib
0x00000001ddfc7000 - 0x00000001ddfcbfff libmacho.dylib arm64  <fe3b0203f3423942b044d6737bf05572> /usr/lib/system/libmacho.dylib
0x00000001ddfcc000 - 0x00000001ddfcdfff libremovefile.dylib arm64  <abe83c89bd083bd6a563ebd650460f28> /usr/lib/system/libremovefile.dylib
0x00000001a7fe3000 - 0x00000001a7ff9fff libsystem_asl.dylib arm64  <8902379b6cc636899c2283fe1e0797e8> /usr/lib/system/libsystem_asl.dylib
0x00000001ddfce000 - 0x00000001ddfcffff libsystem_blocks.dylib arm64  <56ddac7a396339f9aaad944023ad9d61> /usr/lib/system/libsystem_blocks.dylib
0x000000018e4e0000 - 0x000000018e55afff libsystem_c.dylib arm64  <5700e26c19b735c9b739e62c325f4fcc> /usr/lib/system/libsystem_c.dylib
0x00000001ddfd0000 - 0x00000001ddfd4fff libsystem_collections.dylib arm64  <d53bdf2cd78e3d1797f6fc279956349d> /usr/lib/system/libsystem_collections.dylib
0x00000001ddfd5000 - 0x00000001ddfd9fff libsystem_configuration.dylib arm64  <b4408ee410cd3cdd8c45882c523644ea> /usr/lib/system/libsystem_configuration.dylib
0x00000001ddfda000 - 0x00000001ddff8fff libsystem_containermanager.dylib arm64  <335cc90dc2fa3d98b6f024b2d9bb3e2e> /usr/lib/system/libsystem_containermanager.dylib
0x00000001ddff9000 - 0x00000001ddffafff libsystem_coreservices.dylib arm64  <c311492bbdaf353b83f11ca9adc5ebd3> /usr/lib/system/libsystem_coreservices.dylib
0x00000001ddffb000 - 0x00000001de004fff libsystem_darwin.dylib arm64  <2ca883748458364c842504e23eec7732> /usr/lib/system/libsystem_darwin.dylib
0x00000001de005000 - 0x00000001de00dfff libsystem_dnssd.dylib arm64  <829786c16e9239178b58aa73e7387d88> /usr/lib/system/libsystem_dnssd.dylib
0x00000001de00e000 - 0x00000001de010fff libsystem_featureflags.dylib arm64  <01727c9397a636e1b44ba35eb3609709> /usr/lib/system/libsystem_featureflags.dylib
0x000000018e4bb000 - 0x000000018e4dffff libsystem_info.dylib arm64  <f0e7d6d4c3d831eebdcbe98699b6b31b> /usr/lib/system/libsystem_info.dylib
0x00000001de011000 - 0x00000001de047fff libsystem_m.dylib arm64  <c9ab00d09160354f8ed2b895b94f3b56> /usr/lib/system/libsystem_m.dylib
0x0000000194b85000 - 0x0000000194ba4fff libsystem_malloc.dylib arm64  <70f94bb0e4a13c59a6fa059417a205bb> /usr/lib/system/libsystem_malloc.dylib
0x0000000196f91000 - 0x0000000196fa7fff libsystem_networkextension.dylib arm64  <2eb94230e6af37bf8b2d4fa531d1bc50> /usr/lib/system/libsystem_networkextension.dylib
0x00000001a7d68000 - 0x00000001a7d71fff libsystem_notify.dylib arm64  <635605231aef370bbed39532e25cf988> /usr/lib/system/libsystem_notify.dylib
0x00000001de054000 - 0x00000001de054fff libsystem_product_info_filter.dylib arm64  <3cb4c2a18dbb33aaa4e54c25434920b2> /usr/lib/system/libsystem_product_info_filter.dylib
0x00000001de069000 - 0x00000001de06cfff libsystem_sandbox.dylib arm64  <e958200f5a9c3715ae8841d71797b113> /usr/lib/system/libsystem_sandbox.dylib
0x00000001bdaf0000 - 0x00000001bdb21fff libsystem_kernel.dylib arm64  <28a82cbdb2103662af9e636819d8909a> /usr/lib/system/libsystem_kernel.dylib
0x00000001de048000 - 0x00000001de053fff libsystem_platform.dylib arm64  <8778c2d0938935f3874b31a260760922> /usr/lib/system/libsystem_platform.dylib
0x00000001de055000 - 0x00000001de068fff libsystem_pthread.dylib arm64  <ce7eb78851553c3888d812f1419fa5fa> /usr/lib/system/libsystem_pthread.dylib
0x00000001b0ca1000 - 0x00000001b0ca8fff libsystem_symptoms.dylib arm64  <3c7da847b0b236bfbcfaf67076dee276> /usr/lib/system/libsystem_symptoms.dylib
0x000000019d1c2000 - 0x000000019d1d9fff libsystem_trace.dylib arm64  <0deca3b544073f5198320e32c083c811> /usr/lib/system/libsystem_trace.dylib
0x00000001de06d000 - 0x00000001de076fff libunwind.dylib arm64  <6bc741ff3b21324e822e2108ab53203a> /usr/lib/system/libunwind.dylib
0x00000001de077000 - 0x00000001de0a9fff libxpc.dylib arm64  <0d9c930f4a4b352c988d4b52a1636fb2> /usr/lib/system/libxpc.dylib
0x00000001df47f000 - 0x00000001df5a7fff AVFAudio arm64  <996e48675c5b379caa9fe4fef5d92d02> /System/Library/Frameworks/AVFAudio.framework/AVFAudio
0x000000018cbb7000 - 0x000000018cd99fff AVFCore arm64  <f7135c944d3138abb0522efd25d15cee> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x00000001a6d61000 - 0x00000001a6e52fff AVFCapture arm64  <e00e28c17e6e33c6905506860cbd2b5b> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x00000001d9029000 - 0x00000001d904ffff caulk arm64  <51f44307fac63db1893864a1bdc4f907> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x0000000195bf6000 - 0x0000000195e71fff AudioToolboxCore arm64  <48a61648c73d3ac8ab574f7db86cb8ba> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x00000001d525a000 - 0x00000001d525afff SoftLinking arm64  <c35f20d31dd230a6afdc0d2a846ebb87> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x000000018cb8f000 - 0x000000018cbb6fff AudioSession arm64  <12427ae9e9e23966989f711c820e7125> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x00000001dc5df000 - 0x00000001dc5effff libAudioStatistics.dylib arm64  <65de7c751e6d3e8790b6ed91a6e9b6c9> /usr/lib/libAudioStatistics.dylib
0x00000001ab95d000 - 0x00000001ab967fff Celestial arm64  <216fb83e29ca33369738ed57a32bd258> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x0000000194611000 - 0x000000019466ffff libMobileGestalt.dylib arm64  <92b3a258d7ae3c75befc7006c17b5e68> /usr/lib/libMobileGestalt.dylib
0x000000019b4ed000 - 0x000000019b532fff CoreAutoLayout arm64  <6d0f42d07f1f303b92f34138e534c49d> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x00000001c1186000 - 0x00000001c1207fff libarchive.2.dylib arm64  <447d7061ae4c3956b559fc31f4acfadf> /usr/lib/libarchive.2.dylib
0x00000001dd231000 - 0x00000001dd232fff liblangid.dylib arm64  <073f17eb7ef931d796f66da9df0a9264> /usr/lib/liblangid.dylib
0x0000000190296000 - 0x0000000190343fff IOKit arm64  <1b9d1df41b9f37a49461f12a87f3e0f5> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x00000001dce14000 - 0x00000001dce2bfff libapple_nghttp2.dylib arm64  <d382c0b7ce1b30d6b9d98b02f5661407> /usr/lib/libapple_nghttp2.dylib
0x0000000184c60000 - 0x00000001856bafff libnetwork.dylib arm64  <aa1480930109348f91f7a7e4bc96833d> /usr/lib/libnetwork.dylib
0x00000001dd0c4000 - 0x00000001dd0c4fff libenergytrace.dylib arm64  <2fd0bf0dfcb93820b243d9126cf0b63b> /usr/lib/libenergytrace.dylib
0x00000001dcf46000 - 0x00000001dcf56fff libbsm.0.dylib arm64  <723ec7800d4c34e9b431b97ef72956c8> /usr/lib/libbsm.0.dylib
0x00000001e966b000 - 0x00000001e9674fff libCoreEntitlements.dylib arm64  <dd815e3fbb2e33598df041e3d4851d43> /usr/lib/libCoreEntitlements.dylib
0x00000001dd040000 - 0x00000001dd055fff libcoretls.dylib arm64  <7e64908336ab3377bd0b0c9680e94b5d> /usr/lib/libcoretls.dylib
0x00000001dd056000 - 0x00000001dd057fff libcoretls_cfhelpers.dylib arm64  <4608d7396ed83dfd9b16f20d74fc6097> /usr/lib/libcoretls_cfhelpers.dylib
0x00000001acde0000 - 0x00000001acdeafff IOMobileFramebuffer arm64  <e39a717d2c5331cbba025545d495ccf8> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x00000001dd8ef000 - 0x00000001dd924fff libpcap.A.dylib arm64  <5cc5d48d8134394d88ec2bd646aa8b81> /usr/lib/libpcap.A.dylib
0x00000001dd09e000 - 0x00000001dd0a6fff libdns_services.dylib arm64  <8c787094a9c3352083404c1a3158c110> /usr/lib/libdns_services.dylib
0x00000001b064a000 - 0x00000001b065cfff IOSurface arm64  <291cdb938eb4319b825e01927e3feeae> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x00000001dcf57000 - 0x00000001dcf63fff libbz2.1.0.dylib arm64  <c4c96f9ffbae31f2bf43aada978349dc> /usr/lib/libbz2.1.0.dylib
0x00000001dd10f000 - 0x00000001dd200fff libiconv.2.dylib arm64  <63ef91315004394384ee9f059865de5e> /usr/lib/libiconv.2.dylib
0x00000001dcf64000 - 0x00000001dcf64fff libcharset.1.dylib arm64  <4a394bdf91d937e598e448d60d8e559f> /usr/lib/libcharset.1.dylib
0x0000000190351000 - 0x00000001903c2fff SpringBoardServices arm64  <cb4675f42eb536819398f168fe6cc440> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x000000019c0ad000 - 0x000000019c0bafff CrashReporterSupport arm64  <8421ca0ec03a36b8921d9a44bad09d18> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x000000019ccc3000 - 0x000000019ccd3fff AssertionServices arm64  <080839c403f83bd4a892296c4bbd74a5> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x00000001cc850000 - 0x00000001cc897fff ExtensionFoundation arm64  <4bb730e7845f3f13b539665f82a0fb64> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x00000001c237d000 - 0x00000001c23e8fff CoreMIDI arm64  <3e878745125b3942955ea985982920a4> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x000000018442f000 - 0x00000001845f9fff CoreServices arm64  <7b5a3c3215a6306a8c3fe3f33a5b1239> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x000000019bb35000 - 0x000000019bb65fff libAudioToolboxUtility.dylib arm64  <89cd225d909e3c008dec5c773c7d2b6f> /usr/lib/libAudioToolboxUtility.dylib
0x00000001aed75000 - 0x00000001aed78fff OSAServicesClient arm64  <0070d13da1de3e6e94f973537578af30> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x00000001cec4a000 - 0x00000001cec51fff IdleTimerServices arm64  <547106c25513318daf291e7168ab9a59> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x00000001a632f000 - 0x00000001a637ffff BoardServices arm64  <e4977c7b30453077832d1b4ee4984d1c> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x0000000194ae6000 - 0x0000000194b84fff FrontBoardServices arm64  <833f5b02d9623b8aa5d2335e0f7d25a1> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x0000000189082000 - 0x0000000189135fff BaseBoard arm64  <7bc4f9ef2dc9386ca2d527abbccb0169> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x0000000187dc2000 - 0x0000000187e3bfff BackBoardServices arm64  <5edc0d88d5e93be19597752003c5ef1d> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x000000019e285000 - 0x000000019e28dfff GraphicsServices arm64  <af306dd576573f63912fabc225106419> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x000000018e55b000 - 0x000000018e5adfff RunningBoardServices arm64  <d352dbd5ed2f399ab3053cd19bd9a7cd> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x000000019c9d1000 - 0x000000019c9eafff ProtocolBuffer arm64  <b37fcdb435e03c6494e6c47506f871af> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x00000001cd0ae000 - 0x00000001cd1c7fff libFontParser.dylib arm64  <10ccdd88040c393c972bdce50c1532a2> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x00000001cd270000 - 0x00000001cd277fff libhvf.dylib arm64  <28199bede5593ab591ecef45ebdbade7> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x00000001a9ffc000 - 0x00000001aa2bbfff vImage arm64  <dd573cd653b43b2c9b2f1d9810c33c14> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x00000001c207a000 - 0x00000001c207afff vecLib arm64  <fde048c92d573cb48655a280c60f1bcc> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x00000001c2025000 - 0x00000001c2079fff libvMisc.dylib arm64  <95a461c22f5b3c3ca95946883f455b1d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x000000019ba67000 - 0x000000019bb34fff libvDSP.dylib arm64  <b90ffcbeaf9439a399d8eabf10c6ee3b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x00000001c1bda000 - 0x00000001c1c86fff libBLAS.dylib arm64  <aa36283da7dc368681da3cbd33d5a58b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x00000001c1c87000 - 0x00000001c1f97fff libLAPACK.dylib arm64  <96c1c2f1a9333473a896f97013a29545> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x00000001c1f98000 - 0x00000001c1facfff libLinearAlgebra.dylib arm64  <a8cd187be0443522bcf2ef1fbf61e8e5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x00000001c2013000 - 0x00000001c2024fff libSparseBLAS.dylib arm64  <306b3df3e8c030208e8718cee914a06e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x00000001c1fad000 - 0x00000001c1fb1fff libQuadrature.dylib arm64  <85ddb9f3fa8d37eab6004f9485496ce5> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x00000001c122d000 - 0x00000001c1732fff libBNNS.dylib arm64  <1f3ce7db9c9534f38d30536b30caadb3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x00000001c1fb2000 - 0x00000001c2012fff libSparse.dylib arm64  <b7d911e352b13251a5a1685e2e30665b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x000000018d73b000 - 0x000000018d7f9fff ColorSync arm64  <16095b1233d63d279f676888c5a636dc> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x00000001cec1d000 - 0x00000001cec1ffff IOSurfaceAccelerator arm64  <4b852486b54f32e7ab5838b48188583c> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x000000019cd69000 - 0x000000019ce89fff Metal arm64  <ad2fd832183434b38e28912d84090856> /System/Library/Frameworks/Metal.framework/Metal
0x00000001dce2c000 - 0x00000001dcebcfff libate.dylib arm64  <ce1f36d441a136a3bf42e59860fbb931> /usr/lib/libate.dylib
0x00000001dd0c5000 - 0x00000001dd0ddfff libexpat.1.dylib arm64  <7f617b855d4b3d9292fea54723351312> /usr/lib/libexpat.1.dylib
0x00000001c8c63000 - 0x00000001c8ca7fff AppleJPEG arm64  <23fbcd24b957326e8704abdb4ee4f0a8> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x00000001bd0f0000 - 0x00000001bd0f5fff IOAccelerator arm64  <f7c8295d4936386685ba9ef4c8717a7c> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x00000001c4294000 - 0x00000001c429afff libCoreFSCache.dylib arm64  <b152f425a7b93051a2fac32c81f327c8> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x00000001e36e0000 - 0x00000001e36e4fff libGPUCompilerUtils.dylib arm64  <1b1a122602dd336c993c4d63f17e93ac> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib
0x00000001a834a000 - 0x00000001a8377fff CoreAnalytics arm64  <4a4ea9b594633e96be954354a7956933> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x00000001c8d80000 - 0x00000001c8da2fff AppleSauce arm64  <e06c9b1af51d31309027bf1bc5135a1e> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x00000001a68df000 - 0x00000001a6923fff MobileInstallation arm64  <75fc35ae5da0322e98f8f0ad5d2ad121> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x00000001cff71000 - 0x00000001cff77fff MobileSystemServices arm64  <a7156c82a9dc3575bcc16575d3fc0f46> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x00000001a8312000 - 0x00000001a8349fff CoreServicesStore arm64  <1d447d7aece736979022773205834449> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x00000001cd1c8000 - 0x00000001cd1d0fff libGSFont.dylib arm64  <40fbc1eb0dc03b39a6c4bf37d270d51c> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x00000001be772000 - 0x00000001be77ffff FontServices arm64  <65f5b489d63e39108b60a1a2253f5b7c> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x00000001cd1d1000 - 0x00000001cd20dfff libGSFontCache.dylib arm64  <2d9112f61f7738b9b2c89c4d11a68eea> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x0000000187ae2000 - 0x0000000187b04fff libAccessibility.dylib arm64  <c06832316c1438858c6dba583b53eae7> /usr/lib/libAccessibility.dylib
0x00000001d061b000 - 0x00000001d065bfff OTSVG arm64  <dfc4e6e235853db78cae668da09411b0> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x000000019a89c000 - 0x000000019a8aefff UniformTypeIdentifiers arm64  <e8325db8abd234e2bccf395ed279f93c> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x00000001989d8000 - 0x00000001989edfff AXCoreUtilities arm64  <31b82feacc0a3e70ab2238ec628b5da1> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x00000001beaf6000 - 0x00000001beb01fff MediaAccessibility arm64  <2d5e1de1d0db39e8bb4cefff61a301da> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x00000001dd925000 - 0x00000001dd932fff libperfcheck.dylib arm64  <f9b9368f623c330cbc6abf9b203311f1> /usr/lib/libperfcheck.dylib
0x00000001db848000 - 0x00000001db859fff perfdata arm64  <4090e62147203c80af99d19a071366d2> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x00000001dca45000 - 0x00000001dca4cfff libIOReport.dylib arm64  <1b2d9ed659fe3fcaa8fde0ab6c02c616> /usr/lib/libIOReport.dylib
0x00000001a65af000 - 0x00000001a65fafff OSAnalytics arm64  <9e536969906132b0b38ad4c6313d1928> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x000000019bffc000 - 0x000000019c0acfff Symbolication arm64  <5814aa65c5a33abcbfc6a00ae333358b> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x00000001afd4e000 - 0x00000001afdfafff CoreSymbolication arm64  <5b9fceabf596318a901c325a9955fb34> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x00000001b88e6000 - 0x00000001b88f0fff MallocStackLogging arm64  <9be3808718fe35c4a8ec82eaec37f821> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x00000001c0b91000 - 0x00000001c0bc3fff PlugInKit arm64  <ecff44cde8353299b46d4ccb14702d0d> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x000000019ce8a000 - 0x000000019d00bfff MediaExperience arm64  <69f4ceab85d53a3dabb5921af79def78> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x00000001d5792000 - 0x00000001d57a3fff TCC arm64  <deb4481f770c38889793f24be0447843> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x00000001c9877000 - 0x00000001c9887fff CPMS arm64  <8d58ff3ee8633302aa2497cf6cc83d17> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x000000018c2bf000 - 0x000000018c2fffff AppSupport arm64  <db941aef81e430158dd6e5ff51af3297> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x00000001a4349000 - 0x00000001a436ffff PowerLog arm64  <b7268426135430ee98f3d0eaa01999ae> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x00000001dc7eb000 - 0x00000001dc7ecfff libCTGreenTeaLogger.dylib arm64  <b0524a3050a13a8fab9b13eceb0fb928> /usr/lib/libCTGreenTeaLogger.dylib
0x00000001caf7d000 - 0x00000001caf85fff CorePhoneNumbers arm64  <9345858950803de7bad8fa64bb54112e> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x00000001c68c3000 - 0x00000001c68c8fff AggregateDictionary arm64  <755ab2da343c3f198a8fd3445d34bc41> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x00000001c08d4000 - 0x00000001c08e6fff HangTracer arm64  <5c467e5fe3013dda8cbe68411a9bcc34> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x00000001c5ffe000 - 0x00000001c6009fff ASEProcessing arm64  <04a406e495ac39bda0bbae3e0c34f773> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x00000001c1208000 - 0x00000001c122cfff libtailspin.dylib arm64  <cbe4c3fa13db3ee3a5ff62901dd6df5e> /usr/lib/libtailspin.dylib
0x00000001db81a000 - 0x00000001db830fff libEDR arm64  <6bd4cef689e33e66b10acac4547d8fef> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x00000001c2ec8000 - 0x00000001c2ec8fff MetalPerformanceShaders arm64  <c31f342e997d3f9bb08b4d376429fd4f> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x00000001dce11000 - 0x00000001dce13fff libapp_launch_measurement.dylib arm64  <915c714e54183c518519a08048d7a940> /usr/lib/libapp_launch_measurement.dylib
0x00000001cceb0000 - 0x00000001cceb8fff FeatureFlagsSupport arm64  <22b3724badb93e63b302024ffca9495c> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x00000001d4573000 - 0x00000001d457dfff SignpostCollection arm64  <08982dda276d3fa98687144232bdc787> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x00000001ab514000 - 0x00000001ab56afff ktrace arm64  <27809b04a6f83b3199c497178b4bd995> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x00000001c0ac6000 - 0x00000001c0b90fff SampleAnalysis arm64  <c5b845219b393b41b2335f165e05307b> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x00000001db811000 - 0x00000001db819fff kperfdata arm64  <9d8f692a36bf3d5cb3340e919f0fa583> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x00000001c08ce000 - 0x00000001c08d3fff libdscsym.dylib arm64  <a1c9b175c6683659ab73f1d240de3db3> /usr/lib/libdscsym.dylib
0x00000001d4580000 - 0x00000001d45c4fff SignpostSupport arm64  <109c39ccbc8a31929e3f7645a5d14a6d> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x000000019b25b000 - 0x000000019b2c2fff LoggingSupport arm64  <93c0c79226023a7ab12428bb43f0c1f6> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x000000019b6c8000 - 0x000000019b702fff MobileKeyBag arm64  <3c639eeb00f733308e4915765f554910> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x00000001c5fa4000 - 0x00000001c5ffdfff APFS arm64  <6433d011899e31a88dcc64c4d79f0fb6> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x00000001ddad5000 - 0x00000001ddad8fff libutil.dylib arm64  <66355e19a68b3e7da60d0cb915c4db0f> /usr/lib/libutil.dylib
0x00000001db80b000 - 0x00000001db810fff kperf arm64  <29d538d93d833970943376312077e5be> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x00000001ca6d4000 - 0x00000001ca7e7fff CoreBrightness arm64  <15a382ab8db33ff8a923b75883bebbc1> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x00000001c5978000 - 0x00000001c597bfff AFKUser arm64  <e5c959b8c57b3496a0230598cd80ce55> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x00000001ae9ac000 - 0x00000001ae9e4fff CoreAccessories arm64  <f1d4c75d314d3abf8ca76120f0c536e8> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
0x00000001cdf4d000 - 0x00000001cdf5bfff HID arm64  <23493e33491235549f672f6b1a09db61> /System/Library/PrivateFrameworks/HID.framework/HID
0x00000001e1f60000 - 0x00000001e1f97fff CARPFoundation arm64  <fa6be238c43237458c865d8afb1fb5c9> /System/Library/PrivateFrameworks/CARPFoundation.framework/CARPFoundation
0x00000001c42a0000 - 0x00000001c42a8fff libGFXShared.dylib arm64  <f04ba887bed837c2b2cd880bf2b7a640> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x00000001b0c68000 - 0x00000001b0ca0fff libGLImage.dylib arm64  <c560a577b09d37608d313e716393209b> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x00000001c4292000 - 0x00000001c4293fff libCVMSPluginSupport.dylib arm64  <63aab7ed7b6b3a8ca432cb655b25e28a> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x00000001c429b000 - 0x00000001c429ffff libCoreVMClient.dylib arm64  <166a08d88225397b93ba382d7fb02651> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x000000019c4b4000 - 0x000000019c51ffff MPSCore arm64  <ac6d361b47d43abe889154cd33c43823> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x00000001c2d32000 - 0x00000001c2dbcfff MPSImage arm64  <806d65f4eece32a1bf80e2b75c539f61> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x000000019c2bb000 - 0x000000019c4b3fff MPSNeuralNetwork arm64  <c63b086771c33565afd3556ea4b4cddc> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x00000001c2dbd000 - 0x00000001c2de5fff MPSMatrix arm64  <a82fd11249db321f883ceb38da7df687> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x00000001c2e77000 - 0x00000001c2ec7fff MPSRayIntersector arm64  <03ca34d20f783fcba2d86fb2306c00e4> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x00000001c2de6000 - 0x00000001c2e76fff MPSNDArray arm64  <d2f480f6326739fc838332f3897389fc> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x00000001e0618000 - 0x00000001e062afff MPSFunctions arm64  <1a02ceeb22ae3159a98e5aaeb05ea0d0> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions
0x00000001c984f000 - 0x00000001c9859fff CMCaptureCore arm64  <d5db3887c1d6390bbaf2933d56b7e204> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x00000001d79ff000 - 0x00000001d7a00fff WatchdogClient arm64  <0f18a5fbaf053aad87a7eb8af8a7fb2b> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x00000001e2110000 - 0x00000001e21b7fff CMPhoto arm64  <f93895c13d803889a5e40d636b0048cd> /System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto
0x000000018d836000 - 0x000000018df52fff MediaToolbox arm64  <c27c31322a2d301b8c5f4e89e90b0c48> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x00000001b1c5a000 - 0x00000001b1c69fff CoreAUC arm64  <a0e618bff0d032e4929f65b6d13addf2> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x000000018e2d8000 - 0x000000018e329fff CoreHaptics arm64  <03d9c482229e3faeb20eff2e6c68bffb> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x00000001c6c45000 - 0x00000001c6c62fff AlgosScoreFramework arm64  <2517f02c52d13b9a87fa19b04dfaa5e3> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x00000001c6a5a000 - 0x00000001c6b31fff AirPlaySync arm64  <00845aed1d86300d90a6fc800f57b69d> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x00000001cca96000 - 0x00000001ccea8fff FaceCore arm64  <209ac98b475e3287882ca0c820cb5df2> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x00000001cdf13000 - 0x00000001cdf1ffff GraphVisualizer arm64  <b8f29ba4164f3dc5aeacb6c795d3a837> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x000000019117b000 - 0x0000000191300fff CoreUtils arm64  <ea3f290cf6e63cea9f20fddc46990925> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x00000001e3106000 - 0x00000001e3122fff CoreUtilsExtras arm64  <72cb338e5bd130b88ef1e5fb7aa4c486> /System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras
0x00000001b065d000 - 0x00000001b06c5fff MobileWiFi arm64  <ee0e912ab19e305399861b5bbf3aec20> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x00000001c9be7000 - 0x00000001c9bf2fff CaptiveNetwork arm64  <495b7b2193a73399b09d477e68c12b0f> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x00000001cc690000 - 0x00000001cc6c0fff EAP8021X arm64  <796585a1571b3964a5f39720067ea718> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x00000001dd097000 - 0x00000001dd09dfff libcupolicy.dylib arm64  <74c49bcdc11c39d68168f717f3314075> /usr/lib/libcupolicy.dylib
0x00000001a6924000 - 0x00000001a69a9fff libTelephonyUtilDynamic.dylib arm64  <6087706bea463020bcea5bf134ccf871> /usr/lib/libTelephonyUtilDynamic.dylib
0x0000000194670000 - 0x000000019468cfff CommonUtilities arm64  <39af68959f8a312492232b1a25ef8e65> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x0000000196f63000 - 0x0000000196f68fff MSUDataAccessor arm64  <bb0af6035cd23613b7f541b399467f4b> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x00000001dd8df000 - 0x00000001dd8eefff libpartition2_dynamic.dylib arm64  <c441f5688cd93ead99a76ecac7346e8c> /usr/lib/libpartition2_dynamic.dylib
0x00000001b962c000 - 0x00000001b9665fff Bom arm64  <27ca2d5545fd34c1b0f62c448ad07593> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x00000001c8c34000 - 0x00000001c8c43fff AppleFSCompression arm64  <085358ffd7d03126b65bb203707c21b2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x00000001a6e53000 - 0x00000001a7398fff CMCapture arm64  <99579e9195c53dcba17ac238d143ae1a> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x00000001b9a90000 - 0x00000001b9b55fff Quagga arm64  <399660d479bc3dda8384b4fab80fc1c4> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x000000018c300000 - 0x000000018c42efff ManagedConfiguration arm64  <87f8b87602f13ccb95cd2f09111e9024> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x00000001e20e3000 - 0x00000001e210ffff CMImaging arm64  <506fdd068c9c39118254d5f286dfb818> /System/Library/PrivateFrameworks/CMImaging.framework/CMImaging
0x0000000190344000 - 0x0000000190350fff DataMigration arm64  <e5fe5d40a59c3fbf95e153144d86268d> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x00000001e21d8000 - 0x00000001e21f3fff CinematicFraming arm64  <3267bdd409313565ad6e37b5012ee387> /System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming
0x00000001c6db0000 - 0x00000001c6f79fff AppC3D arm64  <6519af75ee8f350d8cba54f55035b54f> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
0x0000000197a38000 - 0x0000000198555fff Espresso arm64  <0e679ab462b13c1690119c23c513113a> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x00000001bc941000 - 0x00000001bc9b3fff AppleCVAPhoto arm64  <895be3aa7d843385a545be1b00fe68ac> /System/Library/PrivateFrameworks/AppleCVAPhoto.framework/AppleCVAPhoto
0x00000001b398f000 - 0x00000001b399cfff MediaSafetyNet arm64  <3aadc691dc9030b9a16d38ebc9adc8a9> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x00000001c8d5b000 - 0x00000001c8d76fff AppleNeuralEngine arm64  <3ab4d9f03bbf3a099090f7fc4fa2b171> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x00000001c5f84000 - 0x00000001c5f9ffff ANEServices arm64  <f5dc6d48cdfd3939bfc7f43fbbdf89c4> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x00000001dda8a000 - 0x00000001dda8bfff libsandbox.1.dylib arm64  <49188060c9ba37099c86d304f5c3351e> /usr/lib/libsandbox.1.dylib
0x00000001dcac8000 - 0x00000001dcacefff libMatch.1.dylib arm64  <9e794ea10429326b97f7f52386c7bc23> /usr/lib/libMatch.1.dylib
0x00000001c5a41000 - 0x00000001c5f83fff ANECompiler arm64  <728167d449da3b0ab79d3fc94fdc1eb9> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x00000001e4c42000 - 0x00000001e4dcffff MIL arm64  <73a3a48c14ca31e5afadd7a4966dcdbd> /System/Library/PrivateFrameworks/MIL.framework/MIL
0x00000001c2ec9000 - 0x00000001c3646fff MetalPerformanceShadersGraph arm64  <6a958af62d7c30dba59a67d438083d4e> /System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph
0x00000001a657f000 - 0x00000001a65aefff libncurses.5.4.dylib arm64  <b9eb258d3d1a3d9ba4150de43204eb06> /usr/lib/libncurses.5.4.dylib
0x00000001b399d000 - 0x00000001b39e4fff TimeSync arm64  <640c2c62901032a08d6f6df95cf80bd1> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x00000001cfebe000 - 0x00000001cfef7fff MobileBluetooth arm64  <2c3e4d0c843b3479a1b787b222114ab7> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x00000001ae940000 - 0x00000001ae968fff LocationSupport arm64  <a5bed68e6e14379598cd3805e199d8ec> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x00000001cec12000 - 0x00000001cec1cfff IOKitten arm64  <966650f021723313b812575a2fe53fca> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x00000001e3173000 - 0x00000001e31a6fff DMCUtilities arm64  <0941f38a76593980b2c23aa5d7a6d9ab> /System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities
0x00000001856bb000 - 0x0000000185731fff Accounts arm64  <66be918e9f0e343cb4a4b9d1908e7767> /System/Library/Frameworks/Accounts.framework/Accounts
0x00000001e4c28000 - 0x00000001e4c41fff MDMClientLibrary arm64  <3030e553ecce348abdfbfa41381fee34> /System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary
0x00000001dd233000 - 0x00000001dd23bfff liblockdown.dylib arm64  <febcaa5be29e3fef9406f31a5d6bc4d9> /usr/lib/liblockdown.dylib
0x00000001dd50b000 - 0x00000001dd528fff libmis.dylib arm64  <5fe7f50381f13a9f8613ec7a488d67e0> /usr/lib/libmis.dylib
0x00000001a7ed8000 - 0x00000001a7f02fff UserManagement arm64  <ee410ab227ff34ce8f2b8ba1ab94a8f7> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x00000001c9d44000 - 0x00000001c9da9fff Catalyst arm64  <eb9e87b449cf34acb63d0d25b1c08f94> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x00000001aba2c000 - 0x00000001aba93fff Pegasus arm64  <f10be32b614c3e58b9acf50d8dbbf339> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x0000000190e5e000 - 0x000000019117afff MediaRemote arm64  <4b173ad1f3bb381f8ed729ecb26052c9> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x00000001ad4b7000 - 0x00000001ad4dafff PrototypeTools arm64  <9165391c8e673544a5b26d95c35e5a03> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x0000000188abc000 - 0x0000000188ae0fff UIKitServices arm64  <bd881886eaef33cf915d4bfc04faecd1> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x00000001cc54c000 - 0x00000001cc58ffff DocumentManager arm64  <2c991d45c90c3dbe9df0a3cd5e0e19ea> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x000000019be1a000 - 0x000000019bf88fff FileProvider arm64  <f4ad2e8730213e6890b358b2323af62b> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x0000000186358000 - 0x0000000187ae1fff UIKitCore arm64  <fb5c2d366a053355b898d8d3c163d02e> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x0000000196335000 - 0x000000019640bfff ShareSheet arm64  <bd9d2774d9c63ecabe899fd380250ff0> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x00000001a929a000 - 0x00000001a92e8fff IconServices arm64  <d6f327fc8a5b3f5db8ad5580f6da58b8> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x000000019b533000 - 0x000000019b6c7fff Network arm64  <fd690671c6a0335691fd88ac6f3f1b63> /System/Library/Frameworks/Network.framework/Network
0x00000001dd939000 - 0x00000001dd94cfff libprequelite.dylib arm64  <5220b935292f3106adaf86a18c2422ff> /usr/lib/libprequelite.dylib
0x00000001cc590000 - 0x00000001cc5b6fff DocumentManagerCore arm64  <6c2d3100d28b328bab756383c812c232> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x000000018e393000 - 0x000000018e4bafff UIFoundation arm64  <e5f1c79ed694397c8450b5da629d0973> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x00000001b96a0000 - 0x00000001b96a8fff PushKit arm64  <d59ccc21cd2d3312ba96dfc18193a7b0> /System/Library/Frameworks/PushKit.framework/PushKit
0x00000001d8f7e000 - 0x00000001d8f81fff XCTTargetBootstrap arm64  <41526c59c7993e2ab36ecf6680232bed> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x00000001aba94000 - 0x00000001abc1efff WebKitLegacy arm64  <3fa0a3c9176236fd905842b18103e561> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x00000001d457e000 - 0x00000001d457efff SignpostMetrics arm64  <c53da5ccc06e34539f4a62ecd4f1fed9> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x00000001d10a5000 - 0x00000001d10b2fff PointerUIServices arm64  <85893c9bf7793e25b1e11d672f8637be> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x00000001b9b56000 - 0x00000001b9b5efff StudyLog arm64  <cf6faf6b1dfa3eab9f31f602bc0b84c6> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x00000001b4ec6000 - 0x00000001b4ed6fff ContextKitExtraction arm64  <2b473be31a5a3c73829a9de28034436a> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x00000001a6b1f000 - 0x00000001a6b3efff CoreMaterial arm64  <d0d7427683da3bc9a519a6087201f4b3> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x00000001d0ccd000 - 0x00000001d0cfdfff Pasteboard arm64  <e90f6d3c870f36e289dc5ea302ef5ee4> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x00000001e04ec000 - 0x00000001e04eefff DataDetection arm64  <5b4ae2bfdc4d31b884086cff3dac924f> /System/Library/Frameworks/DataDetection.framework/DataDetection
0x000000019bfc2000 - 0x000000019bffbfff DataDetectorsCore arm64  <82844c2346e23182b5cfb222b5e70a5d> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x00000001cbda7000 - 0x00000001cbdd3fff CoreSVG arm64  <f4c0b0ed8d533a70a3f66c982b5bf44f> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x0000000191954000 - 0x0000000191a2efff CoreUI arm64  <d497ddee88913987a5830944dcc5cacd> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x0000000196f69000 - 0x0000000196f90fff MobileAsset arm64  <aa7f4649ed6034a097dcc88da52a20ec> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x00000001d0f99000 - 0x00000001d0fe5fff PhysicsKit arm64  <73ab17abd5053e50ad7a051cc7f62bf9> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x0000000187e3c000 - 0x0000000187ee6fff TextInput arm64  <bd49b29e81063bdc8061854faebd79c5> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x00000001d6157000 - 0x00000001d61fafff TextureIO arm64  <9a7c81e2c679316c81f0b8c8645edc15> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x000000019a065000 - 0x000000019a070fff InternationalSupport arm64  <5bbaadba4af033b997205429780b490f> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x0000000192339000 - 0x0000000194610fff WebCore arm64  <0f2cae24f25236578178975ae44b5585> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x00000001d7a85000 - 0x00000001d7e8efff libANGLE-shared.dylib arm64  <534a3cbb413f3580a2df76d62290baac> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib
0x00000001d7e8f000 - 0x00000001d85d3fff libwebrtc.dylib arm64  <488434e791de3195acf250d858927377> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x0000000196fa8000 - 0x0000000197208fff NetworkExtension arm64  <f676b80584fa3e79bf70be6fca369a41> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x00000001d6488000 - 0x00000001d6490fff URLFormatting arm64  <018efcac38ca3efa81e4c2e9402c4e05> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x00000001ad4db000 - 0x00000001ad509fff PersistentConnection arm64  <b87ef446e2693c5d89a967398fd478bf> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x00000001dd529000 - 0x00000001dd54dfff libnetworkextension.dylib arm64  <c5d56c3ce63730c8967cc9eadde7bbea> /usr/lib/libnetworkextension.dylib
0x00000001e2364000 - 0x00000001e2367fff ContextKitCore arm64  <99238da6318b3492b0513b8df4061ecb> /System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore
0x00000001cc659000 - 0x00000001cc65bfff DragUI arm64  <f5a63475333839ff90efade71ab0dfcf> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x00000001cdef2000 - 0x00000001cdf12fff GenerationalStorage arm64  <e6623c6ce5433dec8cd20bac489ae8b8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x00000001d56d7000 - 0x00000001d56e1fff SymptomDiagnosticReporter arm64  <64377262f90f3b3984d28f5335abaf2f> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x00000001cc0f6000 - 0x00000001cc153fff DesktopServicesPriv arm64  <46154ce2dce736129d339ebb43ff6bae> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/DesktopServicesPriv
0x000000019bd3e000 - 0x000000019be19fff CoreNLP arm64  <9527d35ea0f73904ac47895da1383646> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x00000001dd281000 - 0x00000001dd2d7fff libmecab.dylib arm64  <dee29bf3047b34408351655bf1dbdb25> /usr/lib/libmecab.dylib
0x00000001dc7b9000 - 0x00000001dc7eafff libCRFSuite.dylib arm64  <294ce14d6390394591e6a2ec2daa75f0> /usr/lib/libCRFSuite.dylib
0x00000001dd107000 - 0x00000001dd109fff libgermantok.dylib arm64  <a0c35eaeeffa32df8a6aa9f2295a75a9> /usr/lib/libgermantok.dylib
0x00000001dcbbf000 - 0x00000001dcbc0fff libThaiTokenizer.dylib arm64  <f8ac119b1d2d3cbaab7e487dfc61be7f> /usr/lib/libThaiTokenizer.dylib
0x00000001d5690000 - 0x00000001d56cefff StreamingZip arm64  <6da0eb3766de3c9aa0cca16398ce6985> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x00000001e4a2e000 - 0x00000001e4a42fff IconFoundation arm64  <7e33759adc093154b0eefc7c03821d7b> /System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation
0x00000001b6bef000 - 0x00000001b6bfdfff MobileIcons arm64  <7881ade90c9235f4a34d7afdd859b246> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x00000001d2942000 - 0x00000001d2955fff RemoteTextInput arm64  <012228b794303c39b0caabe9faa7d860> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x00000001ae46b000 - 0x00000001ae4edfff Rapport arm64  <2d998c1a62bf3925981ea43b5cf22305> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x000000019aef4000 - 0x000000019af4dfff MediaServices arm64  <f4b7ac236e4731178eeb0eb2aeb0253a> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x000000018c4a5000 - 0x000000018c610fff IDS arm64  <ce6327e6f7983fabaaa0d25e0cd6ddb2> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x000000018c42f000 - 0x000000018c4a4fff IMFoundation arm64  <fabb3f7ae2393771a8d72b4bed3a194b> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x000000019468d000 - 0x0000000194847fff IDSFoundation arm64  <14e1d03637123723b6a50ddf325ab262> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x000000019c8be000 - 0x000000019c918fff FTServices arm64  <ec47355b5f8d330a8a9c06681d6445aa> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x00000001cc6ed000 - 0x00000001cc703fff Engram arm64  <fe49e68fe0083f54a9d3b91399b9cb63> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x00000001cf287000 - 0x00000001cf287fff Marco arm64  <543f15b0206f323ab13a37597a1d6f00> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x00000001cca71000 - 0x00000001cca91fff FTAWD arm64  <7edd8e2912ca37e2bffe9040907675e8> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x000000018fdcf000 - 0x000000018fe71fff ContactsFoundation arm64  <d1a591f2d0ad364faa5f3e779ef2e5cd> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x00000001949ff000 - 0x0000000194aa1fff AddressBookLegacy arm64  <c8b9f1dfa7a6392a819c32c41e98ccd4> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x00000001c9dd3000 - 0x00000001c9df9fff CellularPlanManager arm64  <db3ea749f382320e93c0c075bef4bf35> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x00000001abcf1000 - 0x00000001abd94fff ClassKit arm64  <be4aaae7b2db3d1a80e45229a4de945a> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x000000019494d000 - 0x00000001949fefff CoreSuggestions arm64  <a47308e2a926359db9aacc2a10bc9164> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x00000001d0d88000 - 0x00000001d0d88fff PhoneNumbers arm64  <d14d5c2ece4237d89c1d69036af6380f> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x00000001db85a000 - 0x00000001db88ffff vCard arm64  <e456178d9cfd31a6b0037355d4d98089> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x00000001a82d7000 - 0x00000001a8311fff DataAccessExpress arm64  <c9a82fd4f93035378924d5eabb3766b3> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x00000001e2361000 - 0x00000001e2363fff ContactsMetrics arm64  <4efd32cada4f37a6a9cba7b83054316c> /System/Library/PrivateFrameworks/ContactsMetrics.framework/ContactsMetrics
0x000000018aed4000 - 0x000000018b0a3fff CloudKit arm64  <1ace2ceaf9a93275bc3ed032b5b95a15> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x000000019a8af000 - 0x000000019a949fff CloudDocs arm64  <de6093f209c03927aa0cec9f1c84dafd> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x00000001c4542000 - 0x00000001c4584fff QuickLookThumbnailing arm64  <bdad6b8d5128317691c40a18586d6c9e> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x0000000195b1c000 - 0x0000000195bf5fff AppleAccount arm64  <ed32a8d13d053a4a920b84ca0b5b90fa> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x00000001a630d000 - 0x00000001a632efff ApplePushService arm64  <d6829596a0ed38a2a156726f46be534c> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x00000001aedde000 - 0x00000001aee1ffff C2 arm64  <fa460df501073241aba65482e17bfb5b> /System/Library/PrivateFrameworks/C2.framework/C2
0x00000001aed7f000 - 0x00000001aedddfff ProtectedCloudStorage arm64  <31295272d6503a8c9202c321aa49cd3c> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x00000001b4148000 - 0x00000001b4151fff CoreTime arm64  <b89a591f85f431459e5a5518512cb8ec> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x0000000195a69000 - 0x0000000195b1bfff AuthKit arm64  <cd1d05eed8613c21859bdf312da324a4> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x00000001d25f2000 - 0x00000001d25fdfff RTCReporting arm64  <f90bf03b0e863de7b3600420a5e418e2> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x00000001cc15c000 - 0x00000001cc171fff DeviceIdentity arm64  <697a6f28ff133b88b94fd1709ee97ac3> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x00000001a69aa000 - 0x00000001a6a18fff NanoRegistry arm64  <f2e811063c003e6b9ca0992bea93032a> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x00000001bd01a000 - 0x00000001bd025fff AppleIDAuthSupport arm64  <5e2f90d07ad33c5c987e6ca045858739> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x00000001e12de000 - 0x00000001e12e6fff AAAFoundation arm64  <c0aa0570d3a3369ca99d21401bd188ad> /System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation
0x00000001c1733000 - 0x00000001c1763fff SharedUtils arm64  <35303c96b32d352eb4d9bd72fe16f02e> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x00000001a7d72000 - 0x00000001a7dc9fff CryptoTokenKit arm64  <8dd369174e7a352e9cf6d76368c2796b> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x00000001894f4000 - 0x000000018ae1afff GeoServices arm64  <48fa8bb13f353fddb93896e7eda821b0> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x00000001a65fb000 - 0x00000001a667ffff CoreBluetooth arm64  <cf188fc837083ceb844b8638d4af8ac3> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x00000001e36e5000 - 0x00000001e36e8fff GeoServicesCore arm64  <52993a5f32af327eb7ab6835f70b74ce> /System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore
0x00000001b93c7000 - 0x00000001b942cfff CoreLocationProtobuf arm64  <0e2fd00fab7b3d7cb850e951ff0c42c9> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x00000001a85ea000 - 0x00000001a85fafff NanoPreferencesSync arm64  <f28745ec7a9d33c0b3e712f6b0bc23e6> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x00000001dd10a000 - 0x00000001dd10efff libheimdal-asn1.dylib arm64  <e0d3d6af3dec301282b5d3904f4e99ae> /usr/lib/libheimdal-asn1.dylib
0x000000019b380000 - 0x000000019b3a2fff OctagonTrust arm64  <1e5667b96d7235e08527dba42f66d5fc> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x00000001ad7a0000 - 0x00000001ad7bffff SecurityFoundation arm64  <3e9fb593c2f23bdf9133f41227af4b61> /System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation
0x000000019b335000 - 0x000000019b37ffff SetupAssistant arm64  <280d0aa9aaa9396daab5077069eb8c9b> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x00000001c8c54000 - 0x00000001c8c62fff AppleIDSSOAuthentication arm64  <19a8f5dd4e8433dcbd3f282202237522> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x00000001ae450000 - 0x00000001ae46afff CoreFollowUp arm64  <0f669b6dbd923439972436ea0b204926> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x00000001bf1bb000 - 0x00000001bf1d5fff SetupAssistantSupport arm64  <8ba183a347e53c87898815501bd6da22> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x0000000196efc000 - 0x0000000196f62fff MobileBackup arm64  <a24e46ea263e3440a2643a98b8ffec9a> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x00000001e693a000 - 0x00000001e6942fff Seeding arm64  <e5c9ce9c87253158804851413a641af1> /System/Library/PrivateFrameworks/Seeding.framework/Seeding
0x00000001ced46000 - 0x00000001ced66fff IntlPreferences arm64  <5e995d4adb20305db8fb851416287de7> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x00000001c6f7a000 - 0x00000001c6fa5fff AppConduit arm64  <632895445b6c32be9364807c287e48c5> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x00000001aeb02000 - 0x00000001aeb39fff CacheDelete arm64  <05f764e2a846366186e8fae7f6760ce0> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x00000001cca65000 - 0x00000001cca70fff FSEvents arm64  <f17a042f6f133ce9b16e73f6ee16b5e4> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x000000018cd9a000 - 0x000000018d3b1fff Intents arm64  <3106021ee95038ca92c6671e59b5a4a0> /System/Library/Frameworks/Intents.framework/Intents
0x00000001a6265000 - 0x00000001a62e1fff ProactiveSupport arm64  <1d6b0e58cc5838968557b82551b23261> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x000000019131f000 - 0x00000001913a1fff CoreSpotlight arm64  <904ddd0417e53d0185aa3ed9e4f8845b> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x0000000190150000 - 0x0000000190174fff ProactiveEventTracker arm64  <05256792620d33dda09de289682fd2d1> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x00000001ced19000 - 0x00000001ced27fff IntentsFoundation arm64  <6d30913ba9e036be8f7fc16730aa265f> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x00000001ced43000 - 0x00000001ced45fff InternationalTextSearch arm64  <be6aa282b0793042aacba8967359239e> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x00000001b8b7e000 - 0x00000001b8bcafff MetadataUtilities arm64  <a467e6cd66533c02bc3739d4ebc85802> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x000000019c88d000 - 0x000000019c8b4fff AppSupportUI arm64  <9c20e93218933768b7d38968177c99e3> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x00000001d0d3f000 - 0x00000001d0d4cfff PersonaUI arm64  <30ba9a5fe2003be3a2a23e9ac0abec9b> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x00000001ca467000 - 0x00000001ca46bfff CommunicationsFilter arm64  <e464d1ea57413caa891fa18fda836242> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x00000001b1341000 - 0x00000001b1359fff ContactsDonation arm64  <ac827390a628380c9e6f8776934b51d4> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x00000001be04c000 - 0x00000001be088fff EmojiFoundation arm64  <298f0487219531149f56ac081d27d75a> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x00000001ca5ab000 - 0x00000001ca633fff ContactsUICore arm64  <74197e369138308585d4c2902a500ed6> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x0000000191301000 - 0x000000019131efff FamilyCircle arm64  <afc47d2803d13286920d7e2fb3d205fa> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x0000000198864000 - 0x00000001988bdfff OnBoardingKit arm64  <ffc75c0d47b738389d3a56cc2f29f1ef> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x00000001ca891000 - 0x00000001ca8a2fff CoreEmoji arm64  <1099bd716fa9349eb6e3ec950a929c44> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x00000001a6892000 - 0x00000001a68defff TemplateKit arm64  <3b04b4a764d8354c89bf1c38b955df08> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x00000001d0d32000 - 0x00000001d0d3efff PersonaKit arm64  <1f57a033ee7039af8b2be06262fb1f23> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x0000000189136000 - 0x0000000189379fff CoreDuet arm64  <75c1dd3d9e4d37009e396c7b7c942f46> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x00000001cbd18000 - 0x00000001cbd24fff CoreRecents arm64  <e60d750dd9f43cd984f393d6c427edd5> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x00000001ca880000 - 0x00000001ca882fff CoreDuetDebugLogging arm64  <dc0ae2803a703588b438b8d560565c3c> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x00000001ca86d000 - 0x00000001ca87dfff CoreDuetDaemonProtocol arm64  <54637291cf0939d28526a23fca804aac> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x0000000187f4f000 - 0x0000000188412fff AppleMediaServices arm64  <ee1ac3ea6ff33374836b64b2e35d79ec> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x00000001d571c000 - 0x00000001d573cfff SymptomPresentationFeed arm64  <6add2b5199e439d49a0b0a3f7b428872> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x00000001a8378000 - 0x00000001a8385fff SymptomAnalytics arm64  <db43cc0572bf3ddfaa69e0ba7316bf88> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x00000001967b9000 - 0x0000000196efbfff PhotoLibraryServices arm64  <d05594d047e531f99a7bd5ce5b492d06> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x00000001e61bc000 - 0x00000001e629cfff PhotoLibraryServicesCore arm64  <1d9b1fcfd4173669a55288d86d7e4108> /System/Library/PrivateFrameworks/PhotoLibraryServicesCore.framework/PhotoLibraryServicesCore
0x000000019bf89000 - 0x000000019bfabfff BiomeStorage arm64  <9a81448e24ea3d57a6824471c30dcab2> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x00000001ad692000 - 0x00000001ad79ffff BiomeStreams arm64  <31355ddfc26b32739b3d5258c4c9d7e9> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x00000001bd528000 - 0x00000001bd533fff CloudPhotoServices arm64  <c73e8db0ebba3c80b3600a5947b11973> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x0000000197209000 - 0x000000019726dfff Trial arm64  <7b9fce8abd1e3d4dae9bc2a7b3dfc55d> /System/Library/PrivateFrameworks/Trial.framework/Trial
0x00000001bc90d000 - 0x00000001bc93afff MediaConversionService arm64  <3291a142841f3137bc39126f46f86dd8> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x00000001b3013000 - 0x00000001b307bfff ToneLibrary arm64  <f737467c68af338aa40ba0c6e2abc78a> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x00000001bb890000 - 0x00000001bb8b0fff MediaStream arm64  <3ee836cbb3713077a2f40834155c95f2> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x0000000199f50000 - 0x000000019a064fff LanguageModeling arm64  <d2e41deeed6c3671835f7836c8a049bd> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x000000019c7a3000 - 0x000000019c88cfff NLP arm64  <cc21b90729593d4981725f38b2fe0fa9> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x00000001964ce000 - 0x0000000196516fff PhotoFoundation arm64  <64e1ebb434203bcbb9903e65e62ae4d7> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x00000001b96a9000 - 0x00000001b9765fff PhotosFormats arm64  <a986999d625330e388ba00c8c167adf6> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x00000001c18e3000 - 0x00000001c19f6fff CoreMediaStream arm64  <6e654339054636068274e204a9d7de63> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x00000001d0f67000 - 0x00000001d0f98fff PhotosImagingFoundation arm64  <e16331411e66398e8902f4e29a93e841> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x00000001acf2e000 - 0x00000001ad0cafff CloudPhotoLibrary arm64  <94fdce62a33d3f7692261ac954d4a8e9> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x00000001aed79000 - 0x00000001aed7efff BiomeFoundation arm64  <972dfc6aef403371976a55420634eca9> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x00000001e1eaf000 - 0x00000001e1ec8fff BiomeFlexibleStorage arm64  <675c0a2c61b73049b6ad72faa6046b21> /System/Library/PrivateFrameworks/BiomeFlexibleStorage.framework/BiomeFlexibleStorage
0x00000001e1e9b000 - 0x00000001e1eaefff BiomeDSL arm64  <89830f78c90d3ac0bf3ebb13612bd7f6> /System/Library/PrivateFrameworks/BiomeDSL.framework/BiomeDSL
0x00000001c9180000 - 0x00000001c91bffff BiomePubSub arm64  <6a5a1efdc74833b8bd3ea9b79ad774ff> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x00000001b0b4e000 - 0x00000001b0bf0fff MMCS arm64  <761aa578e5a13e07be9b6e598dcf6a4f> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x00000001c9e2a000 - 0x00000001c9e78fff ChunkingLibrary arm64  <03f903d078833f4ea44f14fa56b695ad> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x00000001c8dde000 - 0x00000001c8dfbfff AssetCacheServices arm64  <cc9c5d72e31532d8bc79b64f89b72fdd> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x00000001e6561000 - 0x00000001e657bfff PrivacyAccounting arm64  <f656fb889f3833e6bc4cd34d6876ef16> /System/Library/PrivateFrameworks/PrivacyAccounting.framework/PrivacyAccounting
0x00000001b307c000 - 0x00000001b30f1fff TrialProto arm64  <bbd06b87760630619b58d73d90388eeb> /System/Library/PrivateFrameworks/TrialProto.framework/TrialProto
0x00000001ceff8000 - 0x00000001ceffefff LinguisticData arm64  <3e9348a3d2ac3e5a967de00c7247cb06> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x0000000190175000 - 0x00000001901bcfff Lexicon arm64  <1fb4ea3f24cd39cca8607ed4d1bc9789> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x00000001dcf65000 - 0x00000001dcf75fff libcmph.dylib arm64  <14a7fd4b65fb33e98261909542e1d1c3> /usr/lib/libcmph.dylib
0x0000000199d4b000 - 0x0000000199f4ffff Montreal arm64  <1876a4b8999333c8b15146bfe308b181> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x000000019a4bd000 - 0x000000019a582fff CalendarDatabase arm64  <601695af849332a2b839cc78e28d979e> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x00000001c1015000 - 0x00000001c107bfff CalendarDaemon arm64  <4467d8af2e0a38298055f8194758e1ef> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x000000019c68a000 - 0x000000019c70dfff CalendarFoundation arm64  <b76c04b3de3d3290b4b6ba3875ae20a6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x00000001ae969000 - 0x00000001ae9abfff iCalendar arm64  <99e234e222e73d6a95c369dd4474a9b9> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x00000001b694d000 - 0x00000001b69dafff CoreDAV arm64  <b316853044dd34feb50c00b245ff6017> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x00000001b6b44000 - 0x00000001b6ba2fff CalDAV arm64  <c587113f2af4301c852f5231ca5a3392> /System/Library/PrivateFrameworks/CalDAV.framework/CalDAV
0x000000019c13c000 - 0x000000019c27ffff TelephonyUtilities arm64  <98b342a3e7903674873d04a96c249cf2> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x00000001cebd6000 - 0x00000001cebdefff IMTransferServices arm64  <6f8297a607973e309b1105cf5f25babb> /System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferServices
0x0000000190241000 - 0x0000000190295fff CoreDuetContext arm64  <af07b57e65023bffa7070427c153d156> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x00000001cec5a000 - 0x00000001cec5ffff IncomingCallFilter arm64  <75ecac69c03c34fabd9f3389ddc0bb40> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x000000019af4e000 - 0x000000019b184fff SearchFoundation arm64  <8cce1efc88073977afd3482b0699573a> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x00000001b165d000 - 0x00000001b17b9fff Navigation arm64  <fdb24baca9423b80ac54bb8319251122> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x0000000194efb000 - 0x0000000195a68fff VectorKit arm64  <bb4952f58f5235e7a2a6d2e6398171d8> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x00000001bf37d000 - 0x00000001bf3b3fff VirtualGarage arm64  <3aced968404d37138dfd0a911b576a5b> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
0x0000000191742000 - 0x0000000191953fff AssistantServices arm64  <0d066eaa1fae39f294b729718a6f1d69> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x000000019e22a000 - 0x000000019e284fff VoiceServices arm64  <1502ccc1d88e3acf81ccb43b0cd9defe> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x00000001b135a000 - 0x00000001b137bfff IntentsCore arm64  <2cf6b6e63b7d31a7b05e889f738bc240> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x00000001c28e8000 - 0x00000001c2901fff ExternalAccessory arm64  <a90ce3a8844d3d8bbff06131f5036e1a> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
0x00000001ab4f9000 - 0x00000001ab513fff IAP arm64  <eacb9977ca15304191e1f01700c2e6a5> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x000000019e179000 - 0x000000019e229fff SAObjects arm64  <882ab1630e453b8195183bcb89bc75f4> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x00000001af96e000 - 0x00000001afc85fff SiriInstrumentation arm64  <a0e2a5219ac03ea192584186e9d1c1ad> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x00000001e69b2000 - 0x00000001e69c6fff SiriAnalytics arm64  <9cdef4c7adc03479932ad69a4704a619> /System/Library/PrivateFrameworks/SiriAnalytics.framework/SiriAnalytics
0x00000001cceb9000 - 0x00000001ccecbfff FeedbackLogger arm64  <a3295ca35d0a38cd829cf849d27566c2> /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
0x00000001beb48000 - 0x00000001bf1bafff SiriTTS arm64  <28517f24463c352b9f2bcfb2e9913e2d> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x000000019726e000 - 0x0000000197a37fff CoreML arm64  <88ac5db9410b315f9d2258982b156e77> /System/Library/Frameworks/CoreML.framework/CoreML
0x00000001dd0a7000 - 0x00000001dd0c3fff libedit.3.dylib arm64  <4d7c00df80db381fba689e1aeb0a3e7a> /usr/lib/libedit.3.dylib
0x00000001a4370000 - 0x00000001a439ffff DuetActivityScheduler arm64  <30e105c61342390c90d596799ae5e0c5> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x00000001c2b24000 - 0x00000001c2ceafff MLCompute arm64  <a2bfb43da3fc3717a66cc076fa02c89c> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x00000001e4dd0000 - 0x00000001e4ef8fff MLAssetIO arm64  <5801bce2cd5c37f2bdb16633e47490db> /System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO
0x00000001cf892000 - 0x00000001cf8e3fff MediaPlatform arm64  <1139e9c7dde634f7aded114d4c36b9e4> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x00000001cf5ec000 - 0x00000001cf891fff MediaLibraryCore arm64  <3033479d5bac32e08423d9dc21956622> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x00000001ad0cb000 - 0x00000001ad39dfff MusicLibrary arm64  <ac5e6108619a327a8e8c66f45622eed1> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x000000019ba4c000 - 0x000000019ba66fff BaseBoardUI arm64  <62712e3bfbfa3866b9281e0f27fa7230> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x00000001ce7bd000 - 0x00000001ce82ffff HomeSharing arm64  <ea5e4b008ba930a89b7884e30127f9a0> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x000000019a071000 - 0x000000019a327fff iTunesCloud arm64  <c3aae3db8c89337581ad902fbd769f4d> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x00000001cc076000 - 0x00000001cc07afff DAAPKit arm64  <20920cb05fea348ba54beda533d68a0c> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x000000019daf4000 - 0x000000019db61fff ContactsAutocompleteUI arm64  <0ef1e1b8f0383ece8ce8dd9f764469c5> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x00000001a7830000 - 0x00000001a78f0fff Email arm64  <716f99dd2ff13aff956ccb6541fdc140> /System/Library/PrivateFrameworks/Email.framework/Email
0x00000001b5a14000 - 0x00000001b5a84fff EmailCore arm64  <ecfce38300993ad686407fa03f2688a7> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x00000001cca92000 - 0x00000001cca95fff FTClientServices arm64  <ab0aff7097653548b2d5d8ebb4f2f40b> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x00000001b68a5000 - 0x00000001b68bdfff MailServices arm64  <d0e30e2189e5397f8de0f53fd56c7d68> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x000000019a94a000 - 0x000000019ab4bfff Message arm64  <8292fc0f760333378992b092ad779508> /System/Library/PrivateFrameworks/Message.framework/Message
0x00000001b0647000 - 0x00000001b0649fff MessageSupport arm64  <4ce8f5cb964d3729ac55d5ca11881d7f> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x00000001b651b000 - 0x00000001b656cfff MIME arm64  <65ab6b3ddd8c37a5ba8a4ff35306117e> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x00000001c4450000 - 0x00000001c452ffff PDFKit arm64  <918df60cc09a32aa879ac8b9de11d280> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x00000001ad7c0000 - 0x00000001adac9fff PencilKit arm64  <a927d69be6903f368ac869ade40b5b93> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x00000001c53dc000 - 0x00000001c53dcfff VisionKit arm64  <872a4c7c309f33e69cd8980c08762a98> /System/Library/Frameworks/VisionKit.framework/VisionKit
0x00000001b0a7c000 - 0x00000001b0acafff DoNotDisturb arm64  <def9a2def96d376bb8dcc2094dfb6924> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x00000001ca559000 - 0x00000001ca5a5fff ContactsAutocomplete arm64  <07caa9d1ce5135e698ab26619348a470> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x00000001cc6d9000 - 0x00000001cc6e3fff EmailAddressing arm64  <0899c03e904438deb9e7b45087e91bbd> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x000000019ab4c000 - 0x000000019abcffff EmailFoundation arm64  <74a8a5551dc336249af27013bc7ee09d> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x00000001b91fd000 - 0x00000001b9231fff MailSupport arm64  <c9b039530fab39de91fc70e7bfaa7453> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x00000001e2a66000 - 0x00000001e2a94fff CorePommes arm64  <4883d39242b83d0fba1703b0a657c090> /System/Library/PrivateFrameworks/CorePommes.framework/CorePommes
0x00000001c2945000 - 0x00000001c2970fff GSS arm64  <ce4a42a1a75932f6a17d2186177c7ff4> /System/Library/Frameworks/GSS.framework/GSS
0x00000001ce269000 - 0x00000001ce2d9fff Heimdal arm64  <82eb99682b743c97b9fa76f12eb08720> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x00000001ca45f000 - 0x00000001ca466fff CommonAuth arm64  <113735d5796a3601a28c0f708846dd04> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x00000001ad39e000 - 0x00000001ad415fff CallKit arm64  <fa85046a782a3b8297a1d6596461d9ac> /System/Library/Frameworks/CallKit.framework/CallKit
0x00000001c9e15000 - 0x00000001c9e1dfff CertUI arm64  <4ee3be2fad45395b811085a6e54af81a> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x00000001a6202000 - 0x00000001a6264fff DataAccess arm64  <1a8a300b2a4a3cb185dffc0ddd28b568> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x00000001b8967000 - 0x00000001b8b7dfff EmailDaemon arm64  <cc5c8084a208356996a5ce538f134cd8> /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x00000001845fa000 - 0x0000000184641fff WirelessDiagnostics arm64  <cb9dac6da5943fc2a8b0d35c37d9d945> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x00000001dc046000 - 0x00000001dc471fff libAWDSupportFramework.dylib arm64  <983e07ef518a36458da8811de5c7c099> /usr/lib/libAWDSupportFramework.dylib
0x00000001dc00a000 - 0x00000001dc045fff libAWDSupport.dylib arm64  <6bdab4f6f44432558e0a2b2d730372fa> /usr/lib/libAWDSupport.dylib
0x00000001dd94d000 - 0x00000001dd95efff libprotobuf-lite.dylib arm64  <7ce4eb70f7a4376a9512a3f551364238> /usr/lib/libprotobuf-lite.dylib
0x00000001dd95f000 - 0x00000001dd9bbfff libprotobuf.dylib arm64  <2b66e4e316e83895aeb94903b5ef0013> /usr/lib/libprotobuf.dylib
0x000000019a583000 - 0x000000019a5a4fff Notes arm64  <687f8373dd033b7a8bef775eae527686> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x00000001e5949000 - 0x00000001e599afff NotesSupport arm64  <d9f521053fcb343bbe797055ac6c97c8> /System/Library/PrivateFrameworks/NotesSupport.framework/NotesSupport
0x00000001aee20000 - 0x00000001aeeb7fff DifferentialPrivacy arm64  <e289680c06c0378fa995736fb8af2ec8> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x00000001e501e000 - 0x00000001e503afff MailKit arm64  <aa5455122d113f1ca4d64caef7b9d136> /System/Library/PrivateFrameworks/MailKit.framework/MailKit
0x00000001caf86000 - 0x00000001cafdafff CorePrediction arm64  <ada4b7c0577a3932b68a87dd66a74037> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x0000000191a2f000 - 0x0000000191a80fff SafariSafeBrowsing arm64  <8ec2b2c1e26a31a29e458db620a1888c> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x00000001caeb1000 - 0x00000001caeb5fff CoreOptimization arm64  <859509aff9fb3585994429b0860ad462> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x00000001caeb6000 - 0x00000001caf7cfff CorePDF arm64  <5a78a0bc9b8b3d1a8ef6c7b14f979cab> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x00000001d2a15000 - 0x00000001d2a1afff RevealCore arm64  <14eb3c08ed853869954b6f5268600c22> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x00000001bac50000 - 0x00000001baca2fff NaturalLanguage arm64  <da36afc6f243385e84d7f10875b5b7ff> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x00000001c9888000 - 0x00000001c9898fff CTCarrierSpace arm64  <36d81abcd92836ffa62294cffa247f5d> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x00000001b1a2c000 - 0x00000001b1a44fff MaterialKit arm64  <0c72407920ed3199b1ae3741e5b9a7d4> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x00000001c2d17000 - 0x00000001c2d31fff MetalKit arm64  <360b2d87e82d3bf0887d5906f5580562> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x00000001bcb1f000 - 0x00000001bcc8bfff CoreHandwriting arm64  <cdb117d8f5cf3611a203f971fd46bd97> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x0000000188721000 - 0x0000000188abbfff libswiftCore.dylib arm64  <8735cdd4c3fc3db48e68c914369d9408> /usr/lib/swift/libswiftCore.dylib
0x00000001ddd18000 - 0x00000001ddd18fff libswiftCoreFoundation.dylib arm64  <759ee10850b1346d9bdfb0e68b147af4> /usr/lib/swift/libswiftCoreFoundation.dylib
0x000000018c2b5000 - 0x000000018c2befff libswiftCoreGraphics.dylib arm64  <ec8c14ce41bb35b2a1ead2ff07fc45c8> /usr/lib/swift/libswiftCoreGraphics.dylib
0x00000001ddd19000 - 0x00000001ddd19fff libswiftCoreImage.dylib arm64  <9c07bc33a896363fa9a105731e00acb0> /usr/lib/swift/libswiftCoreImage.dylib
0x00000001ddd86000 - 0x00000001ddd8ffff libswiftDarwin.dylib arm64  <2f1ac0564d653de58ee2a07419e4c18b> /usr/lib/swift/libswiftDarwin.dylib
0x00000001e9f1d000 - 0x00000001e9f1dfff libswiftDataDetection.dylib arm64  <c90078a7979a3804911b41e7b68f5a06> /usr/lib/swift/libswiftDataDetection.dylib
0x000000019bfac000 - 0x000000019bfc1fff libswiftDispatch.dylib arm64  <d38f0f98f31936b5bf92fb669cfc0fac> /usr/lib/swift/libswiftDispatch.dylib
0x00000001e9f61000 - 0x00000001e9f61fff libswiftFileProvider.dylib arm64  <79000c44168732968dbd73b623e64bf3> /usr/lib/swift/libswiftFileProvider.dylib
0x0000000188413000 - 0x0000000188720fff libswiftFoundation.dylib arm64  <71662a8f8cc63830a52700fe1ae919c5> /usr/lib/swift/libswiftFoundation.dylib
0x00000001dddaf000 - 0x00000001dddb3fff libswiftMetal.dylib arm64  <b17a2ed8df13339cb5ca0fe795866e9e> /usr/lib/swift/libswiftMetal.dylib
0x00000001b4ff8000 - 0x00000001b4ff9fff libswiftObjectiveC.dylib arm64  <d15dac6d416f3bec9818fbec67c03550> /usr/lib/swift/libswiftObjectiveC.dylib
0x00000001dde38000 - 0x00000001dde39fff libswiftQuartzCore.dylib arm64  <e166bd8b4d533c82aa081b5daed9ce66> /usr/lib/swift/libswiftQuartzCore.dylib
0x000000019a328000 - 0x000000019a386fff libswiftUIKit.dylib arm64  <1db1bbd9ecce3e58bba8e78f8b348f9c> /usr/lib/swift/libswiftUIKit.dylib
0x00000001b7295000 - 0x00000001b7371fff ProofReader arm64  <3ae8db62c76d35ddb44084af4ffec2d4> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x00000001aeb3a000 - 0x00000001aebdbfff CVNLP arm64  <c1987eec52c43aa1854ab32374b8969d> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x00000001dd2d8000 - 0x00000001dd50afff libmecabra.dylib arm64  <100bc5361be73fcea1641ff86a988cd6> /usr/lib/libmecabra.dylib
0x00000001ca54b000 - 0x00000001ca54efff ConstantClasses arm64  <ea87374e62143fbd8f64f20834762fa0> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x00000001dc7ed000 - 0x00000001dc7f4fff libChineseTokenizer.dylib arm64  <055d488bebb43bac8086acea5ee0f395> /usr/lib/libChineseTokenizer.dylib
0x000000019a69c000 - 0x000000019a799fff Combine arm64  <4ac8c00434643f219aee7f002a6f6e16> /System/Library/Frameworks/Combine.framework/Combine
0x00000001e9fab000 - 0x00000001e9fe7fff libswift_Concurrency.dylib arm64  <4fc183d6f16238289f163766fea0e14d> /usr/lib/swift/libswift_Concurrency.dylib
0x00000001dde88000 - 0x00000001ddea0fff libswiftos.dylib arm64  <99fbbf2ca6293198b3db528032afa0dc> /usr/lib/swift/libswiftos.dylib
0x00000001c207b000 - 0x00000001c208efff Accessibility arm64  <a13bedc22fa73f02a2b7edc2474fb79a> /System/Library/Frameworks/Accessibility.framework/Accessibility
0x000000019d9fa000 - 0x000000019daf3fff AXMediaUtilities arm64  <2eb2451395e33c5fb69d7b80b5e9b336> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
0x00000001b8886000 - 0x00000001b88e5fff AccessibilitySharedSupport arm64  <6900580239cf34ba8479d9aa512406f3> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x00000001b69db000 - 0x00000001b69f2fff AXAssetLoader arm64  <2f3337cdf3cf383eae41fe973d869190> /System/Library/PrivateFrameworks/AXAssetLoader.framework/AXAssetLoader
0x0000000196183000 - 0x0000000196334fff Sharing arm64  <fe82d81386ae338d9bc03a2765626ab6> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x00000001c1009000 - 0x00000001c1014fff MobileActivation arm64  <da26773f876930f2abca16b4bc3c4e0d> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x00000001c9558000 - 0x00000001c9569fff BluetoothManager arm64  <c5c7914c8ff03cf291a6d7c4fd4c7677> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x00000001cc469000 - 0x00000001cc54bfff DocumentCamera arm64  <0142270225323df7b47ca9bc2da2ef6c> /System/Library/PrivateFrameworks/DocumentCamera.framework/DocumentCamera
0x00000001e8977000 - 0x00000001e8a36fff VisionKitCore arm64  <10e794917be63dba85d06a113c5f17a7> /System/Library/PrivateFrameworks/VisionKitCore.framework/VisionKitCore
0x00000001a5f27000 - 0x00000001a6201fff Vision arm64  <86807cc5046737d9b47754e9a58f4349> /System/Library/Frameworks/Vision.framework/Vision
0x00000001c4dda000 - 0x00000001c53dbfff libfaceCore.dylib arm64  <e0a116bfa2c930a4bca42c571971e47f> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x00000001cd29e000 - 0x00000001cd2b5fff Futhark arm64  <a22f84d400c23db3a828fcd6fb4df8b1> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x00000001cec60000 - 0x00000001cecc9fff InertiaCam arm64  <8e0ae0e4ea753cb08f5d3c93a3c3021c> /System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam
0x00000001b4d80000 - 0x00000001b4ec5fff TextRecognition arm64  <5a5c6ec05f973d959b6024fbe62bce64> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x00000001cc31e000 - 0x00000001cc366fff DistributedEvaluation arm64  <46b722ed8c5d3dfc8e401a2daae0962c> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x000000019640c000 - 0x00000001964cdfff CoreParsec arm64  <03f91b3c61913ac3b10f7f9c3e94f15d> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x00000001e5c71000 - 0x00000001e6079fff PegasusAPI arm64  <3c9eb0fb8fa339c0ba5a68c639a0cdeb> /System/Library/PrivateFrameworks/PegasusAPI.framework/PegasusAPI
0x00000001bc654000 - 0x00000001bc769fff InternalSwiftProtobuf arm64  <952f5583d4eb3de7801feca31debc280> /System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf
0x00000001e9f95000 - 0x00000001e9f96fff libswiftOSLog.dylib arm64  <66e33c4aae6c3d19aaf5430c0ba5de1c> /usr/lib/swift/libswiftOSLog.dylib
0x00000001c4180000 - 0x00000001c418efff OSLog arm64  <6e0b2190e9f237299a4e70999b4b5d45> /System/Library/Frameworks/OSLog.framework/OSLog
0x00000001c9a05000 - 0x00000001c9a3cfff CameraEditKit arm64  <a06a46b8fdbf3800bbce0489f9b6b1a9> /System/Library/PrivateFrameworks/CameraEditKit.framework/CameraEditKit
0x00000001e5438000 - 0x00000001e544dfff MediaAnalysisServices arm64  <75900c5e241b3c108f9f30aee0692628> /System/Library/PrivateFrameworks/MediaAnalysisServices.framework/MediaAnalysisServices
0x00000001c985a000 - 0x00000001c9874fff CPAnalytics arm64  <851c04b30dc23898850da5af7a56031d> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
0x00000001b147b000 - 0x00000001b14bdfff ImageCaptureCore arm64  <94cdbab43e2b381b9c195f90b2b14b5a> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x00000001e9f1e000 - 0x00000001e9f57fff libswiftDemangle.dylib arm64  <8d3b9e9f45953d059bfde3e0bedc6109> /usr/lib/swift/libswiftDemangle.dylib
0x00000001d0ead000 - 0x00000001d0f17fff PhotoLibrary arm64  <7361dc55cf0436c0932dcaa2079ffb9e> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x0000000199022000 - 0x0000000199d4afff PhotosUICore arm64  <2015b4864db4385c930959369d04fc14> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
0x00000001d253c000 - 0x00000001d254afff PrototypeToolsUI arm64  <825784d514e13ff68e732d0c74fd8ac0> /System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
0x00000001b68be000 - 0x00000001b68fefff PhotosPlayer arm64  <3d99d446faa13d7f9491418983339e5e> /System/Library/PrivateFrameworks/PhotosPlayer.framework/PhotosPlayer
0x00000001d6228000 - 0x00000001d626dfff TipKit arm64  <234a456f3d3432be84f6246446f30fed> /System/Library/PrivateFrameworks/TipKit.framework/TipKit
0x00000001b4b2a000 - 0x00000001b4d6ffff NeutrinoCore arm64  <08d2e0bd1db6382ea28f52621f130fc7> /System/Library/PrivateFrameworks/NeutrinoCore.framework/NeutrinoCore
0x00000001d058a000 - 0x00000001d05abfff NeutrinoKit arm64  <973e447c95ab3062a916a662d8695c85> /System/Library/PrivateFrameworks/NeutrinoKit.framework/NeutrinoKit
0x00000001d0d92000 - 0x00000001d0eacfff PhotoImaging arm64  <7e0fc5a47e9137a7a34ce852e949d4c8> /System/Library/PrivateFrameworks/PhotoImaging.framework/PhotoImaging
0x000000019a5a5000 - 0x000000019a69bfff LinkPresentation arm64  <4bd2bd8b6f2338629cbbbfb1e1b02f09> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x00000001e629d000 - 0x00000001e6331fff Portrait arm64  <089727253d4f3a728c429b2a8bccbf78> /System/Library/PrivateFrameworks/Portrait.framework/Portrait
0x00000001e5146000 - 0x00000001e5437fff MediaAnalysis arm64  <6cf35957f1b43da0852667d6f938ec2d> /System/Library/PrivateFrameworks/MediaAnalysis.framework/MediaAnalysis
0x00000001e762b000 - 0x00000001e7698fff SocialLayer arm64  <1cd8d029f0cd3748872f5a3308ef609e> /System/Library/PrivateFrameworks/SocialLayer.framework/SocialLayer
0x0000000189058000 - 0x0000000189081fff ChronoServices arm64  <14e0c65649043ec382df5ff38c2b6c7d> /System/Library/PrivateFrameworks/ChronoServices.framework/ChronoServices
0x00000001d626e000 - 0x00000001d6280fff TipsUI arm64  <9e08b080fd6733a8893f15dfac119d67> /System/Library/PrivateFrameworks/TipsUI.framework/TipsUI
0x000000019c70e000 - 0x000000019c7a2fff TipsCore arm64  <9cec183e59103faa8b143b889977f0fa> /System/Library/PrivateFrameworks/TipsCore.framework/TipsCore
0x000000018b4b8000 - 0x000000018c2b4fff SwiftUI arm64  <e8baa8235a6f3cc3b904a8916f39d30c> /System/Library/Frameworks/SwiftUI.framework/SwiftUI
0x00000001ddd04000 - 0x00000001ddd0cfff libswiftCoreAudio.dylib arm64  <394e97efb71c386db585ac8be032dac3> /usr/lib/swift/libswiftCoreAudio.dylib
0x00000001ddd0d000 - 0x00000001ddd17fff libswiftCoreData.dylib arm64  <af10ed110183331e97bb8dbd09f3c013> /usr/lib/swift/libswiftCoreData.dylib
0x00000001ddd46000 - 0x00000001ddd79fff libswiftCoreMedia.dylib arm64  <6eed35afc8193f349a4c7c281623974d> /usr/lib/swift/libswiftCoreMedia.dylib
0x00000001adb5c000 - 0x00000001adb67fff libswiftUniformTypeIdentifiers.dylib arm64  <dcb36744c2333309be22762fd47eb638> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
0x00000001bf3b4000 - 0x00000001bf3dbfff NetAppsUtilities arm64  <3bf53aa0fd223fb3b7d309624b6d5c83> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x00000001a6380000 - 0x00000001a63b9fff libswiftCloudKit.dylib arm64  <5303721fe49639cbab093ca08079ec6f> /usr/lib/swift/libswiftCloudKit.dylib
0x00000001ddd1a000 - 0x00000001ddd1cfff libswiftCoreLocation.dylib arm64  <bbd659c050ed3fa3b6184cea271f878f> /usr/lib/swift/libswiftCoreLocation.dylib
0x00000001b1525000 - 0x00000001b15a4fff RenderBox arm64  <ce93b198576136df9019b90e97489893> /System/Library/PrivateFrameworks/RenderBox.framework/RenderBox
0x00000001b890c000 - 0x00000001b8940fff AttributeGraph arm64  <9ebb500613cc3f40b10f6bada94ff12d> /System/Library/PrivateFrameworks/AttributeGraph.framework/AttributeGraph
0x00000001ad456000 - 0x00000001ad4b6fff AXRuntime arm64  <66c237ca4ce13da3b202564711e51e84> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x00000001e28b0000 - 0x00000001e28c5fff CoreGlyphs arm64  <1c6bad7e7efa30d58a39afc95c33db46> /System/Library/PrivateFrameworks/CoreGlyphs.framework/CoreGlyphs
0x00000001ab56e000 - 0x00000001ab57dfff RecapPerformanceTesting arm64  <66ddfe47e3ce3de99ed6214c9177323e> /System/Library/PrivateFrameworks/RecapPerformanceTesting.framework/RecapPerformanceTesting
0x00000001ddc42000 - 0x00000001ddc57fff libswiftAVFoundation.dylib arm64  <beab0f32d9503ae99a360af31312330e> /usr/lib/swift/libswiftAVFoundation.dylib
0x00000001ddc58000 - 0x00000001ddcd6fff libswiftAccelerate.dylib arm64  <695603123b913e64bae7b7ae36c9843b> /usr/lib/swift/libswiftAccelerate.dylib
0x00000001ddd1d000 - 0x00000001ddd25fff libswiftCoreMIDI.dylib arm64  <aa923b47cf0f341d9692777bfff228e7> /usr/lib/swift/libswiftCoreMIDI.dylib
0x00000001ddd26000 - 0x00000001ddd45fff libswiftCoreML.dylib arm64  <bb483a8343ec3efe939ce6b69097a870> /usr/lib/swift/libswiftCoreML.dylib
0x00000001dde81000 - 0x00000001dde82fff libswiftVision.dylib arm64  <f1a65d8dc7513567881c9924a3e0870b> /usr/lib/swift/libswiftVision.dylib
0x00000001ddea1000 - 0x00000001ddeb7fff libswiftsimd.dylib arm64  <a3e228c1e8e6357d83845df91dbb6f4a> /usr/lib/swift/libswiftsimd.dylib
0x00000001ab56b000 - 0x00000001ab56dfff libAXSafeCategoryBundle.dylib arm64  <e1e1fd7a6baf3b47b533aed8b6c37264> /usr/lib/libAXSafeCategoryBundle.dylib
0x00000001e7a89000 - 0x00000001e7abafff Synapse arm64  <0f1557ddc4203b9ba29a4fd66f56d7f3> /System/Library/PrivateFrameworks/Synapse.framework/Synapse
0x00000001c8ba4000 - 0x00000001c8c33fff AppleDepth arm64  <6324c8ff97523c91b2743fccc7dbb203> /System/Library/PrivateFrameworks/AppleDepth.framework/AppleDepth
0x00000001e369a000 - 0x00000001e36dffff FusionTracker arm64  <b9de373cbb143ec9af29f75f25ec4be6> /System/Library/PrivateFrameworks/FusionTracker.framework/FusionTracker
0x00000001e8b76000 - 0x00000001e8fcdfff VisualLogger arm64  <9037f2648af4382ea9c5e6861c33b0fa> /System/Library/PrivateFrameworks/VisualLogger.framework/VisualLogger
0x00000001ca67b000 - 0x00000001ca6d3fff CoreAppleCVA arm64  <61297f3d52a133939611396f31027c6e> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x00000001d05f6000 - 0x00000001d05f8fff OAuth arm64  <04abfddc1d81305fbfe1b0aa9e050cc6> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x00000001c90eb000 - 0x00000001c9143fff AutoLoop arm64  <6897cf30a8fe3c689c39a50972def5da> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop
0x00000001e8a37000 - 0x00000001e8b75fff VisualIntelligence arm64  <8ac617adec4c3e98893365180b6af85d> /System/Library/PrivateFrameworks/VisualIntelligence.framework/VisualIntelligence
0x00000001c4ae4000 - 0x00000001c4baffff SoundAnalysis arm64  <952d515ddd49336c9b26f79429234428> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x00000001e60ab000 - 0x00000001e60d2fff PegasusKit arm64  <df05336319e03432a1a3212ce8fc550a> /System/Library/PrivateFrameworks/PegasusKit.framework/PegasusKit
0x00000001ddd02000 - 0x00000001ddd03fff libswiftContacts.dylib arm64  <77ab7c63e93b3c6db8123bbb3e712719> /usr/lib/swift/libswiftContacts.dylib
0x00000001e607a000 - 0x00000001e60aafff PegasusConfiguration arm64  <422b040297513177a05ed78970ba72d3> /System/Library/PrivateFrameworks/PegasusConfiguration.framework/PegasusConfiguration
0x00000001dddc6000 - 0x00000001dde2dfff libswiftNetwork.dylib arm64  <1a580b2ebf793c409f21cacd704801dc> /usr/lib/swift/libswiftNetwork.dylib
0x00000001af0b7000 - 0x00000001af96dfff EmbeddedAcousticRecognition arm64  <84b28ed394f13e3db274a884f323654b> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
0x00000001d2a31000 - 0x00000001d2da3fff SDAPI arm64  <964ff752b793357e8819535c441cbda5> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
0x00000001901bd000 - 0x0000000190240fff PersonalizationPortrait arm64  <de1a09ee3d1b3e5e9c4dbe7f415af503> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x00000001c70c5000 - 0x00000001c70cbfff AppStoreFoundation arm64  <770031bb7dc23559ab82609a883e3377> /System/Library/PrivateFrameworks/AppStoreFoundation.framework/AppStoreFoundation
0x00000001c70cc000 - 0x00000001c70d7fff AppStoreOverlays arm64  <40c4afb373493bad9cdd134d40b3ace3> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x0000000188ae1000 - 0x0000000188c2efff Preferences arm64  <e5bc351ec9b838adb77929917ce7e146> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x0000000195ec8000 - 0x0000000196182fff StoreServices arm64  <229a7e1185b63d8b8bfa141a4916643c> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x00000001b9b5f000 - 0x00000001b9ba9fff CryptoKit arm64  <f86148a469613962be786852bff3a0ad> /System/Library/Frameworks/CryptoKit.framework/CryptoKit
0x000000019d4fb000 - 0x000000019d59cfff AppStoreDaemon arm64  <2799a2db20873320a8c0f1a545e41e49> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x00000001b2534000 - 0x00000001b254bfff SettingsFoundation arm64  <b31fc1c8aef130d78d0ce9f2a749938e> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x00000001e4c26000 - 0x00000001e4c27fff LowPowerMode arm64  <1f67320c3ed235eaab795ddd08fb69d2> /System/Library/PrivateFrameworks/LowPowerMode.framework/LowPowerMode
0x00000001d03eb000 - 0x00000001d03f1fff Netrb arm64  <232be30590543029827c5d233b493053> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x00000001afc86000 - 0x00000001afcd0fff BiometricKit arm64  <f8de653a51e23a14a61c91c08996328f> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x00000001b3a41000 - 0x00000001b3a8dfff ExposureNotification arm64  <373c53cf43cf34dea538ac5eb68e08c9> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x00000001cc031000 - 0x00000001cc035fff CryptoKitCBridging arm64  <782a402c101d3a8383ba704345c5ade4> /System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging
0x00000001ddd84000 - 0x00000001ddd85fff libswiftCryptoTokenKit.dylib arm64  <3d0883f00cbe3c819d727443cc54514e> /usr/lib/swift/libswiftCryptoTokenKit.dylib
0x0000000109b00000 - 0x0000000109b0bfff libobjc-trampolines.dylib arm64  <18e938378b0f32909f807ae0f102a3b7> /usr/lib/libobjc-trampolines.dylib
0x00000001de152000 - 0x00000001de16dfff AccessibilitySettingsLoader arm64  <37b6a97876b1330a8fc3bd46c628702a> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x00000001988be000 - 0x00000001989d7fff AccessibilityUtilities arm64  <2827f02047323757a21faabe608a6a8a> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x00000001ae40b000 - 0x00000001ae42bfff TextToSpeech arm64  <b900dc88c336307188bc4fb1b28b3ee6> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x00000001bc1a1000 - 0x00000001bc1b1fff libAXSpeechManager.dylib arm64  <121c3cd192ee372abc6c9077b856dec6> /usr/lib/libAXSpeechManager.dylib
0x00000001e7aca000 - 0x00000001e7b13fff TTSAsset arm64  <af71c59ca36137b7ac1a8c38f480ccbc> /System/Library/PrivateFrameworks/TTSAsset.framework/TTSAsset
0x00000001cceaf000 - 0x00000001cceaffff FeatureFlags arm64  <62a74ca67d9a363b8a582d0ac0ec0581> /System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags
0x000000019d1da000 - 0x000000019d20afff CoreServicesInternal arm64  <565fb8f7ed5f3d46809239073b91abac> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x00000001b2d66000 - 0x00000001b2fa5fff RawCamera arm64  <492eacda2e783708a717226d0986a947> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x000000019c919000 - 0x000000019c9d0fff libboringssl.dylib arm64  <7188e1b329e83f38a0fa2724980aebc0> /usr/lib/libboringssl.dylib
0x00000001ae42c000 - 0x00000001ae445fff AppSSOCore arm64  <947d001fef8a3f0a84cd6db7358ce099> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x0000000185d93000 - 0x0000000185daafff libCGInterfaces.dylib arm64  <9c96a6d29aa03052b37b9b4bd8c8fd58> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x00000001dd9bc000 - 0x00000001dda71fff libquic.dylib arm64  <35db360e58ad3f378323b0ddb6243fb8> /usr/lib/libquic.dylib
0x0000000187ee7000 - 0x0000000187f4efff libusrtcp.dylib arm64  <e2b1e9cb9ac63b47be5ac40b932276cd> /usr/lib/libusrtcp.dylib
0x00000001ddc38000 - 0x00000001ddc3afff liblog_network.dylib arm64  <3683d7483d29356fa27e823ceaef91bf> /usr/lib/log/liblog_network.dylib
0x00000001c41bf000 - 0x00000001c4287fff GLEngine arm64  <11f48bde5e9f30209326b0ac2165d616> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x00000001c42a9000 - 0x00000001c4404fff libGLProgrammability.dylib arm64  <cae1ea9c971d393b91f2df80221ec221> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x00000001de5bf000 - 0x00000001de5dcfff AppleMetalGLRenderer arm64  <86ede75e2efb39f1bbb610ac37696f05> /System/Library/Extensions/AppleMetalGLRenderer.bundle/AppleMetalGLRenderer
0x00000001df1ec000 - 0x00000001df31ffff AGXMetalA10 arm64  <85f3c688dda9320d844a64b44e5076c8> /System/Library/Extensions/AGXMetalA10.bundle/AGXMetalA10
0x00000001cde0a000 - 0x00000001cde0dfff GPURawCounter arm64  <a23538a4452a366ab5b7913bd033d34a> /System/Library/PrivateFrameworks/GPURawCounter.framework/GPURawCounter
0x00000001cebe8000 - 0x00000001cec10fff IOGPU arm64  <24b980160dd439af9362d2d8c2700a3d> /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU
0x00000001dc4e1000 - 0x00000001dc58bfff libAppleEXR.dylib arm64  <451926a12d3b3685ae86f80468c594e5> /usr/lib/libAppleEXR.dylib
0x00000001a7ffa000 - 0x00000001a8024fff AppSSO arm64  <3c552a408280337f93cd78cbfb1a5b50> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x00000001a8025000 - 0x00000001a8046fff SharedWebCredentials arm64  <c7c68679fe2e31ebaa35070d5e349f02> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x00000001d7a6a000 - 0x00000001d7a84fff WebContentAnalysis arm64  <17289b95dd0936e1a92b6b766bc450f2> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
0x00000001cefc3000 - 0x00000001cefe1fff LatentSemanticMapping arm64  <616fb90724fb3e3fbc47a6b93c975943> /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/LatentSemanticMapping
0x000000018d3b2000 - 0x000000018d41dfff TextInputUI arm64  <a3780fa7541b32dc94f1feb2e5e1ea98> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI

--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
windvane history:
(null)
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
operations:
(null)
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
ext data:
pid = 20584971
bv = 4.14.0
bid = 22057997
hv =
ts = 1
flutter doctor -v
[✓] Flutter (Channel unknown, 1.22.6, on macOS 12.0.1 21A559 darwin-x64, locale zh-Hans-CN)
    • Flutter version 1.22.6 at /Users/zero/development/flutter
    • Framework revision 9b2d32b605 (10 months ago), 2021-01-22 14:36:39 -0800
    • Engine revision 2f0af37152
    • Dart version 2.10.5

 
[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
    • Android SDK at /Users/zero/Library/Android/sdk
    • Platform android-Sv2, build-tools 31.0.0
    • ANDROID_HOME = /Users/zero/Library/Android/sdk
    • ANDROID_SDK_ROOT = /Users/zero/Library/Android/sdk
    • Java binary at: /Users/zero/Dev/flutter_engine/src/flutter/uc/third_party/openjdk/mac64/jdk8u242-b08/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (AdoptOpenJDK)(build 1.8.0_242-b08)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 12.5.1)
    • Xcode at /Applications/Xcode12.5.app/Contents/Developer
    • Xcode 12.5.1, Build version 12E507
    • CocoaPods version 1.10.1

[!] Android Studio (version 2020.3)
    • Android Studio at /Applications/Android Studio.app/Contents
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
    ✗ Unable to find bundled Java version.
    • Try updating or re-installing Android Studio.

[!] VS Code (version 1.62.3)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    ✗ Flutter extension not installed; install from
      https://marketplace.visualstudio.com/items?itemName=Dart-Code.flutter

[!] Connected device
    ! No devices available

! Doctor found issues in 3 categories.
@maheshmnj maheshmnj added the in triage Presently being triaged by the triage team label Dec 2, 2021
@maheshmnj
Copy link
Member

Hi @0xZOne, Thanks for filing the issue. Is this potential deadlock from the latest engine revision? Can you please share the output of flutter doctor -v?

Thanks

@maheshmnj maheshmnj added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Dec 2, 2021
@0xZOne
Copy link
Member Author

0xZOne commented Dec 2, 2021

Hi @0xZOne, Thanks for filing the issue. Is this potential deadlock from the latest engine revision? Can you please share the output of flutter doctor -v?

Thanks

Yes, I think so.

@github-actions github-actions bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Dec 2, 2021
@maheshmnj
Copy link
Member

@0xZOne, looking at your flutter doctor it looks like you are using an older version of flutter https://github.com/flutter/flutter/releases/tag/1.22.6, Please upgrade to latest stable 2.5.3 and see if you are still experiencing the deadlock.
if the issue persists feel free to write back with the updated output of flutter doctor -v along with reproducible steps.

Thanks

@maheshmnj maheshmnj added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Dec 2, 2021
@0xZOne
Copy link
Member Author

0xZOne commented Dec 3, 2021

@0xZOne, looking at your flutter doctor it looks like you are using an older version of flutter https://github.com/flutter/flutter/releases/tag/1.22.6, Please upgrade to latest stable 2.5.3 and see if you are still experiencing the deadlock. if the issue persists feel free to write back with the updated output of flutter doctor -v along with reproducible steps.

Thanks

Yes, We found the deadlock in our actual ios app that uses flutter 1.22.6, as the log show. The deadlock only occurs in specific scenes occasionally and is hard to reproduce. Maybe the app will not upgrade to 2.5.x soon.

But, According to the code logic, I believe that the deadlock here still exists in the latest version.

In addition, there is also a potential deadlock risk in |PlatformViewAndroid|, although no cases have been found in an actual app not yet.

@github-actions github-actions bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Dec 3, 2021
@maheshmnj
Copy link
Member

maheshmnj commented Dec 3, 2021

Thanks for the info, Leaving this issue open for further insights from the team.
Can you share complete crash logs to help debug the issue?

@maheshmnj maheshmnj added a: production Issues experienced in live production apps engine flutter/engine repository. See also e: labels. passed first triage platform-ios iOS applications specifically c: crash Stack traces logged to the console and removed in triage Presently being triaged by the triage team labels Dec 3, 2021
@maheshmnj maheshmnj changed the title [platform-views] Deadlock caused by thread merging [IOS] Platform-views Deadlock caused by thread merging Dec 3, 2021
@maheshmnj maheshmnj added the a: platform-views Embedding Android/iOS views in Flutter apps label Dec 3, 2021
@cyanglaz cyanglaz added this to Awaiting triage in iOS Platform - platform view review via automation Dec 3, 2021
@cyanglaz cyanglaz self-assigned this Dec 3, 2021
@jmagman
Copy link
Member

jmagman commented Dec 3, 2021

https://github.com/flutter/engine/blob/d8a3b066e07522ee976ae7d8cb1af458f99a4ff1/shell/common/platform_view.cc#L69

@0xZOne
Copy link
Member Author

0xZOne commented Dec 5, 2021

Can you share complete crash logs to help debug the issue?

Complete crash logs have been added.

@maheshmnj

This comment has been minimized.

@flutter-symbolizer-bot

This comment has been minimized.

@maheshmnj
Copy link
Member

@flutter-symbolizer-bot #93791 (comment) engine#2f0af37152 ios release x86

@flutter-symbolizer-bot
Copy link

crash from #94524 (comment) symbolized using symbols for 2f0af3715217a0c2ada72c717d4ed9178d68f6ed ios-x86-release

#00 1bdaf14f0 libsystem_kernel.dylib 0x00000001bdaf0000 + 5360
#01 1de061bfc libsystem_pthread.dylib 0x00000001de055000 + 52220
#02 19b2cc2b8 libc++.1.dylib 0x000000019b2c3000 + 37560
#03 1086d6438 Flutter 0x0000000108690000 + 287800
                      ??
                      ??:0:0
#04 1089f33fc Flutter 0x0000000108690000 + 3552252
                      ??
                      ??:0:0
#05 1086b30ec Flutter 0x0000000108690000 + 143596
                      ??
                      ??:0:0
#06 103e06098 xxxxxxxxxxx _destroy_helper_block_ COChan.m:236 (in xxxxxxxxxx)
#07 103e06474 xxxxxxxxxxx _destroy_helper_block_ COChan.m:236 (in xxxxxxxxxx)
#08 1043866a0 xxxxxxxxxxx -[LxxxxxxxFlutterViewController viewDidAppear:] LxxxxxxxFlutterViewController.m:205 (in xxxxxxxxxx)
#09 1864f4108 UIKitCore 0x0000000186358000 + 1687816
#10 1865dafb4 UIKitCore 0x0000000186358000 + 2633652
#11 186561120 UIKitCore 0x0000000186358000 + 2134304
#12 1866ec59c UIKitCore 0x0000000186358000 + 3753372
#13 1023d2ef4 xxxxxxxxxxx -[UINavigationController(AliHA) aliHASwizzledNavigationTransitionView:didEndTransition:fromView:toView:] UINavigationController+AliHA.m:92 (in xxxxxxxxxx)
#14 18679f538 UIKitCore 0x0000000186358000 + 4486456
#15 1865859fc UIKitCore 0x0000000186358000 + 2284028
#16 186cae788 UIKitCore 0x0000000186358000 + 9791368
#17 186605098 UIKitCore 0x0000000186358000 + 2805912
#18 1864d8cd4 UIKitCore 0x0000000186358000 + 1576148
#19 1864ec6cc UIKitCore 0x0000000186358000 + 1656524
#20 1864ec820 UIKitCore 0x0000000186358000 + 1656864
#21 187bc3440 QuartzCore 0x0000000187b05000 + 779328
#22 183d52198 libdispatch.dylib 0x0000000183cee000 + 410008
#23 183cfe5d0 libdispatch.dylib 0x0000000183cee000 + 67024
#24 1840417e8 CoreFoundation 0x0000000183ff4000 + 317416
#25 183fff0e8 CoreFoundation 0x0000000183ff4000 + 45288
#26 184011d7c CoreFoundation 0x0000000183ff4000 + 122236
#27 19e2869a0 GraphicsServices 0x000000019e285000 + 6560
#28 18684405c UIKitCore 0x0000000186358000 + 5161052
#29 1865d9ce0 UIKitCore 0x0000000186358000 + 2628832
#30 10420779c xxxxxxxxxxx main main.m:49 (in xxxxxxxxxx)

@0xZOne
Copy link
Member Author

0xZOne commented Dec 6, 2021

@maheshmnj

The key symbol stack is already there.

#0  0x00000001bd675550 in __psynch_cvwait ()
#1  0x00000001ddaa396c in _pthread_cond_wait$VARIANT$armv81 ()
#2  0x000000019b22b2b8 in std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) ()
#3  0x00000001164745c0 in fml::ManualResetWaitableEvent::Wait()
#4  0x0000000117552000 in flutter::PlatformView::NotifyCreated()
#5  0x000000011639ddc4 in -[FlutterViewController surfaceUpdated:]
#6  0x0000000104e98230 in -[FLBFlutterViewContainer surfaceUpdated:]
#7  0x0000000104e98698 in -[FLBFlutterViewContainer viewDidAppear:]
#8  0x00000001072deb90 in -[LTaoMiniDetailFlutterViewController viewDidAppear:] ()
#9  0x0000000186598c4c in -[UIViewController _setViewAppearState:isAnimating:] ()
#10  0x0000000186680570 in -[UIViewController __viewDidAppear:] ()
#11  0x0000000186606420 in -[UIViewController _endAppearanceTransition:] ()
#12  0x0000000186792a5c in -[UINavigationController navigationTransitionView:didEndTransition:fromView:toView:] ()
#13  0x0000000105272ad4 in -[UINavigationController(AliHA) aliHASwizzledNavigationTransitionView:didEndTransition:fromView:toView:]
#14  0x0000000186845fe8 in __49-[UINavigationController _startCustomTransition:]_block_invoke ()
#15  0x000000018662ac34 in -[_UIViewControllerTransitionContext completeTransition:] ()
#16  0x0000000186d55468 in __53-[_UINavigationParallaxTransition animateTransition:]_block_invoke.158 ()
#17  0x00000001866ab000 in -[UIViewAnimationBlockDelegate _didEndBlockAnimation:finished:context:] ()
#18  0x000000018657d9a8 in -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] ()
#19  0x0000000186591210 in -[UIViewAnimationState animationDidStop:finished:] ()
#20  0x0000000186591364 in -[UIViewAnimationState animationDidStop:finished:] ()
#21  0x0000000187c66db0 in CA::Layer::run_animation_callbacks(void*) ()
#22  0x000000010f62e1c8 in _dispatch_client_callout ()
#23  0x000000010f63c8d8 in _dispatch_main_queue_callback_4CF ()
#24  0x00000001840e57f8 in __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ ()
#25  0x00000001840a30f8 in __CFRunLoopRun ()
#26  0x00000001840b5d8c in CFRunLoopRunSpecific ()
#27  0x000000019e1c29a0 in GSEventRunModal ()
#28  0x00000001868eb018 in -[UIApplication _run] ()
#29  0x000000018667f29c in UIApplicationMain ()
#30  0x0000000104d9919c in main
#31  0x000000010f5a4190 in start ()

@chinmaygarde chinmaygarde added the P2 Important issues not at the top of the work list label Dec 6, 2021
@dnfield
Copy link
Contributor

dnfield commented Dec 9, 2021

Are you sure the merger is happening before the red box?

The only way I could see this deadlocking is if the threads get merged immediately after calling RunNowOrPostTask. Perhaps this is a general bug, and we have to flush the task queues before merging threads?

@dnfield
Copy link
Contributor

dnfield commented Dec 9, 2021

I suspect there might be a bug in the thread merger code - I'm not sure if I'm reading it right or not though. It seems like before merging threads, we should make sure to flush their task queues, otherwise we could run into these deadlocks in other places. @iskakaushik might know more about this, or @cyanglaz

@dnfield
Copy link
Contributor

dnfield commented Dec 9, 2021

Chinmay tells me that we definitely don't flush the task queue(s) before merging.

@dnfield
Copy link
Contributor

dnfield commented Dec 9, 2021

Duplicate of #94524?

@dnfield
Copy link
Contributor

dnfield commented Dec 9, 2021

Sorry, I mean tto ask if it's a duplicate of #80491

@dnfield dnfield added P1 High-priority issues at the top of the work list and removed P2 Important issues not at the top of the work list labels Dec 9, 2021
@0xZOne
Copy link
Member Author

0xZOne commented Dec 13, 2021

Are you sure the merger is happening before the red box?

The only way I could see this deadlocking is if the threads get merged immediately after calling RunNowOrPostTask. Perhaps this is a general bug, and we have to flush the task queues before merging threads?

@dnfield Sorry, perhaps I didn't make myself clear (I updated the issue description).

I consider that thread merging and platform thread posting sync task to raster require a synchronization mechanism.

@dnfield
Copy link
Contributor

dnfield commented Dec 13, 2021

@0xZOne - I agree there's a synchronization issue, but we should fix this in the general case for thread merging, rather than for one particular broken use case :)

@0xZOne
Copy link
Member Author

0xZOne commented Dec 14, 2021

@0xZOne - I agree there's a synchronization issue, but we should fix this in the general case for thread merging, rather than for one particular broken use case :)

Yes, I totally agree with you.

Here I have a question: Why must CreateRenderingSurface be called on the raster thread?
Is it because the creation and use of weak pointers are not in the same thread? If this is the case, will thread merging encounter this problem?

@cyanglaz
Copy link
Contributor

Unassigned myself as I don't have time to work on this at this moment.

@flutter-triage-bot
Copy link

This issue is marked P1 but has had no recent status updates.

The P1 label indicates high-priority issues that are at the top of the work list. This is the highest priority level a bug can have if it isn't affecting a top-tier customer or breaking the build. Bugs marked P1 are generally actively being worked on unless the assignee is dealing with a P0 bug (or another P1 bug). Issues at this level should be resolved in a matter of months and should have monthly updates on GitHub.

Please consider where this bug really falls in our current priorities, and label it or assign it accordingly. This allows people to have a clearer picture of what work is actually planned. Thanks!

@jmagman jmagman added P2 Important issues not at the top of the work list and removed P1 High-priority issues at the top of the work list labels Dec 19, 2023
@jmagman jmagman added the triaged-ios Triaged by iOS platform team label Jan 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a: platform-views Embedding Android/iOS views in Flutter apps a: production Issues experienced in live production apps c: crash Stack traces logged to the console engine flutter/engine repository. See also e: labels. P2 Important issues not at the top of the work list platform-ios iOS applications specifically team-ios Owned by iOS platform team triaged-ios Triaged by iOS platform team
Projects
Development

No branches or pull requests

8 participants