Giter Club home page Giter Club logo

fballocationtracker's Introduction

FBAllocationTracker

Build Status Carthage compatible CocoaPods License

An iOS library for introspecting Objective-C objects that are currently alive.

About

FBAllocationTracker is a tool that can be used as an interface to Objective-C objects allocated in memory. It can be used to query all instances of given class, or you can (as in Instruments) mark generations and query for objects created only in scope of one generation.

Installation

Carthage

To your Cartfile add:

github "facebook/FBAllocationTracker"

FBAllocationTracker is built out from non-debug builds, so when you want to test it, use

carthage update --configuration Debug

CocoaPods

To your podspec add:

pod 'FBAllocationTracker'

You'll be able to use FBAllocationTracker fully only in Debug builds. This is controlled by compilation flag that can be provided to the build to make it work in other configurations.

Usage

FBAllocationTracker can run in two modes: tracking objects, and just counting allocs/deallocs. The first one is more interesting and we will jump right to it. The second one can be considered useful for some statistics when you don't want to impact performance.

First of all, we want to enable FBAllocationTracker in our run. We can do it at any time. For example in main.m!

#import <FBAllocationTracker/FBAllocationTrackerManager.h>

int main(int argc, char * argv[]) {
  [[FBAllocationTrackerManager sharedManager] startTrackingAllocations];
  [[FBAllocationTrackerManager sharedManager] enableGenerations];
  @autoreleasepool {
      return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
  }
}

In the code above startTrackingAllocations will take care of swizzling NSObject's +alloc and -dealloc methods, while enableGenerations will start tracking actual instances of objects.

We can grab summaries of all classes allocations:

NSArray<FBAllocationTrackerSummary *> *summaries = [[FBAllocationTrackerManager sharedManager] currentAllocationSummary];

FBAllocationTrackerSummary will tell you, for given class, how many instances of this class are still alive.

With generations enabled (explained in details below) you can also get all instances of given class

NSArray *instances =[[FBAllocationTrackerManager sharedManager] instancesOfClasses:@[[ViewController class]]];

Check out FBAllocationTrackerManager API to see what else you can do.

Generations

Generations is an idea inspired by Allocations tool in Instruments. With generations enabled we can call [[FBAllocationTrackerManager sharedManager] markGeneration] to mark generation. All objects that are allocated after given markGeneration call will be kept in new generation. We can see it in a very simple example:

- (void)someFunction {
  // Enable generations (if not already enabled in main.m)
  [[FBAllocationTrackerManager sharedManager] enableGenerations];
 
  // Object a will be kept in generation with index 0
  NSObject *a = [NSObject new];
  
  // We are marking new generation
  [[FBAllocationTrackerManager sharedManager] markGeneration];
  
  // Objects b and c will be kept in second generation at index 1
  NSObject *b = [NSObject new];
  NSObject *c = [NSObject new];
  
  [[FBAllocationTrackerManager sharedManager] markGeneration];
  
  // Object d will be kept in third generation at index 2
  NSObject *d = [NSObject new];
}

FBAllocationTrackerManager has API to get all instances of given class in given generation.

NSArray *instances =[[FBAllocationTrackerManager sharedManager] instancesForClass:[NSObject class]
                                                                     inGeneration:1];

This can be used to analyze allocations, for example by performing common tasks a user might do. Between each task we can mark a new generation, and then verify which objects are kept in given generations.

Other use cases

FBAllocationTracker is heavily used in FBMemoryProfiler. It provides data for FBMemoryProfiler. It also is a great source of candidates for FBRetainCycleDetector.

Contributing

See the CONTRIBUTING.md file for how to help out.

License

FBAllocationTracker is BSD-licensed. We also provide an additional patent grant.

fballocationtracker's People

Contributors

absolute-heike avatar gricha avatar grigorye avatar gunnarku avatar jdthomas avatar kastiglione avatar mortonfox avatar s2ler avatar tditchek avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

fballocationtracker's Issues

fb_isZombieObject crash

info
Pod 'FBAllocationTracker', '1.0.3'

Hardware Model: iPhone10,3
OS Version: iOS 14.4.2 (18D70)

Incident Identifier: 2D4D9C09-78DD-4A41-B537-789C784D539B
CrashReporter Key:   6b1f63e4b87e77db77970de09aa5bcf41336b734
Hardware Model:      iPhone10,3
Process:         qcs.r [791]
Path:            /private/var/containers/Bundle/Application/33682A28-78BE-4DA7-99F2-6A1EBA660D20/qcs.r.app/qcs.r
Identifier:      com.meituan.qcs.r.ios.ep
Version:         7405 (2.5.30)
Code Type:       ARM-64
Parent Process:  ? [1]

Date/Time:       2021-04-20 15:55:09.921 +0800
OS Version:      iOS 14.4.2 (18D70)
Report Version:  104

Monitor Type:    Mach Exception
Exception Type:  EXC_BAD_ACCESS (SIGBUS)
Exception Codes: 0x00000000 at 0x52800000d65f03d8
Crashed Thread:  41

Pthread id: 436900
Thread 0:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   GraphicsServices                GSEventRunModal + 160
6   UIKitCore                       -[UIApplication _run] + 1052
7   UIKitCore                       UIApplicationMain + 164
8   qcs.r                           main + 244
9   libdyld.dylib                   start + 4

Pthread id: 436940
Thread 1 name:  JavaScriptCore bmalloc scavenger
Thread 1:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   JavaScriptCore                  void std::__1::condition_variable_any::wait<std::__1::unique_lock<bmalloc::Mutex> >(std::__1::unique_lock<bmalloc::Mutex>&) + 108
4   JavaScriptCore                  bmalloc::Scavenger::threadRunLoop() + 252
5   JavaScriptCore                  bmalloc::Scavenger::Scavenger(std::__1::scoped_lock<bmalloc::Mutex> const&) + 0
6   JavaScriptCore                  std::__1::__thread_specific_ptr<std::__1::__thread_struct>::set_pointer(std::__1::__thread_struct*) + 0
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436941
Thread 2 name:  WebThread
Thread 2:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   WebCore                         RunWebThread(void*) + 672
6   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436944
Thread 3 name:  com.apple.uikit.eventfetch-thread
Thread 3:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) runUntilDate:] + 88
7   UIKitCore                       -[UIEventFetcher threadMain] + 504
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436953
Thread 4:
0   libsystem_kernel.dylib          __semwait_signal + 8
1   libsystem_c.dylib               nanosleep + 212
2   libsystem_c.dylib               sleep + 44
3   qcs.r                           monitorCachedData + 760
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436954
Thread 5 name:  KSCrash Exception Handler (Secondary)
Thread 5:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   qcs.r                           handleExceptions + 168
3   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436955
Thread 6 name:  KSCrash Exception Handler (Primary)
Thread 6:

Pthread id: 436958
Thread 7 name:  com.apple.CoreMotion.MotionThread
Thread 7:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   CoreFoundation                  CFRunLoopRun + 60
6   CoreMotion                      CLClientCreateIso6709Notation + 193492
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436960
Thread 8 name:  com.meituan.sakwatchdog.mainthreadcheck
Thread 8:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) run] + 88
7   qcs.r                           +[SAKMainThreadANR threadEntryPoint:] + 216
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436961
Thread 9 name:  RequestThread
Thread 9:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   CoreFoundation                  CFRunLoopRun + 60
6   qcs.r                           +[NVRequestMgr runRequests] + 104
7   Foundation                      __NSThread__start__ + 848
8   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436964
Thread 10 name:  com.meituan.babeltower.processer
Thread 10:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   qcs.r                           -[SAKBTProcessor processThreadEntryLoop] + 188
6   Foundation                      __NSThread__start__ + 848
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436965
Thread 11 name:  MeridianLocationManager
Thread 11:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) run] + 88
7   qcs.r                           +[MeridianLocationManager(DataProcess) mrdLocationThreadEntryPoint:] + 216
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436967
Thread 12 name:  com.apple.NSURLConnectionLoader
Thread 12:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   CFNetwork                       _CFURLStorageSessionCopyCache + 59740
6   Foundation                      __NSThread__start__ + 848
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436968
Thread 13 name:  AVAudioSession Notify Thread
Thread 13:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   AudioSession                    GenericRunLoopThread::Entry(void*) + 156
6   AudioSession                    CAPThread::Entry(CAPThread*) + 88
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436969
Thread 14 name:  AFNetworking
Thread 14:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) run] + 88
7   qcs.r                           +[AFURLConnectionOperation networkRequestThreadEntryPoint:] + 216
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436970
Thread 15:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   qcs.r                           -[NVMonitorCenter run] + 568
3   Foundation                      __NSThread__start__ + 848
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436975
Thread 16 name:  com.apple.CFNetwork.CustomProtocols
Thread 16:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   CFNetwork                       _CFURLStorageSessionCopyCache + 59740
6   Foundation                      __NSThread__start__ + 848
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436976
Thread 17 name:  io.flutter.1.ui
Thread 17:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Flutter                         fml::MessageLoopDarwin::Run() + 88
6   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0> >(void*) + 196
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436977
Thread 18 name:  io.flutter.1.raster
Thread 18:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Flutter                         fml::MessageLoopDarwin::Run() + 88
6   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0> >(void*) + 196
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436978
Thread 19 name:  io.flutter.1.io
Thread 19:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Flutter                         fml::MessageLoopDarwin::Run() + 88
6   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0> >(void*) + 196
7   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436979
Thread 20 name:  io.flutter.worker.1
Thread 20:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 256
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436980
Thread 21 name:  io.flutter.worker.2
Thread 21:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 256
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436981
Thread 22 name:  io.flutter.worker.3
Thread 22:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 256
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436982
Thread 23 name:  io.flutter.worker.4
Thread 23:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 256
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436983
Thread 24 name:  io.flutter.worker.5
Thread 24:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 256
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436984
Thread 25 name:  io.flutter.worker.6
Thread 25:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   libc++.1.dylib                  std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24
3   Flutter                         void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::ConcurrentMessageLoop::ConcurrentMessageLoop(unsigned long)::$_0> >(void*) + 256
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436985
Thread 26 name:  dart:io EventHandler
Thread 26:
0   libsystem_kernel.dylib          kevent + 8
1   Flutter                         dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 348
2   Flutter                         dart::bin::ThreadStart(void*) + 48
3   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436991
Thread 27:
0   libsystem_kernel.dylib          __psynch_cvwait + 8
1   libsystem_pthread.dylib         _pthread_cond_wait$VARIANT$armv81 + 1180
2   qcs.r                           -[NVMonitorCenter run] + 568
3   Foundation                      __NSThread__start__ + 848
4   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436992
Thread 28 name:  pushServiceThread
Thread 28:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   CoreFoundation                  CFRunLoopRun + 60
6   qcs.r                           +[NSThread(Push) runPushRequests] + 104
7   Foundation                      __NSThread__start__ + 848
8   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436993
Thread 29 name:  com.apple.CFSocket.private
Thread 29:
0   libsystem_kernel.dylib          select$DARWIN_EXTSN + 8
1   CoreFoundation                  __CFSocketManager + 616
2   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436994
Thread 30 name:  com.autonavi.AMapLocationThread
Thread 30:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) run] + 88
7   qcs.r                           +[AMapLocationCLMDelegate threadEntryPoint:] + 216
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437000
Thread 31 name:  com.squareup.SocketRocket.NetworkThread
Thread 31:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   qcs.r                           -[_SRRunLoopThread main] + 260
7   Foundation                      __NSThread__start__ + 848
8   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437001
Thread 32 name:  AMapNetwork
Thread 32:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) run] + 88
7   qcs.r                           +[AMapNetworkOperation networkRequestThreadEntryPoint:] + 216
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437004
Thread 33 name:  ReachabilityThread
Thread 33:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   CoreFoundation                  CFRunLoopRun + 60
6   qcs.r                           +[NSThread(Reachability) runRequests] + 104
7   Foundation                      __NSThread__start__ + 848
8   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437005
Thread 34 name:  GCDAsyncSocket-CFStream
Thread 34:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                      -[NSRunLoop(NSRunLoop) run] + 88
7   qcs.r                           +[GCDAsyncSocket cfstreamThread] + 240
8   Foundation                      __NSThread__start__ + 848
9   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437007
Thread 35 name:  SAKMetricsPingThread
Thread 35:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   CoreFoundation                  __CFRunLoopServiceMachPort + 376
3   CoreFoundation                  __CFRunLoopRun + 1176
4   CoreFoundation                  CFRunLoopRunSpecific + 572
5   Foundation                      -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228
6   qcs.r                           -[SAKMetricsPingThread main] + 360
7   Foundation                      __NSThread__start__ + 848
8   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437036
Thread 36 name:  NVConnectionWatchDog
Thread 36:
0   libsystem_kernel.dylib          __semwait_signal + 8
1   libsystem_c.dylib               nanosleep + 212
2   Foundation                      +[NSThread sleepForTimeInterval:] + 152
3   qcs.r                           -[NVConnectionWatchDog bgThread] + 64
4   Foundation                      __NSThread__start__ + 848
5   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437165
Thread 37:
0   libsystem_pthread.dylib         start_wqthread + 0

Pthread id: 437227
Thread 38:
0   libsystem_kernel.dylib          __workq_kernreturn + 8
1   libsystem_pthread.dylib         _pthread_wqthread + 348

Pthread id: 437230
Thread 39:
0   libsystem_kernel.dylib          __semwait_signal + 8
1   libsystem_c.dylib               nanosleep + 212
2   Foundation                      +[NSThread sleepForTimeInterval:] + 152
3   qcs.r                           -[QMapContext(BackgroundThread) backgroundThreadEntry] + 128
4   qcs.r                           pthread_backgroundThreadEntry + 24
5   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 437238
Thread 40:
0   libsystem_kernel.dylib          __workq_kernreturn + 8
1   libsystem_pthread.dylib         _pthread_wqthread + 348

Pthread id: 437239
Thread 41 Crashed:
0   libobjc.A.dylib                 objc_class::demangledName(bool) + 208
1   qcs.r                           fb_isZombieObject(objc_object*) + 20
2   qcs.r                           fb_isZombieObject(objc_object*) + 20
3   qcs.r                           FB::AllocationTracker::Generation::instancesForClass(objc_class*) const + 132
4   qcs.r                           FB::AllocationTracker::instancesOfClassForGeneration(objc_class*, long) + 104
5   qcs.r                           -[FBAllocationTrackerManager instancesForClass:inGeneration:] + 40
6   qcs.r                           -[SAKAliveDetector allocationSummary] + 636
7   qcs.r                           __50-[SAKAliveDetector fetchCurrentAllocationSummary:]_block_invoke + 32
8   libdispatch.dylib               _dispatch_call_block_and_release + 24
9   libdispatch.dylib               _dispatch_client_callout + 16
10  libdispatch.dylib               _dispatch_root_queue_drain + 644
11  libdispatch.dylib               _dispatch_worker_thread2 + 112
12  libsystem_pthread.dylib         _pthread_wqthread + 212

Pthread id: 437243
Thread 42:
0   libsystem_kernel.dylib          __workq_kernreturn + 8
1   libsystem_pthread.dylib         _pthread_wqthread + 348

Pthread id: 437248
Thread 43:
0   libsystem_kernel.dylib          __workq_kernreturn + 8
1   libsystem_pthread.dylib         _pthread_wqthread + 348

Pthread id: 437252
Thread 44:
0   libsystem_kernel.dylib          __workq_kernreturn + 8
1   libsystem_pthread.dylib         _pthread_wqthread + 348

Pthread id: 437254
Thread 45:
0   libsystem_kernel.dylib          __semwait_signal + 8
1   libsystem_c.dylib               nanosleep + 212
2   Foundation                      +[NSThread sleepForTimeInterval:] + 152
3   qcs.r                           -[ATGPSEmulator locationThreadEntryMethod] + 520
4   Foundation                      __NSThread__start__ + 848
5   libsystem_pthread.dylib         _pthread_start + 288

Pthread id: 436955
Thread 46:

Pthread id: 437385
Thread 47:
0   libsystem_kernel.dylib          mach_msg_trap + 8
1   libsystem_kernel.dylib          mach_msg + 72
2   libEmbeddedSystemAUs.dylib      void* caulk::thread_proxy<std::__1::tuple<caulk::thread::attributes, AURemoteIO::IOThread::IOThread(AURemoteIO&, caulk::thread::attributes const&, caulk::mach::os_workgroup const&)::'lambda'(), std::__1::tuple<> > >(void*) + 576
3   libsystem_pthread.dylib         _pthread_start + 288

Thread 41 crashed with ARM-64 Thread State:
  cpsr: 0x0000000020000000     fp: 0x000000016cfe29f0     lr: 0x0000000105204db4     pc: 0x00000001af4cc524 
    sp: 0x000000016cfe29b0     x0: 0x000000010b580c28     x1: 0x0000000000000001    x10: 0x00000000d65f03c0 
   x11: 0x01ff00010ead6000    x12: 0x00000000000001f1    x13: 0x000000010ead7f00    x14: 0xfffffffeeff84600 
   x15: 0x000000010882d940    x16: 0x00000001af4bb1cc    x17: 0x00000000a7c959f0    x18: 0x0000000000000000 
   x19: 0x000000016cfe2aa8     x2: 0x0000000000000000    x20: 0x00000001e68ec071    x21: 0x000000010b580c28 
   x22: 0x0000000000000001    x23: 0x0000000281543da0    x24: 0x00000001af4b89c0    x25: 0x00000001e6b38ff1 
   x26: 0x000000010876c000    x27: 0x00000001e62a0be1    x28: 0x00000001e6264cb4    x29: 0x000000016cfe29f0 
    x3: 0x0000000000000001     x4: 0x0000000000000051     x5: 0x000000000000004d     x6: 0x0000000000000000 
    x7: 0x0000000000000000     x8: 0x52800000d65f03d8     x9: 0x52800000d65f03c0 

Binary Images:
       0x104cf4000 -        0x107f83fff +qcs.r arm64  <0b0feadd72a93d9882f118a4ec8e00f9> /private/var/containers/Bundle/Application/33682A28-78BE-4DA7-99F2-6A1EBA660D20/qcs.r.app/qcs.r
       0x10a25c000 -        0x10ad1bfff  App arm64  <6f77db921b2d3cbda4cffa6ae0e05328> /private/var/containers/Bundle/Application/33682A28-78BE-4DA7-99F2-6A1EBA660D20/qcs.r.app/Frameworks/App.framework/App
       0x10aed8000 -        0x10b543fff  Flutter arm64  <7c7365d0f6b43ac781c3122ac842530a> /private/var/containers/Bundle/Application/33682A28-78BE-4DA7-99F2-6A1EBA660D20/qcs.r.app/Frameworks/Flutter.framework/Flutter
       0x10db6c000 -        0x10db77fff  libobjc-trampolines.dylib arm64  <80646a348ec63d15a5642731a0a01eaa> /usr/lib/libobjc-trampolines.dylib
       0x19ad11000 -        0x19ad8ffff  libdispatch.dylib arm64  <af27e74cbe4a3364bb27aed9916ce02d> /usr/lib/system/libdispatch.dylib
       0x19ad90000 -        0x19adc6fff  libdyld.dylib arm64  <0b475c783c123121b7f82b95b83daf44> /usr/lib/system/libdyld.dylib
       0x19adc7000 -        0x19b01efff  libicucore.A.dylib arm64  <92f2f395bfe9387994a8c015489a3af4> /usr/lib/libicucore.A.dylib
       0x19b01f000 -        0x19b3c8fff  CoreFoundation arm64  <f3021642e3c033f89911dd303a6056d0> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x19b3c9000 -        0x19b563fff  CoreServices arm64  <21cf36fcc45436728228b93d58ff00c8> /System/Library/Frameworks/CoreServices.framework/CoreServices
       0x19b564000 -        0x19b5acfff  WirelessDiagnostics arm64  <c87b712e032536f9aabd356ce0854bf5> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x19b5ad000 -        0x19b626fff  SystemConfiguration arm64  <25b9e2ed36593ef487cf2e7a3270883f> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x19b627000 -        0x19b711fff  CoreTelephony arm64  <2c92b898bf6a397eab4d409588151ca4> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x19b712000 -        0x19bb93fff  CFNetwork arm64  <9d46b4f5cd9e31edba2d28f8bdc5e810> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x19bb94000 -        0x19c259fff  libnetwork.dylib arm64  <bfa95fff721f35b3aff7a1e3aeea068b> /usr/lib/libnetwork.dylib
       0x19c25a000 -        0x19c2cafff  Accounts arm64  <1e2fba4c0dc03f4d89338072bfe04f16> /System/Library/Frameworks/Accounts.framework/Accounts
       0x19c2cb000 -        0x19c565fff  Foundation arm64  <712a564e50583eacaf3a43bbd43d0d7e> /System/Library/Frameworks/Foundation.framework/Foundation
       0x19c566000 -        0x19c8ccfff  ImageIO arm64  <7517393d394b3426a85f09eff1764832> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x19c8cd000 -        0x19c8e5fff  libCGInterfaces.dylib arm64  <940a76a4a65032709a1c714594adb838> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x19c8e6000 -        0x19ce75fff  CoreGraphics arm64  <57b3d61e4cd130dfb7b476d1ac5c4a16> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x19ce76000 -        0x19e23ffff  UIKitCore arm64  <cc6e5ac7824835f68b422e25c93dcf0a> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
       0x19e240000 -        0x19e25dfff  libAccessibility.dylib arm64  <62a9b592f12437b5b040338f4d6e54a7> /usr/lib/libAccessibility.dylib
       0x19e25e000 -        0x19e4d3fff  QuartzCore arm64  <461501dd204f35169f5dbdd0ba19fda1> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x19e4d4000 -        0x19e539fff  BackBoardServices arm64  <ede04d70146a375ab026b0de23c64900> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x19e53a000 -        0x19e5c1fff  TextInput arm64  <e039c6aadcf7351892c13176eae7626e> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x19e5c2000 -        0x19e629fff  libusrtcp.dylib arm64  <de34363495cf339c808d3d6a9c0c6fff> /usr/lib/libusrtcp.dylib
       0x19e62a000 -        0x19e9c9fff  AppleMediaServices arm64  <8bdaee10df1f3b50ac4017ccd82da9f5> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
       0x19eede000 -        0x19eef5fff  UIKitServices arm64  <cbf3581d49eb30c094cc56467af4e402> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
       0x19eef6000 -        0x19f040fff  Preferences arm64  <fb3b30abc4953fe6b1fe7269e67279e0> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
       0x19f041000 -        0x19f24ffff  ContactsUI arm64  <561b262943d73be299fc8eb069783183> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x19f250000 -        0x19f409fff  CoreText arm64  <6655bf5d06f232b2bf2356e7208c415d> /System/Library/Frameworks/CoreText.framework/CoreText
       0x19f40a000 -        0x19f423fff  ExtensionKit arm64  <68e3b55e8dae34f6bdf03f6e5bddbb28> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
       0x19f438000 -        0x19f4b5fff  BaseBoard arm64  <835e9ff531943e978e9aa0d159f2f547> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x19f4b6000 -        0x19f6cbfff  CoreDuet arm64  <747f915812903af3b819f7b83a49798b> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x19f6cc000 -        0x19f817fff  Contacts arm64  <ccf0dc813dcf33cd9ac9734d165e26d7> /System/Library/Frameworks/Contacts.framework/Contacts
       0x19f818000 -        0x1a0c89fff  GeoServices arm64  <2d9af4d7d362343a9293c51aa460338a> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x1a0c8a000 -        0x1a0d1cfff  CoreLocation arm64  <45cea69167423034a070baf95767f548> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x1a0d1d000 -        0x1a0eb9fff  CloudKit arm64  <515356c956e1384ea39b0c01b5d0bee4> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x1a0eba000 -        0x1a1222fff  CoreData arm64  <418ea9f61e9b3dd4bb1737c8fc35365a> /System/Library/Frameworks/CoreData.framework/CoreData
       0x1a1e1d000 -        0x1a1e5bfff  AppSupport arm64  <1b30489e0af63febb04b645b0f9e60b4> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x1a1e5c000 -        0x1a1f79fff  ManagedConfiguration arm64  <631f9e9983a53c21be7af91099ef8b80> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x1a1f7a000 -        0x1a1fe6fff  IMFoundation arm64  <9f009545d7a23a63b7ed3a11120266eb> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x1a1fe7000 -        0x1a20e9fff  IDS arm64  <b7325747e4e2341f9afff0fc2b645584> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x1a20ea000 -        0x1a2228fff  Security arm64  <8a534c875a613c3182a1a9a0a302a205> /System/Library/Frameworks/Security.framework/Security
       0x1a2229000 -        0x1a2626fff  MediaPlayer arm64  <f6309cfae4cc38e9b85b7b7f96ca3a3d> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x1a2627000 -        0x1a263efff  AudioSession arm64  <a0ee017de0b93f0c83959361e8a2b1f2> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
       0x1a263f000 -        0x1a27b9fff  AVFCore arm64  <1a7ee7dd3f5b38ee9f6e091afae55d42> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
       0x1a27ba000 -        0x1a2d24fff  Intents arm64  <b90c3d75d6f8348b98ebf6c36e005438> /System/Library/Frameworks/Intents.framework/Intents
       0x1a2d25000 -        0x1a2d70fff  TextInputUI arm64  <0d4643d30d203e4ea01ec83b81d396a7> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
       0x1a2d71000 -        0x1a3070fff  CoreImage arm64  <0b613f10d8e33ccf97e4cc6c9c74c3a2> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x1a3071000 -        0x1a312bfff  ColorSync arm64  <e9bc0a8306a63d6f81605257fa33b69a> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x1a312c000 -        0x1a3164fff  CoreVideo arm64  <e26f74b884203134a417c900e4afd212> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x1a3165000 -        0x1a388afff  MediaToolbox arm64  <7f9b709ae3393200a588943837dede90> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x1a388b000 -        0x1a397dfff  CoreMedia arm64  <b4ac6b091d4934748d2806a8862da40a> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x1a397e000 -        0x1a3be9fff  AudioToolbox arm64  <7403032b46d63f9e838404339c7ef367> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x1a3bea000 -        0x1a3c39fff  CoreHaptics arm64  <e53f5a5f9f6337999d57c7c9471248f1> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
       0x1a3c97000 -        0x1a3d9afff  UIFoundation arm64  <95d74bf6d60f3d0b939af6b614e4ac3f> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x1a3d9b000 -        0x1a3dc0fff  libsystem_info.dylib arm64  <3d3b0c9a516331658eba2b97fa3e3090> /usr/lib/system/libsystem_info.dylib
       0x1a3dc1000 -        0x1a3e3dfff  libsystem_c.dylib arm64  <a07a482ae889392a8c66c328cf5320c9> /usr/lib/system/libsystem_c.dylib
       0x1a3e3e000 -        0x1a3e86fff  RunningBoardServices arm64  <ddd773981a773f39ac9cc36fa221d870> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
       0x1a3e87000 -        0x1a4f3bfff  JavaScriptCore arm64  <5bd82887c23e3e37b0f21f9bf23321f5> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x1a54d4000 -        0x1a5559fff  ContactsFoundation arm64  <df4fbe44f4113496a14fe399634d91b1> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x1a555a000 -        0x1a5787fff  HealthKit arm64  <f71bf5b3fabb316dbaa69d2ce625294f> /System/Library/Frameworks/HealthKit.framework/HealthKit
       0x1a5788000 -        0x1a57a9fff  ProactiveEventTracker arm64  <2dbdc4b0d2d2394b995e79a2330c6747> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x1a57aa000 -        0x1a57f4fff  Lexicon arm64  <eba3592c5d903cafa3ace5a726a75566> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
       0x1a585e000 -        0x1a58aafff  CoreDuetContext arm64  <5974c36a40953694baa36b8110d34414> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
       0x1a58ab000 -        0x1a5951fff  IOKit arm64  <ab855ed1eb833c9eb5de293735aba7e9> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x1a5952000 -        0x1a5961fff  DataMigration arm64  <552910a7ae173403ba35a59209aa3ee6> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x1a5962000 -        0x1a59bafff  SpringBoardServices arm64  <ab3e74131e2c3a22bf819dd981e92af7> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x1a59cd000 -        0x1a5c33fff  CoreMotion arm64  <a95bceffd01733c4aeeeeccb7b70343b> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x1a5c34000 -        0x1a5d6afff  EventKit arm64  <aa6c4c56721d354c9deb3dd66aafcbc0> /System/Library/Frameworks/EventKit.framework/EventKit
       0x1a628b000 -        0x1a6504fff  MediaRemote arm64  <e4aa2fb7ec183feda1303869684d6fa8> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x1a6505000 -        0x1a669dfff  CoreUtils arm64  <44a8e8eefc9638959c6f8feca7273b3c> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
       0x1a669e000 -        0x1a66b3fff  FamilyCircle arm64  <d1578ef150703dec8925e1e0ee330528> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
       0x1a66b4000 -        0x1a6720fff  CoreSpotlight arm64  <ba37870857b23498933918b8ad618b5d> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x1a6b06000 -        0x1a6c9efff  AssistantServices arm64  <a3df9f51ca773d24b2d7947e345f1422> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
       0x1a6c9f000 -        0x1a6d60fff  CoreUI arm64  <79ecf5d18f4a3c349f87d72dfbee8b84> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x1a6d61000 -        0x1a6daefff  SafariSafeBrowsing arm64  <05a29890a6be3e5ebd131e9be1ed183c> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
       0x1a6daf000 -        0x1a7761fff  WebKit arm64  <b30197febb3e30b08a364c2084a74719> /System/Library/Frameworks/WebKit.framework/WebKit
       0x1a7762000 -        0x1aa00afff  WebCore arm64  <c5adbb516bc738bbad0f4a09ed2a41ec> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x1aa00b000 -        0x1aa069fff  libMobileGestalt.dylib arm64  <7ccc7cb306dc3abfb86172ba8fe12175> /usr/lib/libMobileGestalt.dylib
       0x1aa06a000 -        0x1aa085fff  CommonUtilities arm64  <759200c8b57e3a46887bb474f4392784> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x1aa086000 -        0x1aa1ebfff  IDSFoundation arm64  <d3637b85a6dd31708dfc54c39c71d6f1> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x1aa2eb000 -        0x1aa38bfff  CoreSuggestions arm64  <4d4f41ccb6a639d9a7cdb5c70cb4bbf2> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
       0x1aa38c000 -        0x1aa425fff  AddressBookLegacy arm64  <349428ab796b32beb90f311cb47d3129> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
       0x1aa426000 -        0x1aa456fff  UserNotifications arm64  <53727fddc6043fa08871a6697500970d> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x1aa457000 -        0x1aa4d8fff  FrontBoardServices arm64  <e42fbc3b619c32aba2104a25f8b5373f> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x1aa4d9000 -        0x1aa4fbfff  libsystem_malloc.dylib arm64  <8979fb06a3173c57afea2732627a08e5> /usr/lib/system/libsystem_malloc.dylib
       0x1aa4fc000 -        0x1aa7b5fff  MapKit arm64  <5511a251589931c681b0d1d0ca5e434b> /System/Library/Frameworks/MapKit.framework/MapKit
       0x1aa7b6000 -        0x1aaf83fff  VectorKit arm64  <eaacceea841e39efb900b5ec26b2ecb9> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
       0x1aaf84000 -        0x1ab00dfff  AuthKit arm64  <a9915ac1507c316ba1a3e34f758721f7> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x1ab00e000 -        0x1ab09cfff  AppleAccount arm64  <242996fac30b32e2b851b415c50d63ea> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x1ab09d000 -        0x1ab1a2fff  AVFAudio arm64  <b31e053142ae36e2814285398a9687ad> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x1ab1a3000 -        0x1ab402fff  AudioToolboxCore arm64  <c498629445da3d4da0651ae13ab9eba2> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
       0x1ab434000 -        0x1ab6cafff  StoreServices arm64  <3c259718d1b036ac8d8d917acf0cca0f> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x1ab842000 -        0x1ab8e2fff  ShareSheet arm64  <75bdaae974073dfb89d3d4e21253f4a5> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
       0x1ab8e3000 -        0x1ab9cafff  CoreParsec arm64  <2f24b25b4c45393a840775bdd3133dec> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
       0x1ab9cb000 -        0x1aba10fff  PhotoFoundation arm64  <e2155bb66bc3343585e3e12b63f83747> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
       0x1aba11000 -        0x1abc46fff  Photos arm64  <5ed9a661819d3e87a25ef3e3628b0fc2> /System/Library/Frameworks/Photos.framework/Photos
       0x1abc47000 -        0x1ac327fff  PhotoLibraryServices arm64  <56fcbd6bd7ad3a05a6b70b73929cdae2> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x1ac328000 -        0x1ac3dffff  AssetsLibraryServices arm64  <da456e0d967231ad8834e5bef3e7a08f> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x1ac3e0000 -        0x1ac42ffff  MobileBackup arm64  <dd231c1dd126340f9cca670f38dce8c8> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
       0x1ac430000 -        0x1ac443fff  MSUDataAccessor arm64  <7b35955407f6351c95226c24c1a941dd> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
       0x1ac444000 -        0x1ac469fff  MobileAsset arm64  <10e354c09e6b387ebece24aa36daa320> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x1ac46a000 -        0x1ac479fff  libsystem_networkextension.dylib arm64  <cbedb2f58d9d3daaa677620746c058bf> /usr/lib/system/libsystem_networkextension.dylib
       0x1ac47a000 -        0x1ac6b7fff  NetworkExtension arm64  <6f0b7bec69ad3e5dad05d06c24709f4c> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
       0x1ac6ec000 -        0x1acaadfff  CoreML arm64  <b6b01a27efc83e4db905e7915d3a3c05> /System/Library/Frameworks/CoreML.framework/CoreML
       0x1acaae000 -        0x1ad2d6fff  Espresso arm64  <4c74ae79125931afa8c7e612c471d344> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
       0x1ad2d7000 -        0x1ad3cffff  VideoToolbox arm64  <8bc9932004bb395695da4707de68cc3e> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x1ad3d0000 -        0x1ad419fff  OnBoardingKit arm64  <04a0704243503fed9c89b3b9f15a27c7> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
       0x1ad50d000 -        0x1ad51cfff  AXCoreUtilities arm64  <4e7719479e4b3a7ca1ad3e492d6a3c7a> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
       0x1ae35a000 -        0x1ae4c9fff  Montreal arm64  <1858d0f1ff7d36fdb57e8d3992e5e40d> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
       0x1ae4ca000 -        0x1ae5d6fff  LanguageModeling arm64  <1db8707b18983b48a0525e7e7049919f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x1ae5d7000 -        0x1ae5dffff  InternationalSupport arm64  <466a73016cc730a8a3980d37b563e281> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
       0x1ae5e0000 -        0x1ae81cfff  iTunesCloud arm64  <ec6e271ce2743b6592a6f1bda19c164b> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
       0x1ae967000 -        0x1aea09fff  CalendarDatabase arm64  <ad233efa69373d4c960ebfa568339167> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x1aea0a000 -        0x1aea52fff  Notes arm64  <75209d6a457c3ba9be9716b2b685c9e8> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x1aeca3000 -        0x1aecb4fff  UniformTypeIdentifiers arm64  <0d4ae481279b38be9efccc4c01ed8c00> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
       0x1aecb5000 -        0x1aed31fff  CloudDocs arm64  <0bd19be9432e3a83b3cc75747cfb333d> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
       0x1aed32000 -        0x1aef21fff  Message arm64  <77d0f2f5d5c031b79cd53e59916d2854> /System/Library/PrivateFrameworks/Message.framework/Message
       0x1aef22000 -        0x1aef99fff  EmailFoundation arm64  <3546fff2f77b30dca3424e02c6c415ac> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
       0x1af21c000 -        0x1af257fff  MediaServices arm64  <7c9e21e5fee53a9c83f0833e36eb5500> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x1af258000 -        0x1af3e1fff  SearchFoundation arm64  <e8da530a718732f8a155277f5030dbdf> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
       0x1af4b6000 -        0x1af4ebfff  libobjc.A.dylib arm64  <316491e870633cd0993b96f8b8ac54d4> /usr/lib/libobjc.A.dylib
       0x1af4ec000 -        0x1af54bfff  LoggingSupport arm64  <23a8ad01b41e3766a91c8f85fb233a99> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
       0x1af54c000 -        0x1af5a5fff  libc++.1.dylib arm64  <0be75e2f3ed538c2839715f168ce0a24> /usr/lib/libc++.1.dylib
       0x1af5a6000 -        0x1af5befff  libc++abi.dylib arm64  <d5ca7f692cc13501aff22b5e6b74668e> /usr/lib/libc++abi.dylib
       0x1af5bf000 -        0x1af5fdfff  SetupAssistant arm64  <9bc49587dfbe3af790bd37aa297aef49> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
       0x1af5fe000 -        0x1af617fff  OctagonTrust arm64  <aff408e5aaa83193adae04e8dad631d7> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
       0x1af730000 -        0x1af770fff  CoreAutoLayout arm64  <011f5ca5d31b3cdc83c2c7cb66064075> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
       0x1af771000 -        0x1af8c9fff  Network arm64  <f3cce4bd736d3a908705dc657249a3a9> /System/Library/Frameworks/Network.framework/Network
       0x1af8ca000 -        0x1af8fefff  MobileKeyBag arm64  <dc6e0009179231fd818209dd2b7d2309> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x1afb26000 -        0x1afb39fff  BaseBoardUI arm64  <a36ec87444ca309785a683fb2bd00c1f> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
       0x1afb3a000 -        0x1afbd4fff  libvDSP.dylib arm64  <97ce479c5c9337f7a5deb208f15bb80a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x1afbd5000 -        0x1afc07fff  libAudioToolboxUtility.dylib arm64  <8913e5a358c93ad2a8ed30f32ef60ff1> /usr/lib/libAudioToolboxUtility.dylib
       0x1afdc3000 -        0x1afe4bfff  CoreNLP arm64  <f87509aa92fc3814911285cfd89abd2b> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x1afe4c000 -        0x1aff58fff  FileProvider arm64  <9fca752e2e8f3a52bef865acd263d21c> /System/Library/Frameworks/FileProvider.framework/FileProvider
       0x1aff59000 -        0x1aff69fff  BiomeStorage arm64  <2c59bbf36ec13d5d8c9648385ddb2551> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
       0x1aff81000 -        0x1affb6fff  DataDetectorsCore arm64  <3ee31e3c1bfa341999523dabd62c2c8b> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x1affb7000 -        0x1b0042fff  Symbolication arm64  <ce4e42651b1d3069b44c65ef4a7681c7> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
       0x1b0043000 -        0x1b0060fff  CrashReporterSupport arm64  <66920d9e89183f7f95f83ec09fe19b17> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x1b01ba000 -        0x1b03a1fff  MPSNeuralNetwork arm64  <2ddb7920ccce3fa89ab61e0604cfe34a> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
       0x1b03a2000 -        0x1b03f5fff  MPSCore arm64  <0288a499f1c93e2da2c0eab4895596be> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
       0x1b0548000 -        0x1b05b0fff  CalendarFoundation arm64  <b5b7223fd5a8366590b6c297b587fbb6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x1b060f000 -        0x1b06fcfff  NLP arm64  <71486dbf3d053dbca7e02a91d351f6b2> /System/Library/PrivateFrameworks/NLP.framework/NLP
       0x1b06fd000 -        0x1b0724fff  AppSupportUI arm64  <d7297aca15c4322092624857a59102f1> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
       0x1b072d000 -        0x1b0780fff  FTServices arm64  <768b840106d13ed694d29b4f01fd054a> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x1b0781000 -        0x1b082dfff  libboringssl.dylib arm64  <b0aebbb9a3823b7a8385ff81e39d30b9> /usr/lib/libboringssl.dylib
       0x1b082e000 -        0x1b0844fff  ProtocolBuffer arm64  <2e5031f669533959b8d9033f1b73109f> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x1b0845000 -        0x1b0947fff  AVKit arm64  <19a8e08aeb193af6a88f504dabdd57a2> /System/Library/Frameworks/AVKit.framework/AVKit
       0x1b0aab000 -        0x1b0ab9fff  AssertionServices arm64  <d9ae3f1476a6308dbe748d10877867bc> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x1b0aba000 -        0x1b0ae1fff  CloudServices arm64  <e33da063feb436ba9113527263f1e1f5> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
       0x1b0b34000 -        0x1b0c0dfff  Metal arm64  <41df550eaeb23ad28370a0e6d8e51186> /System/Library/Frameworks/Metal.framework/Metal
       0x1b0c0e000 -        0x1b0d46fff  MediaExperience arm64  <2734505d74c530b7ab63f2a51113827b> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
       0x1b1145000 -        0x1b115bfff  libsystem_trace.dylib arm64  <3b5f5d25a59c3d7e90bef8d6481d1ca9> /usr/lib/system/libsystem_trace.dylib
       0x1b115c000 -        0x1b118cfff  CoreServicesInternal arm64  <0219058001383d699625491e9d0270b4> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x1b118d000 -        0x1b11f0fff  SafariCore arm64  <b1b6d0aa362b3252b31551ab1831b499> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
       0x1b1417000 -        0x1b14adfff  AppStoreDaemon arm64  <6e5c3e0af207333198f464164a324fd0> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
       0x1b1897000 -        0x1b18dcfff  ContactsAutocompleteUI arm64  <486e3635c5713fd2a149f377a0a9cc00> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
       0x1b18dd000 -        0x1b1a0ffff  MessageUI arm64  <77d47332e80a3eb8bd40aa0b8f52e711> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x1b1d36000 -        0x1b1dd0fff  SAObjects arm64  <8312f76344813d059317ac544b767429> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
       0x1b1dd1000 -        0x1b1e14fff  VoiceServices arm64  <848ad3c04fc9303c8b6dbb4bcd78017c> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
       0x1b1e15000 -        0x1b1e1dfff  GraphicsServices arm64  <cd6a7e8664ba3ae9883bde938bf72ddc> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x1b1fda000 -        0x1b1feefff  PowerLog arm64  <0abaa5ff17d53a0ca91cc0fcb1f80af4> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x1b1fef000 -        0x1b2016fff  DuetActivityScheduler arm64  <50c073e701a6369f875dd154ec5707ce> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
       0x1b36b2000 -        0x1b3952fff  Vision arm64  <a2709f110e1036d68f1f7caf9a5c817e> /System/Library/Frameworks/Vision.framework/Vision
       0x1b3953000 -        0x1b39acfff  DataAccess arm64  <6ca4ba1a2d0e31449c9dfd22e1fea0de> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x1b39ad000 -        0x1b3a17fff  ProactiveSupport arm64  <27fe1c6ca9ae33278e59fd7853deeb9b> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
       0x1b3a43000 -        0x1b3a60fff  ApplePushService arm64  <db969d5ef09f38f2b5efe6ea10b6f53d> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x1b3a61000 -        0x1b3a88fff  BoardServices arm64  <64149608191932deadb6334d43352aba> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
       0x1b3bd8000 -        0x1b3c07fff  libncurses.5.4.dylib arm64  <45c7427247ec38be8f88584d9c979828> /usr/lib/libncurses.5.4.dylib
       0x1b3c08000 -        0x1b3c55fff  OSAnalytics arm64  <06cdb58103b037bd9623f2788c93bec0> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
       0x1b3c56000 -        0x1b3cb1fff  CoreBluetooth arm64  <069814f8d9f43907a038a13a0fa694dd> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x1b3e7f000 -        0x1b3ec2fff  TemplateKit arm64  <d363b30eaf8f34e2a3b700730971b36b> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
       0x1b3ec3000 -        0x1b3ef5fff  MobileInstallation arm64  <ffbf6a24d93c374c95705163d9c10301> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
       0x1b3ef6000 -        0x1b3f84fff  libTelephonyUtilDynamic.dylib arm64  <d3ceb02492f5309fa5904898682cb14d> /usr/lib/libTelephonyUtilDynamic.dylib
       0x1b3f85000 -        0x1b3fedfff  NanoRegistry arm64  <bca7195fc86d3006bbf6267ed1daa1ab> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
       0x1b40c9000 -        0x1b40e6fff  CoreMaterial arm64  <9004dec242eb3daaa32e9c8a672e3a2d> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
       0x1b4157000 -        0x1b42d9fff  libsqlite3.dylib arm64  <b527dcac5745350191cf49fc9654e1a7> /usr/lib/libsqlite3.dylib
       0x1b42da000 -        0x1b4398fff  AVFCapture arm64  <083b23eb2dc83813817b6f1a40c9ec24> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
       0x1b4399000 -        0x1b46e1fff  CMCapture arm64  <bd2c0fd0b1f9374f9d592b5266446eff> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
       0x1b482c000 -        0x1b4a84fff  MobileSpotlightIndex arm64  <aedbc0ccc55c3cef8a03071deeacca89> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x1b4a85000 -        0x1b4b27fff  Email arm64  <54c455b2c42d3ed1adce65ab0587d99e> /System/Library/PrivateFrameworks/Email.framework/Email
       0x1b4e99000 -        0x1b4ea3fff  libsystem_notify.dylib arm64  <70ff494d1cc33fcabadd1c308d560be4> /usr/lib/system/libsystem_notify.dylib
       0x1b4ea4000 -        0x1b4ee6fff  CryptoTokenKit arm64  <6b436ed2f863383d8a9c0e092ad509c8> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
       0x1b4f4e000 -        0x1b4fc1fff  libcorecrypto.dylib arm64  <71eb44aa30653ab783db3c46f4579aba> /usr/lib/system/libcorecrypto.dylib
       0x1b4fc2000 -        0x1b4fe4fff  UserManagement arm64  <d39a0e5f367e3e589bfd2581a678151f> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x1b50b5000 -        0x1b50cbfff  libsystem_asl.dylib arm64  <727b6ce7a069389bbe9bbabaa54a6a80> /usr/lib/system/libsystem_asl.dylib
       0x1b50cc000 -        0x1b50eefff  AppSSO arm64  <8be5c97d5ddc358684222de20a42baaf> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
       0x1b50ef000 -        0x1b510cfff  SharedWebCredentials arm64  <90cb83eaa4a2348cb711928e8ddf3036> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
       0x1b5337000 -        0x1b536dfff  DataAccessExpress arm64  <844e2d8b48aa336f862d35d8ebafc52a> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x1b536e000 -        0x1b53a4fff  CoreServicesStore arm64  <3b63de3682393849a845078109be9bc8> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
       0x1b53a5000 -        0x1b53c9fff  CoreAnalytics arm64  <d100cc918f123448878ee0530486ea6e> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
       0x1b53ca000 -        0x1b53d5fff  SymptomAnalytics arm64  <f12bd910f3843b63a0b0fee4f62f157a> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
       0x1b55b1000 -        0x1b55c0fff  NanoPreferencesSync arm64  <35588eb093e033f28619db72e46b13fa> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
       0x1b5d81000 -        0x1b5dabfff  IconServices arm64  <6817ef4a91f0384a9ef1fb083e565d6f> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
       0x1b6808000 -        0x1b6aa3fff  vImage arm64  <959df3bb96723cd7b5f9fb93a5c7623e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x1b795a000 -        0x1b7971fff  IAP arm64  <fb869b32356d3e4e833cc3417f04ef3f> /System/Library/PrivateFrameworks/IAP.framework/IAP
       0x1b7972000 -        0x1b79c7fff  ktrace arm64  <be11e473ae0a3498bc8a896f919e03ff> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
       0x1b7cb0000 -        0x1b7cbdfff  Celestial arm64  <878660a5b83a39059539e45b73904dbd> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x1b7d62000 -        0x1b7da6fff  Pegasus arm64  <7c601315774a39099c2ccbd731dcf59c> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
       0x1b7da7000 -        0x1b7f2afff  WebKitLegacy arm64  <c376e15a66523294abee29906115d82f> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1b7f99000 -        0x1b800afff  ClassKit arm64  <4b7cbe895a353a239e026ca1c29da47d> /System/Library/Frameworks/ClassKit.framework/ClassKit
       0x1b800b000 -        0x1b804efff  StoreKit arm64  <581f5293fc4230ce9ad75645786ed5b0> /System/Library/Frameworks/StoreKit.framework/StoreKit
       0x1b8dcd000 -        0x1b8dd7fff  IOMobileFramebuffer arm64  <7b0b01095440339ea8627dce97bc123e> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x1b8ef1000 -        0x1b9065fff  CloudPhotoLibrary arm64  <4bfe87f452a63274b30299ab6c2df3d1> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x1b9066000 -        0x1b9329fff  MusicLibrary arm64  <a9a31928e6803e1d814bf53b14040e1d> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x1b932a000 -        0x1b938efff  CallKit arm64  <8bef8304d42131ff97c6e5335fe009da> /System/Library/Frameworks/CallKit.framework/CallKit
       0x1b942e000 -        0x1b944cfff  PrototypeTools arm64  <6c5b57c08ade33fdbeac79b4e6bfc7ca> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
       0x1b944d000 -        0x1b9478fff  PersistentConnection arm64  <c5618aedf8e03be188cb5a1a053668a1> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x1b9550000 -        0x1b9574fff  BiomeStreams arm64  <06e874ea41fc3f95bba708f51c9e83ae> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
       0x1b958f000 -        0x1b9831fff  PencilKit arm64  <7fae02eeed593542a2e4890a7be0f45e> /System/Library/Frameworks/PencilKit.framework/PencilKit
       0x1b9ea3000 -        0x1b9eb8fff  AppSSOCore arm64  <8f2c18db08b43f958ea38be752319a76> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
       0x1b9eb9000 -        0x1b9ec2fff  libMobileGestaltExtensions.dylib arm64  <4878bed000fb3e1681552e911ff0ea39> /usr/lib/libMobileGestaltExtensions.dylib
       0x1b9ec3000 -        0x1b9ed9fff  CoreFollowUp arm64  <85c0e813b8893365b8521e93e85225ba> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
       0x1b9eda000 -        0x1b9f4efff  Rapport arm64  <20a8df4a602e3447a7e7a891171115cb> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
       0x1ba2fd000 -        0x1ba324fff  LocationSupport arm64  <6cd5daba139e3ae29ce10ebeddabb1f6> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
       0x1ba325000 -        0x1ba357fff  iCalendar arm64  <c764fbd53b8b377fb21a89cfd69eeed6> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x1ba358000 -        0x1ba381fff  CoreAccessories arm64  <aac7f3b1ff073c1693188a35d1907f80> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
       0x1ba485000 -        0x1ba4affff  CacheDelete arm64  <c4f894fc98c53fd58eb6554cea94bea0> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x1ba4b0000 -        0x1ba529fff  CVNLP arm64  <7525d5da6e8d3e169405897b8e4103b8> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
       0x1ba671000 -        0x1ba673fff  OSAServicesClient arm64  <be6b47816dfb3c40a033940f9593bf4e> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
       0x1ba674000 -        0x1ba676fff  BiomeFoundation arm64  <25079b7b99843316ae2802923bd789a5> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
       0x1ba677000 -        0x1ba6cffff  ProtectedCloudStorage arm64  <fde7d5b9f4743fa3ba9f9acf1bb4e138> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x1ba6d0000 -        0x1ba706fff  C2 arm64  <39450f97cb1b3c4cb3dc1e20446c3c7f> /System/Library/PrivateFrameworks/C2.framework/C2
       0x1ba707000 -        0x1ba75bfff  DifferentialPrivacy arm64  <ffd9cd16cf883542afe7f441d44b2bdc> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
       0x1bb0ec000 -        0x1bb168fff  SiriInstrumentation arm64  <6e650b2079de34ab9718072a70070f56> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
       0x1bb169000 -        0x1bb1aafff  BiometricKit arm64  <3d8fb7ac1b9234af91fd4bbfc2ea1cd4> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
       0x1bb1ea000 -        0x1bb299fff  CoreSymbolication arm64  <c6ef8c41fc6f392f8fc82a529fc43c13> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
       0x1bb3f7000 -        0x1bb400fff  HearingCore arm64  <049b28f65d553e9abdc03864a4707daf> /System/Library/PrivateFrameworks/HearingCore.framework/HearingCore
       0x1bba19000 -        0x1bba1afff  MessageSupport arm64  <a186da3a12343865b445d121bc1240c6> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x1bba1b000 -        0x1bba2cfff  IOSurface arm64  <7fda963ffbea30cbb159fa2e6b31a4db> /System/Library/Frameworks/IOSurface.framework/IOSurface
       0x1bba2d000 -        0x1bba8dfff  MobileWiFi arm64  <103854cf9c3731678ef32bd552daf091> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x1bbe20000 -        0x1bbe3bfff  DoNotDisturb arm64  <91b040144cbf3198bfcdf2623d4ca3ea> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
       0x1bbea2000 -        0x1bbf48fff  MMCS arm64  <63ab94a66408359bbb6e0210a107c989> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x1bbfb8000 -        0x1bbff1fff  libGLImage.dylib arm64  <75799714ceba33b0bb27c252aad3bab5> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x1bbff2000 -        0x1bbff9fff  libsystem_symptoms.dylib arm64  <a8784ea9ecb939fabdac695877fc2b4b> /usr/lib/system/libsystem_symptoms.dylib
       0x1bc03f000 -        0x1bc5edfff  CoreAudio arm64  <fa62c18234d03964b331be7d6d1ccb66> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x1bc5ee000 -        0x1bc603fff  ContactsDonation arm64  <137ce321208e36f496f03f4880565687> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
       0x1bc604000 -        0x1bc621fff  IntentsCore arm64  <a2691f04578731abbd33b2432f00dbba> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
       0x1bc6c0000 -        0x1bc6f7fff  ImageCaptureCore arm64  <28f0c53baf1c3399bd89629848e3033a> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
       0x1bc84e000 -        0x1bc98dfff  Navigation arm64  <465a213174d13ba789c0c586fefd59a2> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
       0x1bc98e000 -        0x1bc9a9fff  SafariFoundation arm64  <a8ba11c22b2b37308ffedb77d6412553> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
       0x1bcb1f000 -        0x1bcb32fff  MaterialKit arm64  <7f839117aed9309ea953962e13dcd583> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
       0x1bcc98000 -        0x1bcca8fff  CoreAUC arm64  <771693f7b44e33849049097763f88231> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x1bce30000 -        0x1bd33efff  AudioCodecs arm64  <6fc86cd06a3031c7a899bde610130811> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
       0x1bd4bf000 -        0x1bd4cffff  SettingsFoundation arm64  <a313bc4b100a356ca9f4ce21342fdd22> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
       0x1bdbeb000 -        0x1bde29fff  RawCamera arm64  <62ca957502d0391686f710d6236faa24> /System/Library/CoreServices/RawCamera.bundle/RawCamera
       0x1bde91000 -        0x1bdeecfff  ToneLibrary arm64  <a0fa2392750034bcb79f7e336d9181e0> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
       0x1be6fa000 -        0x1be707fff  MediaSafetyNet arm64  <cd283425ee4c3211bcb52517201e51b4> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
       0x1be708000 -        0x1be743fff  TimeSync arm64  <f8d3ba933f1f332ba9dbf285d0570f31> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
       0x1be7d4000 -        0x1be816fff  ExposureNotification arm64  <2c02287b207b3c1fba903d6bdc1fdd5a> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
       0x1bee70000 -        0x1bee79fff  CoreTime arm64  <c52a0364da873cde8c749272eec9229f> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
       0x1bf7e8000 -        0x1bf8e4fff  TextRecognition arm64  <b0bfe6a7b64c31baa160cf479c3cbb5a> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
       0x1bf9f9000 -        0x1bfa02fff  ContextKitExtraction arm64  <b7440c0081233e78a888c8f18644d520> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
       0x1c0327000 -        0x1c038ffff  EmailCore arm64  <78620d54521534c499f8eaa97cb2f0de> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
       0x1c0c63000 -        0x1c0cadfff  MIME arm64  <6089d431584f356faa72624f0b7b6914> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x1c0f79000 -        0x1c0f8efff  MailServices arm64  <10fce77bbe213ac49e2de4235aa1174c> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x1c100a000 -        0x1c108bfff  CoreDAV arm64  <0cd9f84f3127366f853b1598a093b0a0> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x1c1259000 -        0x1c1267fff  MobileIcons arm64  <81d53e0ca7143cf9b0ce9b4c760e6e58> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
       0x1c1632000 -        0x1c1702fff  ProofReader arm64  <001f5e21684037deb2a45f4b93da1fb6> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x1c28c7000 -        0x1c28d1fff  MallocStackLogging arm64  <1e7b19595ad235ab8db3d24853f509d0> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
       0x1c2934000 -        0x1c2af2fff  EmailDaemon arm64  <5b5a4da8159b3cd2b876319e20d4081c> /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
       0x1c2af3000 -        0x1c2b3dfff  MetadataUtilities arm64  <cff738ccb48b3f9f8cb1b3e8ac54f670> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
       0x1c3085000 -        0x1c30b6fff  MailSupport arm64  <820beb291d4e33f7b17a929f1c3ceed6> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
       0x1c3205000 -        0x1c3261fff  CoreLocationProtobuf arm64  <f991f00c59a330a2b5cf85341dfcd1e0> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
       0x1c3466000 -        0x1c3498fff  Bom arm64  <f784f41ea458324a8993f2e22980b8d0> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x1c34cd000 -        0x1c34d3fff  PushKit arm64  <629d513afd1d39948e9baa7bef62158c> /System/Library/Frameworks/PushKit.framework/PushKit
       0x1c34d4000 -        0x1c353dfff  PhotosFormats arm64  <ef4afb529abb3d66802e206d6a3daf34> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x1c36c9000 -        0x1c375afff  Quagga arm64  <4bc295814b4d3775ab2f096a900a0170> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x1c375b000 -        0x1c3762fff  StudyLog arm64  <f3949f772ab633519faf861338e6a54e> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
       0x1c46a1000 -        0x1c46e0fff  NaturalLanguage arm64  <4a771e952dde31648e9ab27d7c8b4cc2> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
       0x1c4789000 -        0x1c4caffff  libAudioDSP.dylib arm64  <9c05138f06f03314893b42af8ab0d93a> /System/Library/Frameworks/AudioToolbox.framework/libAudioDSP.dylib
       0x1c4cb0000 -        0x1c4cbafff  AudioDataAnalysis arm64  <1fab3e1206453712b8a67ca00562a425> /System/Library/PrivateFrameworks/AudioDataAnalysis.framework/AudioDataAnalysis
       0x1c514f000 -        0x1c516cfff  MediaStream arm64  <d0661590c6c6325683b0bb2576cd100b> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x1c5d3d000 -        0x1c5d64fff  MediaConversionService arm64  <5db8a7243bba34738a66ca5798091e65> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
       0x1c5eb3000 -        0x1c5feffff  CoreHandwriting arm64  <5ea86d24cc6f3cf780aa1df6ff9e65a7> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
       0x1c6744000 -        0x1c674ffff  AppleIDAuthSupport arm64  <2a9bb26d66e233538e40004f17d7f566> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x1c675e000 -        0x1c6775fff  LocalAuthentication arm64  <3927c90dbfea3d4ea7b8abf9efeb9c0e> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
       0x1c6776000 -        0x1c677cfff  IOAccelerator arm64  <621e849c8e2c3c6db49982f3b41e651b> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x1c6b44000 -        0x1c6b4efff  CloudPhotoServices arm64  <4cc48da9e2163cecadfd7228af33799c> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x1c6fd3000 -        0x1c7003fff  libsystem_kernel.dylib arm64  <782e667e18a23b98b53dbfc9a4a701b7> /usr/lib/system/libsystem_kernel.dylib
       0x1c722d000 -        0x1c7334fff  ResponseKit arm64  <318164e5c0113eef913bae9a7dd3d180> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
       0x1c7335000 -        0x1c736dfff  EmojiFoundation arm64  <5ebea1c67d793a9ca76baace4b337113> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
       0x1c7960000 -        0x1c796cfff  FontServices arm64  <7509db1f15513bf0a08f26c1fdad7402> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x1c7b04000 -        0x1c7b0ffff  MediaAccessibility arm64  <15d00e0f9516358fac1cd9da9765c7d9> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x1c7b50000 -        0x1c811cfff  SiriTTS arm64  <b9f3838de9153c14a9fbddafcf110d99> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
       0x1c811d000 -        0x1c812bfff  SetupAssistantSupport arm64  <b0ddb02f39f03789bacf3da6034ad2f6> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
       0x1c8133000 -        0x1c8191fff  Social arm64  <389804e1d81930cdba63480199f3add5> /System/Library/Frameworks/Social.framework/Social
       0x1c8227000 -        0x1c8257fff  VirtualGarage arm64  <b9919a44fd0b38b0a0336715345d7afa> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
       0x1c8258000 -        0x1c827cfff  NetAppsUtilities arm64  <2d1f24c101963e838a0db8123b76bdd4> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
       0x1c970f000 -        0x1c971bfff  libdscsym.dylib arm64  <9f5db760c8853a44a97d4e914ff29b7c> /usr/lib/libdscsym.dylib
       0x1c971c000 -        0x1c972dfff  HangTracer arm64  <3d6174a975e235a7ac1b9f32c012fe6e> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x1c9864000 -        0x1c9877fff  PersonalAudio arm64  <cc8dd9916d203f3ead219b9a3fe5a8ba> /System/Library/PrivateFrameworks/PersonalAudio.framework/PersonalAudio
       0x1c98dd000 -        0x1c9995fff  SampleAnalysis arm64  <86be1bbba79f302db6e00b2331913fb2> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
       0x1c9996000 -        0x1c99c4fff  PlugInKit arm64  <f80231d13a083e069f6bb83c1c9b3547> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x1c9a6b000 -        0x1c9a6cfff  libSystem.B.dylib arm64  <e5f9db66e4b23356a77a85581fc5a53b> /usr/lib/libSystem.B.dylib
       0x1c9d6c000 -        0x1c9dc3fff  CalendarDaemon arm64  <e86ecc263cc239e8a782036383066e33> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x1c9eb3000 -        0x1c9f21fff  libarchive.2.dylib arm64  <18413d66784f300da3c4561400c71387> /usr/lib/libarchive.2.dylib
       0x1c9f22000 -        0x1c9f45fff  libtailspin.dylib arm64  <f3533d550d103fabb9b10eec7dfa4e05> /usr/lib/libtailspin.dylib
       0x1c9f46000 -        0x1ca36dfff  libBNNS.dylib arm64  <de119b9d804f31278cb31f7112bcb740> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1ca36e000 -        0x1ca3b0fff  SharedUtils arm64  <0768087abd883e2eb569b3c858ba4000> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
       0x1ca690000 -        0x1ca791fff  CoreMediaStream arm64  <97c1201e38a4331c804329e00bdc540c> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x1ca995000 -        0x1ca995fff  AVFoundation arm64  <f8002ff211d03465b45f1fc2987a29f5> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x1ca996000 -        0x1ca996fff  Accelerate arm64  <bde1920e04663330981925f223384639> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x1ca997000 -        0x1caa46fff  libBLAS.dylib arm64  <a197cd4937c13706b68f671098eb8715> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x1caa47000 -        0x1cad59fff  libLAPACK.dylib arm64  <1d63ccdb56393c90b5becbbce6f34db2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x1cad5a000 -        0x1cad6efff  libLinearAlgebra.dylib arm64  <13329232954f3fe089cf6e1cdd5d543a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x1cad6f000 -        0x1cad73fff  libQuadrature.dylib arm64  <b77d93fee773384d9519b20a01b74c7d> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1cad74000 -        0x1cadd5fff  libSparse.dylib arm64  <a7788c2ef698326e95b4ca8c7948f9c7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
       0x1cadd6000 -        0x1cade7fff  libSparseBLAS.dylib arm64  <f34b469a7df53ae69ab88169d68e2a9a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x1cade8000 -        0x1cae41fff  libvMisc.dylib arm64  <8aec7afc1b8f3dcf9fee134ad2a3770e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x1cae42000 -        0x1cae42fff  vecLib arm64  <f355034bbf8a3c7fba37476c89a1c65a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x1cae47000 -        0x1cae47fff  AdSupport arm64  <18fa589fa8083e7586607bcff89dac75> /System/Library/Frameworks/AdSupport.framework/AdSupport
       0x1cae48000 -        0x1cae6ffff  AddressBook arm64  <ddab847c199a32c8a2c63ab867e172e7> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x1cae7c000 -        0x1cae8bfff  AssetsLibrary arm64  <8e92673340fb3b4687fd169bed00a829> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x1cae8c000 -        0x1caf9dfff  libEmbeddedSystemAUs.dylib arm64  <aafc514034c13719aa2872fa97daba12> /System/Library/Frameworks/AudioToolbox.framework/libEmbeddedSystemAUs.dylib
       0x1caf9e000 -        0x1cafb9fff  AuthenticationServices arm64  <049f89281df632318ab71525f7e6f5ac> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
       0x1cb642000 -        0x1cb659fff  ExternalAccessory arm64  <8d8ca6080d9f3813af1447b764d096a7> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
       0x1cb66d000 -        0x1cb695fff  GLKit arm64  <7edd301f53243b408eac27fd8eeea0ca> /System/Library/Frameworks/GLKit.framework/GLKit
       0x1cb696000 -        0x1cb6c3fff  GSS arm64  <fc457893cd623da4a622141e4eae22e1> /System/Library/Frameworks/GSS.framework/GSS
       0x1cb824000 -        0x1cb970fff  MLCompute arm64  <8ba25abc79f43458bc19aebb4d827148> /System/Library/Frameworks/MLCompute.framework/MLCompute
       0x1cb996000 -        0x1cb9aefff  MetalKit arm64  <9d23fe8a1af733ffa6f723aec3c82bae> /System/Library/Frameworks/MetalKit.framework/MetalKit
       0x1cb9af000 -        0x1cba34fff  MPSImage arm64  <64d5604db9853f08a4e98114f95e492b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
       0x1cba35000 -        0x1cba5bfff  MPSMatrix arm64  <65e3036d69383594b264f532509489e9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
       0x1cba5c000 -        0x1cba96fff  MPSNDArray arm64  <901774b8dc103b58806943c75ee787c9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
       0x1cba97000 -        0x1cbadffff  MPSRayIntersector arm64  <b6d08ff4b2be3807b2078a621bcdacbe> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
       0x1cbae0000 -        0x1cbae0fff  MetalPerformanceShaders arm64  <f6806faeb8cf3916a0378198ecdaa2ec> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x1cbe4f000 -        0x1cbe61fff  MetricKit arm64  <8811569d4c973b52997cb4fbbade1acb> /System/Library/Frameworks/MetricKit.framework/MetricKit
       0x1cbe62000 -        0x1cbe62fff  MobileCoreServices arm64  <bfa0b6c247133fb184f5de951ae3fbba> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x1cc986000 -        0x1cca4ffff  GLEngine arm64  <b8383e6ad6263173a22e22e425199916> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
       0x1cca50000 -        0x1cca58fff  OpenGLES arm64  <2d29ed359118362883d70bdf25a9e51e> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x1cca59000 -        0x1cca5afff  libCVMSPluginSupport.dylib arm64  <f66d35163e3e35c983ca87c4c8273fc9> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x1cca5b000 -        0x1cca61fff  libCoreFSCache.dylib arm64  <6cbb64ef7d82358bbd575e7a81b01d15> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x1cca62000 -        0x1cca67fff  libCoreVMClient.dylib arm64  <e44e37af31953c17a2a761afcb749a0d> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x1cca68000 -        0x1cca70fff  libGFXShared.dylib arm64  <4a8cb86b485d30d895b71b31037f27a9> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x1cca71000 -        0x1ccbd0fff  libGLProgrammability.dylib arm64  <2fe461438d70395b9aeebdb6cf678fae> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
       0x1ccc1d000 -        0x1cccdefff  PDFKit arm64  <501dc012823331a9bb7f692b87fdc1ee> /System/Library/Frameworks/PDFKit.framework/PDFKit
       0x1ccced000 -        0x1ccd28fff  QuickLookThumbnailing arm64  <6d444c79b7a23bde9a1dea12ce37059f> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
       0x1ccf5f000 -        0x1ccf8cfff  ReplayKit arm64  <a949d8b8a74d3a10ac51e5c0e83ff5ca> /System/Library/Frameworks/ReplayKit.framework/ReplayKit
       0x1cd618000 -        0x1cd618fff  UIKit arm64  <47bbaf689ec535c19be50cff5e4c117a> /System/Library/Frameworks/UIKit.framework/UIKit
       0x1cd6e7000 -        0x1ce2bdfff  libfaceCore.dylib arm64  <f2bcda7a1fbf344ba00ef4435eb0b0f2> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
       0x1ce2d8000 -        0x1ce2d8fff  VisionKit arm64  <869640e1565d389b8d9043facf1df947> /System/Library/Frameworks/VisionKit.framework/VisionKit
       0x1ce7fb000 -        0x1ce7fefff  AFKUser arm64  <7d097be2f1903de8bc8a1232e31fe72e> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
       0x1ce8be000 -        0x1ceb3dfff  ANECompiler arm64  <537d2cd0f1493152b7fbf3543a3f149d> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
       0x1ceb3e000 -        0x1ceb51fff  ANEServices arm64  <f5d90acd9dd93dd0b83d866123302eae> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
       0x1ceb56000 -        0x1cec12fff  APFS arm64  <40d24862c7d53be8add0ccd931a09d8d> /System/Library/PrivateFrameworks/APFS.framework/APFS
       0x1cec13000 -        0x1cec19fff  ASEProcessing arm64  <14daea38c3cb3811aef5705c535f6ead> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
       0x1cf404000 -        0x1cf409fff  AggregateDictionary arm64  <160d27e0b8bf392890d79964209c1598> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x1cf592000 -        0x1cf66bfff  AirPlaySync arm64  <19e9b2db396d33acaa0b7e41d566281f> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
       0x1cf772000 -        0x1cf78dfff  AlgosScoreFramework arm64  <87b80542e8c035aa96fcc05e0d823f54> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
       0x1cf8b2000 -        0x1cfa32fff  AppC3D arm64  <c8693892a62e33bbbda152f59d1902aa> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
       0x1cfa33000 -        0x1cfa54fff  AppConduit arm64  <48909dbef5db3cdaac09f001a737bd6a> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
       0x1cfb4b000 -        0x1cfb55fff  AppStoreOverlays arm64  <08dee68335c63cbc94469b07daef9618> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
       0x1d0bf0000 -        0x1d0bfffff  AppleFSCompression arm64  <66fd9b986a0f35a89548af635d08f82e> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x1d0c0c000 -        0x1d0c19fff  AppleIDSSOAuthentication arm64  <7ee049db1242364c90efb23250268da9> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x1d0c1a000 -        0x1d0c5efff  AppleJPEG arm64  <0ba0b8a9a23334f5b0826e2d3aba1a73> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x1d0cdf000 -        0x1d0cf3fff  AppleNeuralEngine arm64  <01c6a71b88763f18884d2f42eb782349> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
       0x1d0cfd000 -        0x1d0d20fff  AppleSauce arm64  <b9f5e84ad67b34f296e5e0600c6f1b68> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
       0x1d0d4f000 -        0x1d0d6cfff  AssetCacheServices arm64  <630a6ff780573e37b1c40b49bff75eb1> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x1d0ecb000 -        0x1d0f27fff  AuthKitUI arm64  <c5077f2582fa3e449efdefa2883b51d2> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
       0x1d0fb6000 -        0x1d0fcefff  BiomePubSub arm64  <668e723cb354396e8f3612d0c18540ed> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
       0x1d126c000 -        0x1d127bfff  BluetoothManager arm64  <bdd5938989a73c77be07990f80e2815b> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
       0x1d1509000 -        0x1d1513fff  CMCaptureCore arm64  <4d06b990b5b03e7cad76affda59f88c8> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
       0x1d1514000 -        0x1d152afff  CPAnalytics arm64  <06b137a7a4593f86950664f3047e56fb> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
       0x1d152d000 -        0x1d153cfff  CPMS arm64  <67f02bba4ea830908e4da26d63a0e2e1> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
       0x1d153d000 -        0x1d154cfff  CTCarrierSpace arm64  <855dc5e94a0a3d4fbe5c03f7cf05819f> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
       0x1d1850000 -        0x1d185bfff  CaptiveNetwork arm64  <c8de13a5aee7337e9428da1ec3d628ee> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x1d19d6000 -        0x1d19f7fff  CellularPlanManager arm64  <0d28ad67792931c481a9764a4bfa7c10> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
       0x1d1a10000 -        0x1d1a18fff  CertUI arm64  <ad753a0d62093a27855c858780a9699b> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x1d1a21000 -        0x1d1a6ffff  ChunkingLibrary arm64  <ab2bc3e0369c3774a0428430e906ea3a> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x1d1e4c000 -        0x1d1e53fff  CommonAuth arm64  <2ee0f13c405d3e97ad85aea1ab3f8ede> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
       0x1d1e54000 -        0x1d1e58fff  CommunicationsFilter arm64  <80ab757b9f723e999b0678da61fe1807> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1d1f28000 -        0x1d1f2bfff  ConstantClasses arm64  <1f00f281b08c30d6992cf2ee62aa8436> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x1d1f35000 -        0x1d1f72fff  ContactsAutocomplete arm64  <c421cfbeb04739fb9eb488097369d714> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x1d1f78000 -        0x1d1fecfff  ContactsUICore arm64  <378f6625facc3756896d636a8728d8c5> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1d2167000 -        0x1d225bfff  CoreBrightness arm64  <2532db24c7ab363184c06139be8c4221> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x1d22c5000 -        0x1d22d4fff  CoreDuetDaemonProtocol arm64  <59a2e9bb08353105a9b7b9a10dae962c> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x1d22d7000 -        0x1d22d9fff  CoreDuetDebugLogging arm64  <98e92a87390133ef9e58de5ceea05f6b> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x1d22e8000 -        0x1d22fafff  CoreEmoji arm64  <b4e09d4d1f2d307d8f9040dd1d15b7a7> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1d28fd000 -        0x1d2901fff  CoreOptimization arm64  <1dfee9caaf883e3e80e4e8d593e8af57> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
       0x1d2902000 -        0x1d29bbfff  CorePDF arm64  <f7eb54927f2d31f6a5c3f869d7d27d2e> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x1d29bc000 -        0x1d29c4fff  CorePhoneNumbers arm64  <3d0bf6c8aeed3a2f8a67ef6f007fd0f9> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
       0x1d29c5000 -        0x1d2a19fff  CorePrediction arm64  <89b6e7cb94883316b72966c3844346c9> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
       0x1d3319000 -        0x1d3323fff  CoreRecents arm64  <ff91dde1664a3f2fbf4d77e8919d1e77> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x1d33a4000 -        0x1d33ccfff  CoreSVG arm64  <5627aa5fc04b33b3964bd022911d935f> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
       0x1d358e000 -        0x1d3592fff  DAAPKit arm64  <a732da38fad53145b65edd18d6415d3d> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x1d35b0000 -        0x1d35bdfff  DCIMServices arm64  <92baf00a4ea63f95a951e790cbf3d588> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x1d35d4000 -        0x1d3610fff  DataDetectorsNaturalLanguage arm64  <dae18bb9f72f313ab0eaf2ebde31f6da> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
       0x1d3673000 -        0x1d36a0fff  DeviceIdentity arm64  <6d1af53e8b693e288468631fbd00b950> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
       0x1d3852000 -        0x1d391dfff  DocumentCamera arm64  <ac1d565588773a9197c477944b70116a> /System/Library/PrivateFrameworks/DocumentCamera.framework/DocumentCamera
       0x1d391e000 -        0x1d3958fff  DocumentManager arm64  <1771c51062f13f279ae6897e82c74e98> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
       0x1d3959000 -        0x1d3977fff  DocumentManagerCore arm64  <1fcbb774e3bf3f9aab928be0c8f8c0f7> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
       0x1d39fa000 -        0x1d39fcfff  DragUI arm64  <3cc91d51bb12388798d573a258a3fe62> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
       0x1d3a2b000 -        0x1d3a5bfff  EAP8021X arm64  <09e38332fc803a56a2d549515b513438> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x1d3a72000 -        0x1d3a7cfff  EmailAddressing arm64  <ef35f20d61cd3d949357999bebb09288> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
       0x1d3a8a000 -        0x1d3a9efff  Engram arm64  <4fc44ec8d76538a7975845ace2acb0f8> /System/Library/PrivateFrameworks/Engram.framework/Engram
       0x1d3bd7000 -        0x1d3bdefff  ExtensionFoundation arm64  <3ebbdfefbba9305281c1500985d40a31> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
       0x1d3d57000 -        0x1d3d5ffff  FSEvents arm64  <0c0bfe19fd703bbfa5eab789d4fdc324> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
       0x1d3d60000 -        0x1d3d7ffff  FTAWD arm64  <c0118c057b7f366da76de936b93e169b> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1d3d80000 -        0x1d3d83fff  FTClientServices arm64  <4386dd47da253189993f03ad9b926e74> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x1d3d84000 -        0x1d4196fff  FaceCore arm64  <a383e5cc791a35f79b37228880430bab> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x1d419f000 -        0x1d41a4fff  FeatureFlagsSupport arm64  <32727b32730c30ac9b1cc7c66a65d115> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
       0x1d433b000 -        0x1d4477fff  libFontParser.dylib arm64  <b73b77070b9c3e1e932130c80b2865c4> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x1d4478000 -        0x1d4480fff  libGSFont.dylib arm64  <2ef6a22edd0f3841b9231adb6238eaaa> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
       0x1d4481000 -        0x1d44befff  libGSFontCache.dylib arm64  <78f92f58984e330ab9e833f45e117a1a> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1d4521000 -        0x1d452efff  libhvf.dylib arm64  <043252185d81311bae37520f37b4c220> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
       0x1d4554000 -        0x1d456bfff  Futhark arm64  <a93084e4917432c8a1f5c54e8f18e99f> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
       0x1d50ba000 -        0x1d50bafff  libmetal_timestamp.dylib arm64  <0043ab06bbfd37e8a9638477dc4fbebd> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
       0x1d5198000 -        0x1d51b6fff  GenerationalStorage arm64  <4efd79617a053e558ec72998ce9f3b54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
       0x1d51b7000 -        0x1d51c4fff  GraphVisualizer arm64  <47e41fb3df39361780aa876f8c79992d> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
       0x1d51f1000 -        0x1d51fcfff  HID arm64  <0f1120a7a4eb3be6b5967fee586fe8df> /System/Library/PrivateFrameworks/HID.framework/HID
       0x1d5472000 -        0x1d54e2fff  Heimdal arm64  <fdccfc9db0d03f0f8f675964d4879102> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
       0x1d5853000 -        0x1d58cafff  HomeSharing arm64  <13c57dc7802d3b6f8b521d72949fd44a> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x1d5c29000 -        0x1d5c47fff  IOGPU arm64  <86cf905e07663916b47d4eb584a3ddbd> /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU
       0x1d5c49000 -        0x1d5c52fff  IOKitten arm64  <a897be5491b5328a8ce30733e7aae3b1> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
       0x1d5c53000 -        0x1d5c55fff  IOSurfaceAccelerator arm64  <53b6e7225abe3aed8c511498043e9a83> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x1d5c7e000 -        0x1d5c85fff  IdleTimerServices arm64  <635fedb6cdd53dbc982fe7874475a0a4> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
       0x1d5d51000 -        0x1d5d5dfff  IntentsFoundation arm64  <434df45e86903166b50db613ce4fc253> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x1d5d77000 -        0x1d5d7afff  InternationalTextSearch arm64  <f5f3c04464833759becb23a3c9017a2b> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
       0x1d5d7b000 -        0x1d5d97fff  IntlPreferences arm64  <c200865b4dab3fe1897f43b1a18a8e3e> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x1d5ff9000 -        0x1d5ffffff  LinguisticData arm64  <6df0f7029cf83ab78e2974667fa344bb> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
       0x1d604d000 -        0x1d6085fff  LocalAuthenticationPrivateUI arm64  <21c6f4c7dc7b38e49a4f2b9135b26663> /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
       0x1d6243000 -        0x1d6243fff  Marco arm64  <25e28d1a0ad03263b1430ae76108a01f> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x1d6531000 -        0x1d6848fff  MediaLibraryCore arm64  <eb1d5a70724531379c21628c4d0a16e8> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x1d6849000 -        0x1d68d8fff  MediaPlatform arm64  <90cb9e1048e034a48ecfff63ae5bd52a> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1d6cbb000 -        0x1d6d83fff  MetalTools arm64  <862bc9f3d56036708ba61f3e9968f691> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
       0x1d6e0e000 -        0x1d6e22fff  MobileBluetooth arm64  <b8a53279dc9b37b68bcdbf1a3b83a8d4> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
       0x1d6ea3000 -        0x1d6ea9fff  MobileSystemServices arm64  <750000f9b53b32aab0829926b3db8a72> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
       0x1d723c000 -        0x1d7242fff  Netrb arm64  <29c4389d7cfd34e5b99703cefcd9dcc0> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x1d72fe000 -        0x1d7317fff  NetworkStatistics arm64  <aa622e390c17326d809568719bae2e16> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
       0x1d73ce000 -        0x1d73d0fff  OAuth arm64  <902d7099e1003fe9b0ac841af5125001> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x1d73ef000 -        0x1d742ffff  OTSVG arm64  <d86e3d10ea8b398c9d4d3c1090ad4283> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
       0x1d7a3c000 -        0x1d7a64fff  Pasteboard arm64  <b1c5f78d24be3091bf6553489d59ca0a> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
       0x1d7a93000 -        0x1d7a9efff  PersonaKit arm64  <6d5252a8d94733f3a05f088b1b93a3e2> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x1d7a9f000 -        0x1d7aabfff  PersonaUI arm64  <5aebcdf6bd373520bebc5fd0b6891ae6> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
       0x1d7ae3000 -        0x1d7ae3fff  PhoneNumbers arm64  <033646e6657b384da25bb574ad670d33> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
       0x1d7ca7000 -        0x1d7ce5fff  PhotosImagingFoundation arm64  <ebdc24ea85c936fd8a419f2d97ea27ad> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
       0x1d7ce6000 -        0x1d7d31fff  PhysicsKit arm64  <e5dd8ff53ce6340387dda862db33072a> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x1d7de7000 -        0x1d7df2fff  PointerUIServices arm64  <52f228f35cfd393b8db1fe2dac17a76d> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
       0x1d925c000 -        0x1d9266fff  RTCReporting arm64  <0cd8532917a73d30829400c610178428> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
       0x1d9592000 -        0x1d95a3fff  RemoteTextInput arm64  <1ac5e291220c336dbe1334e563edb33c> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
       0x1d95a4000 -        0x1d9609fff  RemoteUI arm64  <6b4295b07a913ec394c30fb143ef2b68> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
       0x1d9640000 -        0x1d9644fff  RevealCore arm64  <a0d98468530d3d6082fa78608e0f65ac> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
       0x1dae5a000 -        0x1dae63fff  SignpostCollection arm64  <0c0d6de66e303f9eb166daccb6234d82> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
       0x1dae64000 -        0x1dae64fff  SignpostMetrics arm64  <fc1c6c2fe12e35b180c4b3d19254f5c8> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
       0x1dae66000 -        0x1daea5fff  SignpostSupport arm64  <8bed968fb1af3ababc53f1e70012017c> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
       0x1db8f5000 -        0x1db8f5fff  SoftLinking arm64  <c6f60c337d6a346887633bc0533fffe8> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
       0x1dbdde000 -        0x1dbe1bfff  StreamingZip arm64  <6fe0c0f46555332a9a757cc720fb19f2> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
       0x1dbe23000 -        0x1dbe2dfff  SymptomDiagnosticReporter arm64  <e9978768b054338e98036a6ae96fa632> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
       0x1dbe5d000 -        0x1dbe78fff  SymptomPresentationFeed arm64  <0a07c9952a7a3e4d9c84dedf7388a5ab> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
       0x1dbeb4000 -        0x1dbec3fff  TCC arm64  <0d0d2d7395a93c9a8b373fd5213a4599> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x1dc777000 -        0x1dc829fff  TextureIO arm64  <fcc0fb2034333a79a92eb71bf4e450c4> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x1dca44000 -        0x1dca4bfff  URLFormatting arm64  <b1f9795ed4533685b7adf32e1669c9c9> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
       0x1ddca7000 -        0x1ddca8fff  WatchdogClient arm64  <ad902dfa3b0534f89ac361090eb939f8> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
       0x1ddf6e000 -        0x1de697fff  libwebrtc.dylib arm64  <2f61036ba2c13fbdbf7a598219d01655> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
       0x1dec2f000 -        0x1dec32fff  XCTTargetBootstrap arm64  <9b53382f09623e469ec4309c770d8e9b> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
       0x1decb0000 -        0x1deccffff  caulk arm64  <29c23553b07138da822512e4c786fd0b> /System/Library/PrivateFrameworks/caulk.framework/caulk
       0x1e1106000 -        0x1e110bfff  kperf arm64  <a87b47b31c453edcbc06608aad4e1f2f> /System/Library/PrivateFrameworks/kperf.framework/kperf
       0x1e110c000 -        0x1e1114fff  kperfdata arm64  <29c8351426e8352286f38721ac110583> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
       0x1e1115000 -        0x1e112bfff  libEDR arm64  <248a440c345c371eb4d96cee0454c5ed> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
       0x1e1147000 -        0x1e1157fff  perfdata arm64  <6c420d6e89063f4d8b578abe010aadce> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
       0x1e1158000 -        0x1e1186fff  vCard arm64  <3c88448f18f53483875d27897aa1a0e5> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x1e1a72000 -        0x1e1aabfff  libAWDSupport.dylib arm64  <5d0c5a9028643e759ed595483b16d443> /usr/lib/libAWDSupport.dylib
       0x1e1aac000 -        0x1e1e5cfff  libAWDSupportFramework.dylib arm64  <82fe0396e3e434059c648b692002028f> /usr/lib/libAWDSupportFramework.dylib
       0x1e1fda000 -        0x1e1fe9fff  libAudioStatistics.dylib arm64  <4d9a4f00a6ea3b789692b1dc1daf0581> /usr/lib/libAudioStatistics.dylib
       0x1e218a000 -        0x1e21bcfff  libCRFSuite.dylib arm64  <9941a443e4f838ae8681ead891f70bcd> /usr/lib/libCRFSuite.dylib
       0x1e21bd000 -        0x1e21befff  libCTGreenTeaLogger.dylib arm64  <9704e9662824353db456ba507dbe2918> /usr/lib/libCTGreenTeaLogger.dylib
       0x1e21bf000 -        0x1e21c9fff  libChineseTokenizer.dylib arm64  <39db8a7343503bffabf6ab549ece9f36> /usr/lib/libChineseTokenizer.dylib
       0x1e2467000 -        0x1e246efff  libIOReport.dylib arm64  <745c23f071253c0786f2aab106092cc0> /usr/lib/libIOReport.dylib
       0x1e24e5000 -        0x1e24ecfff  libMatch.1.dylib arm64  <22c1f3bf3d613b67836be8fad9e315f1> /usr/lib/libMatch.1.dylib
       0x1e260b000 -        0x1e2610fff  libThaiTokenizer.dylib arm64  <cc481b9eba013ea79b077e09a5326728> /usr/lib/libThaiTokenizer.dylib
       0x1e287a000 -        0x1e287cfff  libapp_launch_measurement.dylib arm64  <2dfc3dd9565a3b978c47548f95b07930> /usr/lib/libapp_launch_measurement.dylib
       0x1e287d000 -        0x1e2893fff  libapple_nghttp2.dylib arm64  <5d86842d169c33a89224b69e440a3c3b> /usr/lib/libapple_nghttp2.dylib
       0x1e2894000 -        0x1e2925fff  libate.dylib arm64  <55c9e37f4ef53b538887395a557d66a2> /usr/lib/libate.dylib
       0x1e29b6000 -        0x1e29c6fff  libbsm.0.dylib arm64  <52fca02e09b9327aa20070b0aa390d6f> /usr/lib/libbsm.0.dylib
       0x1e29c7000 -        0x1e29d3fff  libbz2.1.0.dylib arm64  <a4bef41eaf2d3096b10e03543215e590> /usr/lib/libbz2.1.0.dylib
       0x1e29d4000 -        0x1e29d4fff  libcharset.1.dylib arm64  <d1407b956f813959adeb1916c10d0246> /usr/lib/libcharset.1.dylib
       0x1e29d5000 -        0x1e29e6fff  libcmph.dylib arm64  <cd8b8030074433459087efbcda7cf3c9> /usr/lib/libcmph.dylib
       0x1e29e7000 -        0x1e29fefff  libcompression.dylib arm64  <b1091ad13282317ab94c5f10b27bc38b> /usr/lib/libcompression.dylib
       0x1e29ff000 -        0x1e2a14fff  libcoretls.dylib arm64  <fd453c0f190235fa927f26074a321f94> /usr/lib/libcoretls.dylib
       0x1e2a15000 -        0x1e2a16fff  libcoretls_cfhelpers.dylib arm64  <e6a8fbb7cc9a3765b3d5d221473ec61b> /usr/lib/libcoretls_cfhelpers.dylib
       0x1e2a3a000 -        0x1e2a40fff  libcupolicy.dylib arm64  <c3a259ce6cd738ab8cb07006e453f368> /usr/lib/libcupolicy.dylib
       0x1e2a41000 -        0x1e2a48fff  libdns_services.dylib arm64  <5cc5a34dda1d386d942f3e0c6f2646a2> /usr/lib/libdns_services.dylib
       0x1e2a49000 -        0x1e2a65fff  libedit.3.dylib arm64  <272002fc1f6d3f378b34b0c563e21a7d> /usr/lib/libedit.3.dylib
       0x1e2a66000 -        0x1e2a66fff  libenergytrace.dylib arm64  <46735b4c5f63362d85a954ed4d7e2ec5> /usr/lib/libenergytrace.dylib
       0x1e2a67000 -        0x1e2a7efff  libexpat.1.dylib arm64  <12c25f34e3e23564a23d18c6e3436959> /usr/lib/libexpat.1.dylib
       0x1e2aab000 -        0x1e2aaffff  libgermantok.dylib arm64  <c9eb0c8a1ff83c4d8cd4cf4639dcefb2> /usr/lib/libgermantok.dylib
       0x1e2ab0000 -        0x1e2ab5fff  libheimdal-asn1.dylib arm64  <68eb7e8d5b5b3b699bb87be9bfcbfd73> /usr/lib/libheimdal-asn1.dylib
       0x1e2ab6000 -        0x1e2ba7fff  libiconv.2.dylib arm64  <fc828c3175243d09947fd18cc3e533dd> /usr/lib/libiconv.2.dylib
       0x1e2bc5000 -        0x1e2bc6fff  liblangid.dylib arm64  <489b3d68c72e3f548460346addb44ab9> /usr/lib/liblangid.dylib
       0x1e2bc7000 -        0x1e2bd2fff  liblockdown.dylib arm64  <6d709be7308d3b6cb53407f33f38cae9> /usr/lib/liblockdown.dylib
       0x1e2bd3000 -        0x1e2bebfff  liblzma.5.dylib arm64  <0b23d81e57c4385a9913f37227928f1f> /usr/lib/liblzma.5.dylib
       0x1e2c19000 -        0x1e2c6cfff  libmecab.dylib arm64  <6f0eca87b67d3174a210e4eb5cb07801> /usr/lib/libmecab.dylib
       0x1e2c6d000 -        0x1e2e95fff  libmecabra.dylib arm64  <9f81192c475b33aba75f2841e528d4e6> /usr/lib/libmecabra.dylib
       0x1e2e96000 -        0x1e2ea8fff  libmis.dylib arm64  <813ef02a17183c11a18754d6d6a9af8e> /usr/lib/libmis.dylib
       0x1e2ea9000 -        0x1e2ebefff  libnetworkextension.dylib arm64  <97a62716f2b33820a6e29a3594671e3a> /usr/lib/libnetworkextension.dylib
       0x1e325f000 -        0x1e3292fff  libpcap.A.dylib arm64  <01703bd2e1ec36b0abcd18525e2ef324> /usr/lib/libpcap.A.dylib
       0x1e3293000 -        0x1e32a0fff  libperfcheck.dylib arm64  <5dd71703dd22376f9dcbf6a7aadb9e3f> /usr/lib/libperfcheck.dylib
       0x1e32a8000 -        0x1e32b9fff  libprequelite.dylib arm64  <81b60574ae623d7b8171cebe82ca4714> /usr/lib/libprequelite.dylib
       0x1e32ba000 -        0x1e32cbfff  libprotobuf-lite.dylib arm64  <a527bca9c8bf3d5ba0c04a8ea7eb52c8> /usr/lib/libprotobuf-lite.dylib
       0x1e32cc000 -        0x1e332afff  libprotobuf.dylib arm64  <140a54c11a673b7aa770b96d6481a403> /usr/lib/libprotobuf.dylib
       0x1e332b000 -        0x1e3388fff  libquic.dylib arm64  <3c75f156fce737eab66410843a642f99> /usr/lib/libquic.dylib
       0x1e3389000 -        0x1e33a0fff  libresolv.9.dylib arm64  <9773b08718c33a99ac4b15845c8f298e> /usr/lib/libresolv.9.dylib
       0x1e33a1000 -        0x1e33a3fff  libsandbox.1.dylib arm64  <cdf2d744d04f39c28489f3d37dd3661c> /usr/lib/libsandbox.1.dylib
       0x1e33eb000 -        0x1e33eefff  libutil.dylib arm64  <70719b73b88237f4845bba0cfd47d0b8> /usr/lib/libutil.dylib
       0x1e33ef000 -        0x1e34d4fff  libxml2.2.dylib arm64  <9582604ace4f37ceaf1b82e09802c758> /usr/lib/libxml2.2.dylib
       0x1e34d9000 -        0x1e3501fff  libxslt.1.dylib arm64  <50ab823ed7d63688babe70cc279bf1ab> /usr/lib/libxslt.1.dylib
       0x1e3502000 -        0x1e3513fff  libz.1.dylib arm64  <b092ede41efe3c449945692ce1ae0330> /usr/lib/libz.1.dylib
       0x1e3548000 -        0x1e354afff  liblog_network.dylib arm64  <46f654a2418d3e6c9c79dce8770eaaf9> /usr/lib/log/liblog_network.dylib
       0x1e3740000 -        0x1e3745fff  libcache.dylib arm64  <30242f393dfc3ff0895dd44af38c0144> /usr/lib/system/libcache.dylib
       0x1e3746000 -        0x1e3752fff  libcommonCrypto.dylib arm64  <2a0ee79a584035948139f436f5a54a6f> /usr/lib/system/libcommonCrypto.dylib
       0x1e3753000 -        0x1e3757fff  libcompiler_rt.dylib arm64  <46cd45524d2f31e69b0254e7e576df05> /usr/lib/system/libcompiler_rt.dylib
       0x1e3758000 -        0x1e3760fff  libcopyfile.dylib arm64  <acb48771dc88397aa68a726bf75940db> /usr/lib/system/libcopyfile.dylib
       0x1e3846000 -        0x1e3846fff  liblaunch.dylib arm64  <ac7e574f727a3707a3324343b867bdd4> /usr/lib/system/liblaunch.dylib
       0x1e3847000 -        0x1e384cfff  libmacho.dylib arm64  <128a2b0392743d6ba667ad41272431df> /usr/lib/system/libmacho.dylib
       0x1e384d000 -        0x1e384ffff  libremovefile.dylib arm64  <183025eaf37f382a807c0f093eb64763> /usr/lib/system/libremovefile.dylib
       0x1e3850000 -        0x1e3851fff  libsystem_blocks.dylib arm64  <f56d3126f752364e9279c1ffefd4caa9> /usr/lib/system/libsystem_blocks.dylib
       0x1e3852000 -        0x1e3854fff  libsystem_collections.dylib arm64  <a40362865b223915805e584bdf7e0340> /usr/lib/system/libsystem_collections.dylib
       0x1e3855000 -        0x1e3859fff  libsystem_configuration.dylib arm64  <22243418a82c37ef8b87485b1729b7d4> /usr/lib/system/libsystem_configuration.dylib
       0x1e385a000 -        0x1e386cfff  libsystem_containermanager.dylib arm64  <10a4edbfecdd36f7ae8f29014d50852c> /usr/lib/system/libsystem_containermanager.dylib
       0x1e386d000 -        0x1e386efff  libsystem_coreservices.dylib arm64  <773e2e00690533499d66a10059933ded> /usr/lib/system/libsystem_coreservices.dylib
       0x1e386f000 -        0x1e3878fff  libsystem_darwin.dylib arm64  <a453301a5572313fac30531deae896f8> /usr/lib/system/libsystem_darwin.dylib
       0x1e3879000 -        0x1e3881fff  libsystem_dnssd.dylib arm64  <f18dcdedb893302eb8bb71c8a42741cc> /usr/lib/system/libsystem_dnssd.dylib
       0x1e3882000 -        0x1e3884fff  libsystem_featureflags.dylib arm64  <d00a671cf5623df68441f169da31255b> /usr/lib/system/libsystem_featureflags.dylib
       0x1e3885000 -        0x1e38b2fff  libsystem_m.dylib arm64  <47a923f776ad3214bc1f34051c03b2ee> /usr/lib/system/libsystem_m.dylib
       0x1e38b3000 -        0x1e38bdfff  libsystem_platform.dylib arm64  <3a71914ac2a73514b519df319e7a6e02> /usr/lib/system/libsystem_platform.dylib
       0x1e38be000 -        0x1e38befff  libsystem_product_info_filter.dylib arm64  <2e2a22f0761b3e62b35376926358512e> /usr/lib/system/libsystem_product_info_filter.dylib
       0x1e38bf000 -        0x1e38cefff  libsystem_pthread.dylib arm64  <cd2075ff948b313a8a02e2ad1e676a74> /usr/lib/system/libsystem_pthread.dylib
       0x1e38cf000 -        0x1e38d2fff  libsystem_sandbox.dylib arm64  <638b844721573f9a88c922612525e4ca> /usr/lib/system/libsystem_sandbox.dylib
       0x1e38d3000 -        0x1e38dcfff  libunwind.dylib arm64  <07bd6c4f43053e0191dc30c05754da0c> /usr/lib/system/libunwind.dylib
       0x1e38dd000 -        0x1e390ffff  libxpc.dylib arm64  <9b754030d4b638148840d3dac9c54212> /usr/lib/system/libxpc.dylib
       0x1e3dc6000 -        0x1e3de2fff  AppleMetalGLRenderer arm64  <26374d4876fe3c618a1a3696f52ef9c1> /System/Library/Extensions/AppleMetalGLRenderer.bundle/AppleMetalGLRenderer
       0x1e3e37000 -        0x1e3e49fff  IOHIDLib arm64  <2279ac76eb14384a99407a8c3060574b> /System/Library/Extensions/IOHIDFamily.kext/PlugIns/IOHIDLib.plugin/IOHIDLib
       0x1e487f000 -        0x1e49a9fff  AGXMetalA11 arm64  <fad0a5939aae38f3bd13a130671b4655> /System/Library/Extensions/AGXMetalA11.bundle/AGXMetalA11
       0x1e5539000 -        0x1e554bfff  SpotlightLinguistics arm64  <8d5151c3bcb131158c230645e5af4066> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics

Extra Information:

Stack Dump (0x000000016cfe2960-0x000000016cfe2a50):

C0894BAF01000000C0581681020000000100000000000000009A68850200000000BA071001000000009A688502000000D029FE6C01000000007D4DAF01000000202AFE6C01000000A82AFE6C01000000E030FE6C0100000000BA071001000000C0894BAF01000000A03D5481020000000000000000000000B0804BAF0100000071C08EE601000000A82AFE6C01000000102AFE6C01000000B44D20050100000071C08EE601000000A82AFE6C01000000602AFE6C010000000015200501000000000000000000000040D98208010000004045BB8102000000608459850200000040D98208010000000000000000000000

Application Stats:
{
    "active_time_since_last_crash": 46.4347,
    "active_time_since_launch": 46.4347,
    "application_active": true,
    "application_in_foreground": true,
    "background_time_since_last_crash": 1.61891e+09,
    "background_time_since_launch": 1.61891e+09,
    "launches_since_last_crash": 1,
    "sessions_since_last_crash": 3,
    "sessions_since_launch": 3
}

CrashDoctor Diagnosis: Attempted to dereference garbage pointer 0x52800000d65f03d8.
Originated at or in a subcall of fb_isZombieObject(objc_object*)


-------- System Info --------

{
    "CFBundleExecutable": "qcs.r",
    "CFBundleExecutablePath": "/private/var/containers/Bundle/Application/33682A28-78BE-4DA7-99F2-6A1EBA660D20/qcs.r.app/qcs.r",
    "CFBundleIdentifier": "com.meituan.qcs.r.ios.ep",
    "CFBundleName": "qcs.r",
    "CFBundleShortVersionString": "2.5.30",
    "CFBundleVersion": "7405",
    "app_start_time": "2021-04-20T07:54:21Z",
    "app_uuid": "0B0FEADD-72A9-3D98-82F1-18A4EC8E00F9",
    "application_stats": {
        "active_time_since_last_crash": 46.4347,
        "active_time_since_launch": 46.4347,
        "application_active": true,
        "application_in_foreground": true,
        "background_time_since_last_crash": 1.61891e+09,
        "background_time_since_launch": 1.61891e+09,
        "launches_since_last_crash": 1,
        "sessions_since_last_crash": 3,
        "sessions_since_launch": 3
    },
    "binary_cpu_subtype": 0,
    "binary_cpu_type": 16777228,
    "boot_time": "2021-04-19T02:46:51Z",
    "build_type": "unknown",
    "cpu_arch": "arm64",
    "cpu_subtype": 1,
    "cpu_type": 16777228,
    "device_app_hash": "6b1f63e4b87e77db77970de09aa5bcf41336b734",
    "jailbroken": false,
    "kernel_version": "Darwin Kernel Version 20.3.0: Tue Jan  5 18:34:47 PST 2021; root:xnu-7195.80.35~2/RELEASE_ARM64_T8015",
    "machine": "iPhone10,3",
    "memory": {
        "free": 40763392,
        "size": 2964504576,
        "usable": 2463662080
    },
    "model": "D22AP",
    "os_version": "18D70",
    "parent_process_id": 1,
    "process_id": 791,
    "process_name": "qcs.r",
    "storage": 7823368192,
    "system_name": "iOS",
    "system_version": "14.4.2",
    "time_zone": "GMT+8"
}

Error on namespace?

I've added the following to my Podfile

pod 'FBRetainCycleDetector'
pod 'FBAllocationTracker'

pod install, my project still compiles fine. Now I add to main.m

#import <FBAllocationTracker/FBAllocationTrackerManager.h>

Build fails now, in FBAllocationTrackerFunctors.h line 12 with

Unknown typename 'namespace'

FBAllocationTrackerImpl.h also complains about line 10,

'unordered_map' file not found

Is there a dependency I've missed to my project?

Release pod 0.1.6?

Folks, do you think it's worth making new version of the pod? Are there plans for that? I would be happy to do a PR that updates the podspec, but I guess that would not be enough/it would need a new tag and etc. Any thoughts?

fb

tracking

problem about alloc

when i use "currentAllocationSummary" i get this(part of):


2016-10-10 17:05:18.659 memorydemo[2434:1653842] summary className is __NSArrayI
2016-10-10 17:05:18.659 memorydemo[2434:1653842] summary allocations num is 0
2016-10-10 17:05:18.659 memorydemo[2434:1653842] summary deallocations num is 63
2016-10-10 17:05:18.659 memorydemo[2434:1653842] summary aliveObjects num is -63
2016-10-10 17:05:18.659 memorydemo[2434:1653842] summary instanceSize num is 16
2016-10-10 17:05:18.659 memorydemo[2434:1653842]

my code is :
NSArray *abc =[[NSArray alloc]init];
NSMutableArray *acc =[[NSMutableArray alloc]init];

the important thing is why allocations is 0?

thanks

Problem about FBAllocationTrackerManager

Hello, I have used FBRetainCycleDetector, FBAllocationTracker, and FBMemoryProfiler to find retain cycle question in my project. But I found some crash or bug in my app. So I debug it, and find the reason. There is a strong reference in method:

  • (nullable NSArray *)instancesForClass:(nonnull __unsafe_unretained Class)aCls
    inGeneration:(NSInteger)generation;

The object that track by FBAllocationTrackerManager will be reference by the return value NSArray. So it makes some objects delay to dealloc or dealloc in uncertain thread. But in the implement of FBAllocationTrackerManager the reference of tracked object is weak. When I change the implement of function instancesForClass:inGeneration: to

  • (std::vector<__weak id>)instancesForClassEx:(nonnull __unsafe_unretained Class)aCls
    inGeneration:(NSInteger)generation;

the crash and the bug have gone.
I am not sure that there is any reason to make the return value be a strong reference?

using method_exchangeImplementations to replace class_replaceMethod

In the case we sure that + alloc and + fb_newAlloc exist, shall we use method_exchangeImplementations to replace class_replaceMethod ?

This way we can remove the medium + fb_originalAlloc, and positive to change IMP between originalSEL and replacementSEL rather than two SEL point to one IMP, this can help us to reduce the potential risk and the probability of a problem. Have i a wrong place?

is tracker inoperable in Release?

#ifdef ALLOCATION_TRACKER_ENABLED
#define _INTERNAL_FBAT_ENABLED (ALLOCATION_TRACKER_ENABLED)
#else
#define _INTERNAL_FBAT_ENABLED DEBUG
#endif // ALLOCATION_TRACKER_ENABLED

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.