Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Crash on FPRNetworkTrace release #6713

Closed
berinhardt opened this issue Oct 9, 2020 · 5 comments
Closed

Crash on FPRNetworkTrace release #6713

berinhardt opened this issue Oct 9, 2020 · 5 comments
Assignees

Comments

@berinhardt
Copy link

berinhardt commented Oct 9, 2020

Step 0: Are you in the right place?

  • For issues or feature requests related to the code in this repository
    file a Github issue.
    • If this is a feature request please use the Feature Request template.
  • For general technical questions, post a question on StackOverflow
    with the firebase tag.
  • For general (non-iOS) Firebase discussion, use the firebase-talk
    google group.
  • For backend issues, console issues, and other non-SDK help that does not fall under one
    of the above categories, reach out to
    Firebase Support.
  • Once you've read this section and determined that your issue is appropriate for
    this repository, please delete this section.

[REQUIRED] Step 1: Describe your environment

  • Xcode version: 12.0 (12A7209)
  • Firebase SDK version: 6.34.0
  • Firebase Component: Performance (Auth, Core, Database, Firestore, Messaging, Storage, etc)
  • Component version: 3.3.1
  • Installation method: CocoaPods

[REQUIRED] Step 2: Describe the problem

I've just updated Firebase Performance from 3.3.0 => 3.3.1 on iOS and my project is now crashing due to an exception while releasing a FPRNetorkTrace:

*** Terminating app due to uncaught exception 'NSRangeException', reason: 'Cannot remove an observer <FPRNetworkTrace 0x280e41c00> for the key path "state" from <__NSCFLocalDataTask 0x103c4a7b0> because it is not registered as an observer.
        0 CoreFoundation           0x00000001a2fde128 F80FCA31-BF76-3293-8BC6-1729588AE8B6 + 1155368
	1 libobjc.A.dylib          0x00000001b6804cb4 objc_exception_throw + 56
	2 Foundation             0x00000001a41a28e4 4B7B9C0A-BAD3-348D-95A3-94784BFED02E + 301284
	3 Foundation             0x00000001a41a2600 4B7B9C0A-BAD3-348D-95A3-94784BFED02E + 300544
	4 ClienteIOS             0x00000001015ab7d4 -[FPRNetworkTrace dealloc] + 176
	5 libsystem_blocks.dylib       0x00000001e7a75784 _Block_release + 188
	6 libdispatch.dylib         0x00000001034795fc _dispatch_client_callout + 16
	7 libdispatch.dylib         0x0000000103480878 _dispatch_lane_serial_drain + 1252
	8 libdispatch.dylib         0x0000000103481308 _dispatch_lane_invoke + 452
	9 libdispatch.dylib         0x000000010348cb34 _dispatch_workloop_worker_thread + 1456
	10 libsystem_pthread.dylib      0x00000001e7aec5a4 _pthread_wqthread + 272
	11 libsystem_pthread.dylib      0x00000001e7aef874 start_wqthread + 8

Podfile:

Uncomment the next line to define a global platform for your project

platform :ios, '9.0'

source 'https://github.com/CocoaPods/Specs.git'
target 'ClienteIOS' do

Comment the next line if you're not using Swift and don't want to use dynamic frameworks

use_frameworks!

Pods for ClienteIOS

pod 'GoogleMobileAdsMediationTestSuite'
#pod 'FBAudienceNetwork'
pod 'GoogleMobileAdsMediationFacebook'
pod 'Socket.IO-Client-Swift', :path=>'~/sio/'
#Pods for Facebook
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
pod 'FBSDKShareKit'
pod 'Bolts'
#Pods Firebase
pod 'Firebase/AdMob'
pod 'Firebase/Analytics'
pod 'Firebase/RemoteConfig'
pod 'Firebase/Performance'
pod 'Firebase/InAppMessaging'
pod 'FirebaseCrashlytics'
end
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone';
end
end

Steps to reproduce:

It crashes shortly after finishing the first http request of the app (shortly meaning next dispatch, or something like that).

@berinhardt
Copy link
Author

berinhardt commented Oct 9, 2020

        NSString *urlString = [NSString stringWithUTF8String:_url.c_str()];
        NSURL *url = [NSURL URLWithString:urlString];
        NSURLSession *session = _cacheEnabled ? _getDefaultSession() : _getEphemeralSession();
        
        NSURLSessionTask *task = 0;
        
        NSMutableURLRequest *request = [NSMutableURLRequest	requestWithURL:url];
        for (const auto& h:_headers)
        {
            NSString *key = [NSString stringWithUTF8String:h.first.c_str()];
            NSString *value = [NSString stringWithUTF8String:h.second.c_str()];
            
            [request setValue:value forHTTPHeaderField:key];
        }
        
        if (!_postData.empty())
        {
            request.HTTPBody = [NSData dataWithBytes:_postData.data() length:_postData.size()];
            request.HTTPMethod = @"POST";
        }
            
        task = [session dataTaskWithRequest:request];
        
        NSValue *taskValue = [NSValue valueWithPointer:this];
        objc_setAssociatedObject(task, &taskKey, taskValue, OBJC_ASSOCIATION_RETAIN_NONATOMIC);
        
        //logs::messageln("created task session: %x", task);
        
        [task resume];
@berinhardt
Copy link
Author

- (void)URLSession:(NSURLSession *)session
          dataTask:(NSURLSessionDataTask *)dataTask
didReceiveResponse:(NSURLResponse *)response
 completionHandler:(void (^)(NSURLSessionResponseDisposition disposition))completionHandler
{
    if ([response isKindOfClass:[NSHTTPURLResponse class]])
    {
        NSHTTPURLResponse *httpResponse = ((NSHTTPURLResponse *)response);
        
        size_t size = size_t([httpResponse expectedContentLength]);
        
        int resp = (int)httpResponse.statusCode;
        
        oxygine::HttpRequestCocoaTask* task = [self getTask:dataTask remove:false];
        if (task)
        {
            task->gotResponse(resp, size);
            bool ok = task->getResponseCodeChecker()(resp);
            completionHandler(ok ? NSURLSessionResponseAllow : NSURLSessionResponseCancel);
            return;
        }
    }

    
    completionHandler(NSURLSessionResponseAllow);
}
@visumickey
Copy link
Contributor

@berinhardt Can you provide also the information about different threads during the time of crash?

@berinhardt
Copy link
Author

berinhardt commented Oct 9, 2020

Incident Identifier: 0452CA74-4290-4CED-A8A6-B673BFE3DF9B
CrashReporter Key:   feff421dee4d004c23113a3fdb756ae29ac0f0fc
Hardware Model:      iPad5,3
Process:             ClienteIOS [831]
Path:                /private/var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/ClienteIOS
Identifier:          BundleID
Version:             6007004 (6.7.4)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           BundleID [371]


Date/Time:           2020-10-09 19:27:21.3399 -0300
Launch Time:         2020-10-09 19:27:18.5423 -0300
OS Version:          iPhone OS 14.0.1 (18A393)
Release Type:        User
Baseband Version:    n/a
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  3

Application Specific Information:
abort() called

Last Exception Backtrace:
0   CoreFoundation                	0x1a2fde114 __exceptionPreprocess + 216
1   libobjc.A.dylib               	0x1b6804cb4 objc_exception_throw + 55
2   Foundation                    	0x1a41a28e4 -[NSObject+ 301284 (NSKeyValueObserverRegistration) _removeObserver:forProperty:] + 667
3   Foundation                    	0x1a41a2600 -[NSObject+ 300544 (NSKeyValueObserverRegistration) removeObserver:forKeyPath:] + 83
4   ClienteIOS                    	0x10103b91c -[FPRNetworkTrace dealloc] + 175
5   libsystem_blocks.dylib        	0x1e7a75784 _Block_release + 187
6   libdispatch.dylib             	0x1a2c17280 _dispatch_client_callout + 15
7   libdispatch.dylib             	0x1a2bc00a0 _dispatch_lane_serial_drain$VARIANT$mp + 859
8   libdispatch.dylib             	0x1a2bc0a84 _dispatch_lane_invoke$VARIANT$mp + 423
9   libdispatch.dylib             	0x1a2bca518 _dispatch_workloop_worker_thread + 711
10  libsystem_pthread.dylib       	0x1e7aec5a4 _pthread_wqthread + 271
11  libsystem_pthread.dylib       	0x1e7aef874 start_wqthread + 7


Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib        	0x00000001cd19e918 semaphore_timedwait_trap + 8
1   libdispatch.dylib             	0x00000001a2bba3e4 _dispatch_sema4_timedwait$VARIANT$mp + 64
2   libdispatch.dylib             	0x00000001a2bba97c _dispatch_semaphore_wait_slow + 72
3   QuartzCore                    	0x00000001a61b1db4 native_window_begin_iosurface+ 933300 (_EAGLNativeWindowObject*) + 748
4   GLEngine                      	0x00000001d2b5020c gliGetNewIOSurfaceES + 68
5   AGXGLDriver                   	0x0000000107a8fdb4 0x107a7c000 + 81332
6   AGXGLDriver                   	0x0000000107ae8734 0x107a7c000 + 444212
7   AGXGLDriver                   	0x0000000107aa33c0 0x107a7c000 + 160704
8   AGXGLDriver                   	0x0000000107aa2fc0 0x107a7c000 + 159680
9   GLEngine                      	0x00000001d2b50048 gliPresentViewES_Exec + 184
10  OpenGLES                      	0x00000001d2b5eb74 -[EAGLContext presentRenderbuffer:] + 72
11  ClienteIOS                    	0x00000001014175f4 -[SDL_uikitopenglview swapBuffers] + 6157812 (SDL_uikitopenglview.m:319)
12  ClienteIOS                    	0x0000000101413c14 UIKit_GL_SwapWindow + 6142996 (SDL_uikitopengles.m:126)
13  ClienteIOS                    	0x000000010136ab30 oxygine::core::swapDisplayBuffers(SDL_Window*) + 5450544 (oxygine.cpp:561)
14  ClienteIOS                    	0x0000000100eda27c mainloop() + 664188 (main.cpp:44)
15  ClienteIOS                    	0x0000000100eda304 run() + 664324 (main.cpp:0)
16  ClienteIOS                    	0x0000000100eda338 SDL_main + 664376 (main.cpp:145)
17  ClienteIOS                    	0x00000001014187d4 -[SDLUIKitDelegate postFinishLaunch] + 6162388 (SDL_uikitappdelegate.m:358)
18  Foundation                    	0x00000001a42a3f8c __NSFireDelayedPerform + 412
19  CoreFoundation                	0x00000001a2f5ea30 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 28
20  CoreFoundation                	0x00000001a2f5e634 __CFRunLoopDoTimer + 1004
21  CoreFoundation                	0x00000001a2f5db14 __CFRunLoopDoTimers + 324
22  CoreFoundation                	0x00000001a2f57eb0 __CFRunLoopRun + 1912
23  CoreFoundation                	0x00000001a2f57200 CFRunLoopRunSpecific + 572
24  GraphicsServices              	0x00000001b9052598 GSEventRunModal + 160
25  UIKitCore                     	0x00000001a581d004 -[UIApplication _run] + 1052
26  UIKitCore                     	0x00000001a58225d8 UIApplicationMain + 164
27  ClienteIOS                    	0x0000000101417a78 SDL_UIKitRunApp + 6158968 (SDL_uikitappdelegate.m:70)
28  libdyld.dylib                 	0x00000001a2c36598 start + 4

Thread 1:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 2:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 3 name:  Dispatch queue: com.google.perf.FPREventsQueue
Thread 3 Crashed:
0   libsystem_kernel.dylib        	0x00000001cd1c195c __pthread_kill + 8
1   libsystem_pthread.dylib       	0x00000001e7aeb9e8 pthread_kill + 212
2   libsystem_c.dylib             	0x00000001abc289b0 __abort + 112
3   libsystem_c.dylib             	0x00000001abc28940 __abort + 0
4   libc++abi.dylib               	0x00000001b6900cc8 __cxxabiv1::__aligned_malloc_with_fallback+ 77000 (unsigned long) + 0
5   libc++abi.dylib               	0x00000001b68f2ca0 demangling_unexpected_handler+ 19616 () + 0
6   libobjc.A.dylib               	0x00000001b6804f64 _objc_terminate+ 40804 () + 124
7   ClienteIOS                    	0x0000000100fe2714 FIRCLSTerminateHandler() + 1746708 (FIRCLSException.mm:0)
8   libc++abi.dylib               	0x00000001b6900154 std::__terminate(void (*)+ 74068 ()) + 16
9   libc++abi.dylib               	0x00000001b69000ec std::terminate+ 73964 () + 44
10  libdispatch.dylib             	0x00000001a2c17294 _dispatch_client_callout + 36
11  libdispatch.dylib             	0x00000001a2bc00a0 _dispatch_lane_serial_drain$VARIANT$mp + 860
12  libdispatch.dylib             	0x00000001a2bc0a84 _dispatch_lane_invoke$VARIANT$mp + 424
13  libdispatch.dylib             	0x00000001a2bca518 _dispatch_workloop_worker_thread + 712
14  libsystem_pthread.dylib       	0x00000001e7aec5a4 _pthread_wqthread + 272
15  libsystem_pthread.dylib       	0x00000001e7aef874 start_wqthread + 8

Thread 4:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 5:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 6:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 7:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 9 name:  com.apple.uikit.eventfetch-thread
Thread 9:
0   libsystem_kernel.dylib        	0x00000001cd19e8c4 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001cd19dcc8 mach_msg + 72
2   CoreFoundation                	0x00000001a2f5d74c __CFRunLoopServiceMachPort + 376
3   CoreFoundation                	0x00000001a2f57bd0 __CFRunLoopRun + 1176
4   CoreFoundation                	0x00000001a2f57200 CFRunLoopRunSpecific + 572
5   Foundation                    	0x00000001a4161278 -[NSRunLoop+ 33400 (NSRunLoop) runMode:beforeDate:] + 228
6   Foundation                    	0x00000001a4161158 -[NSRunLoop+ 33112 (NSRunLoop) runUntilDate:] + 88
7   UIKitCore                     	0x00000001a58c89fc -[UIEventFetcher threadMain] + 504
8   Foundation                    	0x00000001a42bdc48 __NSThread__start__ + 848
9   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
10  libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 10 name:  AVAudioSession Notify Thread
Thread 10:
0   libsystem_kernel.dylib        	0x00000001cd19e8c4 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001cd19dcc8 mach_msg + 72
2   CoreFoundation                	0x00000001a2f5d74c __CFRunLoopServiceMachPort + 376
3   CoreFoundation                	0x00000001a2f57bd0 __CFRunLoopRun + 1176
4   CoreFoundation                	0x00000001a2f57200 CFRunLoopRunSpecific + 572
5   AudioSession                  	0x00000001aa456158 GenericRunLoopThread::Entry+ 49496 (void*) + 156
6   AudioSession                  	0x00000001aa4580b8 CAPThread::Entry+ 57528 (CAPThread*) + 88
7   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
8   libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 11:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 12:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 13:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 14 name:  com.google.firebase.crashlytics.MachExceptionServer
Thread 14:
0   libsystem_kernel.dylib        	0x00000001cd19e8c4 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001cd19dcc8 mach_msg + 72
2   ClienteIOS                    	0x0000000100fe9d08 FIRCLSMachExceptionServer + 1776904 (FIRCLSMachException.c:170)
3   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
4   libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 15:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 16:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 17:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 18:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 19:
0   libsystem_pthread.dylib       	0x00000001e7aef86c start_wqthread + 0

Thread 20 name:  com.apple.NSURLConnectionLoader
Thread 20:
0   libsystem_kernel.dylib        	0x00000001cd19e8c4 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001cd19dcc8 mach_msg + 72
2   CoreFoundation                	0x00000001a2f5d74c __CFRunLoopServiceMachPort + 376
3   CoreFoundation                	0x00000001a2f57bd0 __CFRunLoopRun + 1176
4   CoreFoundation                	0x00000001a2f57200 CFRunLoopRunSpecific + 572
5   CFNetwork                     	0x00000001a37e19a4 0x1a35b0000 + 2300324
6   Foundation                    	0x00000001a42bdc48 __NSThread__start__ + 848
7   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
8   libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 21 name:  com.apple.CoreMotion.MotionThread
Thread 21:
0   libsystem_kernel.dylib        	0x00000001cd19e8c4 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001cd19dcc8 mach_msg + 72
2   CoreFoundation                	0x00000001a2f5d74c __CFRunLoopServiceMachPort + 376
3   CoreFoundation                	0x00000001a2f57bd0 __CFRunLoopRun + 1176
4   CoreFoundation                	0x00000001a2f57200 CFRunLoopRunSpecific + 572
5   CoreFoundation                	0x00000001a2f582c0 CFRunLoopRun + 60
6   CoreMotion                    	0x00000001ad74f374 0x1ad616000 + 1282932
7   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
8   libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 22 name:  AURemoteIO::IOThread
Thread 22:
0   libsystem_kernel.dylib        	0x00000001cd19e8c4 mach_msg_trap + 8
1   libsystem_kernel.dylib        	0x00000001cd19dcc8 mach_msg + 72
2   libEmbeddedSystemAUs.dylib    	0x00000001d107d930 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<> > >+ 612656 (void*) + 576
3   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
4   libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 23:
0   libsystem_kernel.dylib        	0x00000001cd1c172c __psynch_cvwait + 8
1   libsystem_pthread.dylib       	0x00000001e7ae4330 _pthread_cond_wait$VARIANT$mp + 1180
2   ClienteIOS                    	0x0000000101379a4c oxygine::ThreadDispatcher::_waitMessage() + 5511756 (ThreadDispatcher.cpp:59)
3   ClienteIOS                    	0x0000000101379ae4 oxygine::ThreadDispatcher::get(oxygine::ThreadDispatcher::message&) + 5511908 (ThreadDispatcher.cpp:79)
4   ClienteIOS                    	0x00000001012eab28 oxygine::_staticThreadFunc(void*) + 4926248 (StreamingSoundHandleOAL.cpp:58)
5   libsystem_pthread.dylib       	0x00000001e7aeab70 _pthread_start + 288
6   libsystem_pthread.dylib       	0x00000001e7aef880 thread_start + 8

Thread 3 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x0000000000000000   x5: 0x0000000000989680   x6: 0x000000000000006e   x7: 0x0000000000000032
    x8: 0x000000016f167000   x9: 0x27ae05f00428797e  x10: 0x00000000000003e8  x11: 0x000000000000000b
   x12: 0x00000001e847fc4a  x13: 0x0000000000000001  x14: 0x0000000000000010  x15: 0x000000000000000d
   x16: 0x0000000000000148  x17: 0x0000000000000000  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000000001a03  x21: 0x000000016f1670e0  x22: 0x0000000000000007  x23: 0x0000000101682c0b
   x24: 0x0000000000000001  x25: 0x00000002817d2c80  x26: 0x0000000282c8aa00  x27: 0x0000000000000000
   x28: 0x0000000000000000   fp: 0x000000016f1662f0   lr: 0x00000001e7aeb9e8
    sp: 0x000000016f1662d0   pc: 0x00000001cd1c195c cpsr: 0x40000000
   esr: 0x56000080  Address size fault

Binary Images:
0x100e38000 - 0x10179ffff ClienteIOS arm64  <fe609437b66934dbb53d34a82c90fe48> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/ClienteIOS
0x10202c000 - 0x102043fff Bolts arm64  <c2b0f053687e337683a43b575978d316> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/Bolts.framework/Bolts
0x102074000 - 0x102083fff FBLPromises arm64  <9214b69340c23f7ca5b669cf92a26997> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/FBLPromises.framework/FBLPromises
0x1020a8000 - 0x1020b3fff GoogleToolboxForMac arm64  <b67b471ab66338828e62e696d1160f10> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac
0x1020d0000 - 0x1020d7fff MDFInternationalization arm64  <d4b3179d31453ad993a205a1ebd46ebb> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/MDFInternationalization.framework/MDFInternationalization
0x1020ec000 - 0x102157fff dyld arm64  <db2dc234676830f889db5b18092543c0> /usr/lib/dyld
0x1021d8000 - 0x10227bfff FBSDKCoreKit arm64  <3565b5fe1b6339c49e5b95de73caf133> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
0x102380000 - 0x10239ffff FBSDKLoginKit arm64  <fa92583cea3432068ec76364160eebce> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
0x1023e0000 - 0x10240bfff FBSDKShareKit arm64  <bf99054939373bff88911a404b4ca36f> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/FBSDKShareKit.framework/FBSDKShareKit
0x102468000 - 0x10248ffff GTMSessionFetcher arm64  <a943395aad3c37ee9f9b1d69f05f4fe9> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher
0x1024d8000 - 0x1024f7fff GoogleUtilities arm64  <86b80b6a76e634cbb8864da322e97a73> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x102530000 - 0x102537fff MDFTextAccessibility arm64  <b93164e0c1073bab823febc8ea2a4b3d> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/MDFTextAccessibility.framework/MDFTextAccessibility
0x10254c000 - 0x1025bbfff MaterialComponents arm64  <96074dcf02b832bf972e4d21faef6cab> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/MaterialComponents.framework/MaterialComponents
0x102684000 - 0x1026d3fff Protobuf arm64  <f7ba9ac40fd33d15b5d4c3f5763bc0ec> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/Protobuf.framework/Protobuf
0x102780000 - 0x10278bfff SAMKeychain arm64  <912245e07ca33a608106e8e70832ee31> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/SAMKeychain.framework/SAMKeychain
0x1027a4000 - 0x102803fff SocketIO arm64  <e333e5614cca3ae0bc1463b91ec39462> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/SocketIO.framework/SocketIO
0x1028a4000 - 0x1028e7fff Starscream arm64  <e6a17a94ec6034e7bb011d4ffe4866c0> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/Starscream.framework/Starscream
0x102960000 - 0x10296bfff nanopb arm64  <1fcdf138043232069bd60b934b7d9dea> /var/containers/Bundle/Application/C8C81D84-2B84-4C4A-9342-4F91235EEB81/ClienteIOS.app/Frameworks/nanopb.framework/nanopb
0x102d48000 - 0x102d53fff libobjc-trampolines.dylib arm64  <531731c8e9f131659c4be4d34eb3ad02> /usr/lib/libobjc-trampolines.dylib
0x107a7c000 - 0x107afffff AGXGLDriver arm64  <442538436c3433a9b34ebdd9bb663a65> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
0x1a2bb6000 - 0x1a2c34fff libdispatch.dylib arm64  <a564fa91a3e33a41afd1410fad72e52a> /usr/lib/system/libdispatch.dylib
0x1a2c35000 - 0x1a2c6bfff libdyld.dylib arm64  <77e573148a58306490c08af9a4745430> /usr/lib/system/libdyld.dylib
0x1a2c6c000 - 0x1a2ec3fff libicucore.A.dylib arm64  <b69f2d5b339d3615816342da657b3a4a> /usr/lib/libicucore.A.dylib
0x1a2ec4000 - 0x1a326cfff CoreFoundation arm64  <f80fca31bf7632938bc61729588ae8b6> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1a326d000 - 0x1a3405fff CoreServices arm64  <248e39da84ae30ec9b99d0828d6d6adc> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1a3406000 - 0x1a344efff WirelessDiagnostics arm64  <6618cbc3569a38c28aa1920c4c034f64> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1a344f000 - 0x1a34c7fff SystemConfiguration arm64  <9a8a9b4a8d233d76a3e00d2e23adc717> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1a34c8000 - 0x1a35affff CoreTelephony arm64  <080a8015d906315b95b5d151427bb5ef> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1a35b0000 - 0x1a3a30fff CFNetwork arm64  <c2a586f195cb35cfb58d7c215706514e> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1a3a31000 - 0x1a40e7fff libnetwork.dylib arm64  <4c7453197a833572a6f67c7a93253d78> /usr/lib/libnetwork.dylib
0x1a40e8000 - 0x1a4158fff Accounts arm64  <1119c5897f3f318eb36fb7cadd13b35d> /System/Library/Frameworks/Accounts.framework/Accounts
0x1a4159000 - 0x1a43f3fff Foundation arm64  <4b7b9c0abad3348d95a394784bfed02e> /System/Library/Frameworks/Foundation.framework/Foundation
0x1a43f4000 - 0x1a4755fff ImageIO arm64  <1eb4eb79e3d63843bdf651030946d702> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1a476f000 - 0x1a4cfbfff CoreGraphics arm64  <8db9d5e0ae2e3452ba61e08b61d0b5a7> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1a4cfc000 - 0x1a60b0fff UIKitCore arm64  <00ea142638f73fd2be0104ebd44eca35> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1a60b1000 - 0x1a60cdfff libAccessibility.dylib arm64  <6eaa2bbb983c31e0a54445ab83e375e7> /usr/lib/libAccessibility.dylib
0x1a60ce000 - 0x1a6340fff QuartzCore arm64  <3e647da558433774b65aa1928066ebbc> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1a6341000 - 0x1a63a6fff BackBoardServices arm64  <8d8ff0c391863e14b59fba5a0379b135> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1a63a7000 - 0x1a642efff TextInput arm64  <702a96ae5cd631b79303a51a20deabf5> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1a642f000 - 0x1a6496fff libusrtcp.dylib arm64  <b04edb78d7c23279a2f08c48547650de> /usr/lib/libusrtcp.dylib
0x1a6497000 - 0x1a682bfff AppleMediaServices arm64  <77068928b7f338e5af9a4e43248471e6> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1a682c000 - 0x1a698ffff libswiftFoundation.dylib arm64  <772ae6f29e433d17a60cf1c6478a5266> /usr/lib/swift/libswiftFoundation.dylib
0x1a6990000 - 0x1a6d40fff libswiftCore.dylib arm64  <9156be86d4b63a8184608728fa38c978> /usr/lib/swift/libswiftCore.dylib
0x1a6d41000 - 0x1a6d55fff UIKitServices arm64  <1f3cd175224d3f26a5600d139f4f1f40> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1a6d56000 - 0x1a6e9dfff Preferences arm64  <a4ca293a84a8386ab0c553e3edb81fe4> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1a6e9e000 - 0x1a70acfff ContactsUI arm64  <ef8404e6d4473b74ade7086388ebe493> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1a70ad000 - 0x1a7265fff CoreText arm64  <acab3f31cda932a28fe5566404fc7b76> /System/Library/Frameworks/CoreText.framework/CoreText
0x1a7266000 - 0x1a727efff ExtensionKit arm64  <eb2e265374973c91ae06db90c531dee8> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
0x1a7294000 - 0x1a7311fff BaseBoard arm64  <b9796c0d4cb6374bbfefc4211e2a621b> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1a7312000 - 0x1a7527fff CoreDuet arm64  <0d0b95a19dc033fc80a96c7ae0f93653> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1a7528000 - 0x1a766efff Contacts arm64  <b92ac3df43b93676abbcd44967415cd3> /System/Library/Frameworks/Contacts.framework/Contacts
0x1a766f000 - 0x1a8acdfff GeoServices arm64  <44979cf9b49d3a9ab31bb4ddd82be40e> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1a8ace000 - 0x1a8b52fff CoreLocation arm64  <5c9e124296273b4b9cbcf94e3d5785b9> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1a8b53000 - 0x1a8ceffff CloudKit arm64  <c9e5d97746e93c0f8ea54a1a53852093> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1a8cf0000 - 0x1a9052fff CoreData arm64  <d6bd337e6232360cbc36ab1edb921118> /System/Library/Frameworks/CoreData.framework/CoreData
0x1a9c40000 - 0x1a9c4afff libswiftCoreGraphics.dylib arm64  <1531409888db39449ce5db0a9e8f5374> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1a9c4b000 - 0x1a9c89fff AppSupport arm64  <7007fbe50270309dbb72a9675db02535> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1a9c8a000 - 0x1a9da6fff ManagedConfiguration arm64  <4af6524e93173aafaf9f264dcac12fd8> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1a9da7000 - 0x1a9e13fff IMFoundation arm64  <88c687b2e1de325c95cf8d8559614f0a> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1a9e14000 - 0x1a9f16fff IDS arm64  <6b252a94405c31729d5d0777dc17a546> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1a9f17000 - 0x1aa053fff Security arm64  <d6b2c1cb544d3d628f8b0e86922622dc> /System/Library/Frameworks/Security.framework/Security
0x1aa054000 - 0x1aa449fff MediaPlayer arm64  <38faaf1386f43bf8aee30315f8e03fc8> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1aa44a000 - 0x1aa461fff AudioSession arm64  <dc0b478c08c33b24be2fb932a6fa08f0> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
0x1aa462000 - 0x1aa5dafff AVFCore arm64  <4af35698d09930f897bfdb8192af532a> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
0x1aa5db000 - 0x1aab29fff Intents arm64  <26c944ab8a4e39a4820d1744faeb5ec0> /System/Library/Frameworks/Intents.framework/Intents
0x1aab75000 - 0x1aae69fff CoreImage arm64  <36f179cea2393257b48e1f20786da448> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1aae6a000 - 0x1aaf23fff ColorSync arm64  <486b1137d98a3a9f91f386bd7f2f425d> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1aaf24000 - 0x1aaf5cfff CoreVideo arm64  <9e006d465bb939e9ab31782d3f254f8c> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1aaf5d000 - 0x1ab672fff MediaToolbox arm64  <bb26609fdb0d3079bcbee8b5757deabd> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1ab673000 - 0x1ab75efff CoreMedia arm64  <b48e8ae41fe437b0bfc9bf9255a835ef> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1ab75f000 - 0x1ab9c9fff AudioToolbox arm64  <1f4e77b23328305ca19f50a8773b7637> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1ab9ca000 - 0x1aba19fff CoreHaptics arm64  <4bed7c06a10c3a7590b6166e97e8035a> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1aba1a000 - 0x1aba76fff UserActivity arm64  <2ec555d881403493a67b00c906e9a3a6> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1aba77000 - 0x1abb76fff UIFoundation arm64  <ac4b381071c5329eab3171245848a2a3> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1abb77000 - 0x1abbb4fff libsystem_info.dylib arm64  <86ea93b2cc963d8ca53ebfcf708b5ec5> /usr/lib/system/libsystem_info.dylib
0x1abbb5000 - 0x1abc31fff libsystem_c.dylib arm64  <e64a11f730ec313c8acfb0de81756ee6> /usr/lib/system/libsystem_c.dylib
0x1abc32000 - 0x1abc7afff RunningBoardServices arm64  <4bd250113ccc351eaa970f2b8ce9436d> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1abc7b000 - 0x1acbadfff JavaScriptCore arm64  <5f868c00551331a1adf812a5ade40e41> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1ad12a000 - 0x1ad1affff ContactsFoundation arm64  <257b2b7bdbca3e6b88c8421592d39fe8> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1ad1b0000 - 0x1ad3d3fff HealthKit arm64  <fe05c2cec3793a85860fe9587df15244> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x1ad3d4000 - 0x1ad3f5fff ProactiveEventTracker arm64  <9fee4f7ebeee35a28af89190fbc2726b> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1ad3f6000 - 0x1ad43ffff Lexicon arm64  <78773acb16613a8b9eec2879de95e700> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1ad440000 - 0x1ad4a8fff PersonalizationPortrait arm64  <50a07a3b5e3134d8986ed77a3c3de4a7> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1ad4a9000 - 0x1ad4f5fff CoreDuetContext arm64  <1e09c135b60a339ebe3c48ee226bdfd0> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1ad4f6000 - 0x1ad59bfff IOKit arm64  <ac262e0f73c53352a36cd240aed00570> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1ad59c000 - 0x1ad5abfff DataMigration arm64  <36ee29905cf33ea4b63c9e57ebff658a> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1ad5ac000 - 0x1ad603fff SpringBoardServices arm64  <159a44bea3c33324adb33c5ed8b4d4af> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1ad604000 - 0x1ad615fff ContextKit arm64  <72e2125daf3a34bc8e803a89245c66c5> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1ad616000 - 0x1ad86dfff CoreMotion arm64  <ced520684e043c36a22acebca7007ee6> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1ad86e000 - 0x1ad9a3fff EventKit arm64  <4368112a67393f67a1f8e1c5f5cfc2cf> /System/Library/Frameworks/EventKit.framework/EventKit
0x1adebb000 - 0x1ae10cfff MediaRemote arm64  <90db9d33776933cb81a9a412bf701032> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1ae10d000 - 0x1ae2a4fff CoreUtils arm64  <f509e9b22a093c2d88d34f0411370f74> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1ae2a5000 - 0x1ae2bafff FamilyCircle arm64  <832c7de05cca39cab22a8d7403401cc1> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1ae2bb000 - 0x1ae326fff CoreSpotlight arm64  <eb1b9b360a0d37e39e3538ff2c779663> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1ae6f2000 - 0x1ae872fff AssistantServices arm64  <a2cb42c2525d339f8772366a6766bdbb> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1ae873000 - 0x1ae934fff CoreUI arm64  <06b307c805fb365c9a17bf28e03315ad> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1ae935000 - 0x1ae982fff SafariSafeBrowsing arm64  <2f7c2bb62eb53887897d840f25e56412> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1ae983000 - 0x1af0aafff WebKit arm64  <d2b002fc25433913b5c93b01c4fa936a> /System/Library/Frameworks/WebKit.framework/WebKit
0x1af0ab000 - 0x1b140afff WebCore arm64  <24a23357aaff3969b8ac1c1b9e59b652> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1b140b000 - 0x1b1467fff libMobileGestalt.dylib arm64  <dc5e8552363c3a369d3f34167d2ee890> /usr/lib/libMobileGestalt.dylib
0x1b1468000 - 0x1b1483fff CommonUtilities arm64  <0b5a598e0add354085b5beb2bcfa6dc1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1b1484000 - 0x1b15e9fff IDSFoundation arm64  <34c0a0a0f6c33886bab5c794cfa320f0> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1b15ea000 - 0x1b16e6fff IMSharedUtilities arm64  <437d42c98ffe3ff081b71f4e3d87cc8c> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1b16e7000 - 0x1b1787fff CoreSuggestions arm64  <1536f2bcf499367f910d541000fdb6a8> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1b1788000 - 0x1b1822fff AddressBookLegacy arm64  <d4ba359136373c76bbca277ff35d79a6> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1b1823000 - 0x1b1853fff UserNotifications arm64  <609d7b0ee0523347a0f9a80503675b1e> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1b1854000 - 0x1b18d4fff FrontBoardServices arm64  <4722b22ec68836a38a0fb123cada07ce> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1b18d5000 - 0x1b18f7fff libsystem_malloc.dylib arm64  <ab9cee1431f83a1d88a6a326ab836926> /usr/lib/system/libsystem_malloc.dylib
0x1b18f8000 - 0x1b1badfff MapKit arm64  <b80856e61b5f32c4a566a173a4c287f5> /System/Library/Frameworks/MapKit.framework/MapKit
0x1b1bae000 - 0x1b2376fff VectorKit arm64  <f7a5ccb87e1f3d969eb9f3ad57f00f5f> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1b2377000 - 0x1b2400fff AuthKit arm64  <67b5623b340e3d86a3382db5cc964e7f> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1b2401000 - 0x1b248ffff AppleAccount arm64  <48612228b5e132e7930d54b0acf6c9af> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1b2490000 - 0x1b2595fff AVFAudio arm64  <7a95cc9202f1319aba84f5849848469a> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1b2596000 - 0x1b27edfff AudioToolboxCore arm64  <9e71dd080cef36eb9d8352fd2c75abc9> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1b27ee000 - 0x1b281cfff VoiceShortcutClient arm64  <49c3b6c442f63eb2bea483874b8db989> /System/Library/PrivateFrameworks/VoiceShortcutClient.framework/VoiceShortcutClient
0x1b281d000 - 0x1b2ab3fff StoreServices arm64  <226381cbfa2836c89191bc7626dbcc81> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1b2ab4000 - 0x1b2c27fff Sharing arm64  <1aefc8bfff5a36388a6bd2e345802099> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1b2c28000 - 0x1b2cc7fff ShareSheet arm64  <a6c9670a5f6b3ea68a0a5c44b37f8af4> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1b2cc8000 - 0x1b2daffff CoreParsec arm64  <b254a3c4b329379cb72ec408ee6aa314> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1b2db0000 - 0x1b2df5fff PhotoFoundation arm64  <dd918b7fc49335adaa053febad37db42> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1b2df6000 - 0x1b3026fff Photos arm64  <8e09f62192833004a65111865068ddff> /System/Library/Frameworks/Photos.framework/Photos
0x1b3027000 - 0x1b36f7fff PhotoLibraryServices arm64  <4e747551dfe23a6f9fb35df1c222f7f3> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1b36f8000 - 0x1b37adfff AssetsLibraryServices arm64  <f79e0c9d60653c7ca0ae7db02361a970> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1b37ae000 - 0x1b37fdfff MobileBackup arm64  <4b01636f4da8353aa4a297f16f20b4ec> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1b37fe000 - 0x1b3811fff MSUDataAccessor arm64  <80ceb033883d3258b4422801fe348b08> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
0x1b3812000 - 0x1b3837fff MobileAsset arm64  <b584963553bb3adca793f115acbf49ff> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1b3838000 - 0x1b3847fff libsystem_networkextension.dylib arm64  <a135b009fd9b3b3299978ba024bd4544> /usr/lib/system/libsystem_networkextension.dylib
0x1b3848000 - 0x1b3a83fff NetworkExtension arm64  <92af9527011c3256adebcf3e2925a305> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1b3aae000 - 0x1b3e70fff CoreML arm64  <7d66482de4f3308582c21fce441f6b5d> /System/Library/Frameworks/CoreML.framework/CoreML
0x1b3e71000 - 0x1b468afff Espresso arm64  <99c3dab82d27363982de3212ad3ab10a> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1b468b000 - 0x1b4776fff VideoToolbox arm64  <a151f840cfed3618a0077f3314424eaf> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1b4777000 - 0x1b47bffff OnBoardingKit arm64  <a37c8a0dd6fc3fb1a716cb3703ee7697> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x1b48b2000 - 0x1b48c1fff AXCoreUtilities arm64  <639753bc281334d89a36eeaff0d77176> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1b56ea000 - 0x1b5859fff Montreal arm64  <e0b801b4b6083e71b7824ef7074942e9> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b585a000 - 0x1b5966fff LanguageModeling arm64  <27a195926ea23cc2af8559c7eb55d4a5> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1b5967000 - 0x1b596ffff InternationalSupport arm64  <368cef823686339bab0f913210fdfaad> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b5970000 - 0x1b5ba7fff iTunesCloud arm64  <a232badfc206390ab00b45af4f21ab1d> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1b5ba8000 - 0x1b5be4fff libswiftUIKit.dylib arm64  <b4c3563833b43bb5922e2dfd456502c5> /usr/lib/swift/libswiftUIKit.dylib
0x1b5cf2000 - 0x1b5d94fff CalendarDatabase arm64  <33aaefba2d3736b9b7b87298fb7c3438> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1b5d95000 - 0x1b5dddfff Notes arm64  <c59aca811d2b30578dd1c555ddfe7a6b> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x1b5dde000 - 0x1b5eb4fff LinkPresentation arm64  <dd50f5b7528b3a1abc6eb2a71287f754> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1b5eb5000 - 0x1b5fa6fff Combine arm64  <594a0d33b2e23a6a95d5390c3b1f3112> /System/Library/Frameworks/Combine.framework/Combine
0x1b602d000 - 0x1b603dfff UniformTypeIdentifiers arm64  <d350a3b2316c31dd80e97c844188d78a> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
0x1b603e000 - 0x1b60bafff CloudDocs arm64  <c434ebfedf7f3b7993012aec47808baf> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1b60bb000 - 0x1b62a9fff Message arm64  <136e493c73b73ae2891ce9a817bc9db7> /System/Library/PrivateFrameworks/Message.framework/Message
0x1b62aa000 - 0x1b6321fff EmailFoundation arm64  <f00ef13f9c6831ca9fb01b668997aa6d> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x1b6587000 - 0x1b65c1fff MediaServices arm64  <8b4cc7f15b183fce95b33fdc9e32d64e> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1b65c2000 - 0x1b6726fff SearchFoundation arm64  <f18cc8d283133a5e93a731f54204aa78> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1b6727000 - 0x1b677ffff WebBookmarks arm64  <05f1a760622c38c8ad624512374f0da1> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1b67fb000 - 0x1b6833fff libobjc.A.dylib arm64  <19e9f9a3f38334eaa5f2a59774933351> /usr/lib/libobjc.A.dylib
0x1b6834000 - 0x1b6893fff LoggingSupport arm64  <4c06c79633853395850ce8fa3fa81141> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1b6894000 - 0x1b68edfff libc++.1.dylib arm64  <da67cb48478c3703b904cdb242a7f957> /usr/lib/libc++.1.dylib
0x1b68ee000 - 0x1b6906fff libc++abi.dylib arm64  <9bdc8fb7f27b37588232411f2a070984> /usr/lib/libc++abi.dylib
0x1b6907000 - 0x1b6945fff SetupAssistant arm64  <5c93f286b0153da6bb97e6f8308fca2e> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1b6946000 - 0x1b695efff OctagonTrust arm64  <4d4d03731a63304d97f97b325599ec28> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
0x1b6a65000 - 0x1b6aa5fff CoreAutoLayout arm64  <3bc7cf7c2e7538829037e607c116b9ca> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
0x1b6aa6000 - 0x1b6bfbfff Network arm64  <67039f9e1e69383ea880069034391a06> /System/Library/Frameworks/Network.framework/Network
0x1b6bfc000 - 0x1b6c30fff MobileKeyBag arm64  <d29b9fde1baf36ad8961c36fbb2a70fc> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b6e4e000 - 0x1b6e61fff BaseBoardUI arm64  <b7c6c0c4a95b38b59002e210484848c3> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1b6e62000 - 0x1b6efcfff libvDSP.dylib arm64  <c55aaf2d958a33a0ad9bf4cfdd8e48c6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1b6efd000 - 0x1b6f2ffff libAudioToolboxUtility.dylib arm64  <d1e86c5a1bf03fd0b39c6330a5ffe5b1> /usr/lib/libAudioToolboxUtility.dylib
0x1b70cd000 - 0x1b7155fff CoreNLP arm64  <a23c25ae670134fd896abe988a1bb98c> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1b7156000 - 0x1b7261fff FileProvider arm64  <02b95742eef73bc688fdb11dcf0c910c> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1b7262000 - 0x1b7271fff BiomeStorage arm64  <a977dd6b47153c018911efc1098bec1e> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
0x1b7272000 - 0x1b7288fff libswiftDispatch.dylib arm64  <3b7ae0fe9c23347888a15fe9053de99d> /usr/lib/swift/libswiftDispatch.dylib
0x1b7289000 - 0x1b72befff DataDetectorsCore arm64  <05b1738eeabf30a7944d237e25330e00> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1b72bf000 - 0x1b7349fff Symbolication arm64  <1b798f7ce66b33589838af2e889e6ebd> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1b734a000 - 0x1b7367fff CrashReporterSupport arm64  <02a6ad802ab137e9a23a4936922c071e> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1b73a4000 - 0x1b746cfff TelephonyUtilities arm64  <327043ac85d2336ebf8d980016902002> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1b74a3000 - 0x1b768afff MPSNeuralNetwork arm64  <a0568a6501de34ef81c8cdc81f96044d> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1b768b000 - 0x1b76defff MPSCore arm64  <ed6393fdf55a3ef4919adc36a3caa181> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1b782e000 - 0x1b7896fff CalendarFoundation arm64  <ebff33ebf2403637a306026589f3a811> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1b78f5000 - 0x1b79e2fff NLP arm64  <86f130b92bca37bd863f6b2982b33df0> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1b79e3000 - 0x1b7a0afff AppSupportUI arm64  <6d086ace75ad3b899554cfb0aaaf6b73> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1b7a13000 - 0x1b7a65fff FTServices arm64  <0c6145a59ef930d788498d760e2478cf> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1b7a66000 - 0x1b7b12fff libboringssl.dylib arm64  <13f92f4a74393c7b844803e524055329> /usr/lib/libboringssl.dylib
0x1b7b13000 - 0x1b7b29fff ProtocolBuffer arm64  <d054565aab6a384c8a34ab50862e369f> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1b7b2a000 - 0x1b7c29fff AVKit arm64  <3a31ec8e1c443ddcac3e318f59c1308e> /System/Library/Frameworks/AVKit.framework/AVKit
0x1b7d8d000 - 0x1b7d9bfff AssertionServices arm64  <441bcb1580e9332bbdaa932daf272733> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1b7d9c000 - 0x1b7dc3fff CloudServices arm64  <561da489bf933eeeb30c584e03ebb812> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x1b7e16000 - 0x1b7eeffff Metal arm64  <127b5a5e58ed3ba18771ea667305519d> /System/Library/Frameworks/Metal.framework/Metal
0x1b7ef0000 - 0x1b801efff MediaExperience arm64  <69dbd1b3ebfb34509d7513f20e3c6bfc> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1b83cc000 - 0x1b83e2fff libsystem_trace.dylib arm64  <27106d0783f33262a2186c09cb43bbd6> /usr/lib/system/libsystem_trace.dylib
0x1b83e3000 - 0x1b8413fff CoreServicesInternal arm64  <a1f716fc85c235bfa842533b5056a21f> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1b8414000 - 0x1b8475fff SafariCore arm64  <6be7efe04e97323381a96ba2b15c4649> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1b8476000 - 0x1b8692fff SafariShared arm64  <5994fac516373872b3eefaeee9ba34bd> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1b8693000 - 0x1b8723fff AppStoreDaemon arm64  <fc2f0e3d40643731928e379abcb7319f> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1b8ade000 - 0x1b8b22fff ContactsAutocompleteUI arm64  <99572dbb15ff3fca9bed282ec70fd44f> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x1b8b23000 - 0x1b8c55fff MessageUI arm64  <52893b6ce16039e19e00fb330d72f62d> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x1b8f71000 - 0x1b900bfff SAObjects arm64  <ee8741bf031732ae8addd3404fe35402> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1b900c000 - 0x1b904efff VoiceServices arm64  <5d58836cdc8d363b8451d3d57faf38e4> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1b904f000 - 0x1b9057fff GraphicsServices arm64  <7762c1613c1b3e56ba759cb873604898> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1b9058000 - 0x1b90abfff DeviceManagement arm64  <82cfbcc2d68f347eb27f92806539fc49> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1b90ac000 - 0x1b920dfff Translation arm64  <d98382b967a633a686a0d4f8ed2fa520> /System/Library/PrivateFrameworks/Translation.framework/Translation
0x1b920e000 - 0x1b9222fff PowerLog arm64  <fa316322274a3edfb0f24695fdfa39cb> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1b9223000 - 0x1b924afff DuetActivityScheduler arm64  <2f304715b5ab33098f1fe60f5f253ee5> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1ba74e000 - 0x1ba9dffff Vision arm64  <b40357a23a29373bb352961291271131> /System/Library/Frameworks/Vision.framework/Vision
0x1ba9e0000 - 0x1baa39fff DataAccess arm64  <d9598dff4796385494a686a977115b70> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x1baa3a000 - 0x1baaa4fff ProactiveSupport arm64  <f2c830d151bb34e7ab8fd4250743c2e0> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1baad0000 - 0x1baaedfff ApplePushService arm64  <a5fa6bb2d5d83e4db58c01e18fcac7e3> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1baaee000 - 0x1bab14fff BoardServices arm64  <c7a26f1fed133352b792e02a7d6189a0> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1bac64000 - 0x1bac93fff libncurses.5.4.dylib arm64  <534d915a39213f77a6f822a8892be94a> /usr/lib/libncurses.5.4.dylib
0x1bac94000 - 0x1bacdffff OSAnalytics arm64  <4fe5520295d93e4287b2f3d284b8340c> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1bace0000 - 0x1bad62fff CoreBluetooth arm64  <d226d59480e43a11b19da9fd0a82ada3> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1baf2f000 - 0x1baf71fff TemplateKit arm64  <ec1f58d49fdc3135923d05f14ccb28f2> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
0x1baf72000 - 0x1bafa4fff MobileInstallation arm64  <7e4f8f06ecfc3eab890efcb394dabdaa> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1bafa5000 - 0x1bb033fff libTelephonyUtilDynamic.dylib arm64  <30eaf24df2793f489b51d83e50ad6177> /usr/lib/libTelephonyUtilDynamic.dylib
0x1bb034000 - 0x1bb09bfff NanoRegistry arm64  <e2e8bbe9a58d318da122d4f07d8c61d1> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1bb16d000 - 0x1bb189fff CoreMaterial arm64  <8b58bde11d7d3a12aa801bfd971db617> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1bb1f9000 - 0x1bb37bfff libsqlite3.dylib arm64  <2c36458eaa8b3745a820f81bc42a8205> /usr/lib/libsqlite3.dylib
0x1bb37c000 - 0x1bb437fff AVFCapture arm64  <95eb034ce265335290c436a74b46432a> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
0x1bb438000 - 0x1bb754fff CMCapture arm64  <e1b94c798737384d902adac539005a57> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
0x1bb89f000 - 0x1bbaeffff MobileSpotlightIndex arm64  <ff1cb805ca553f338dbddeabf5eea249> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1bbaf0000 - 0x1bbb91fff Email arm64  <74111cf055e93301be0d79b39032dde7> /System/Library/PrivateFrameworks/Email.framework/Email
0x1bbef0000 - 0x1bbefafff libsystem_notify.dylib arm64  <53d35bc61c833bb8bdd07cb45194afdc> /usr/lib/system/libsystem_notify.dylib
0x1bbefb000 - 0x1bbf3dfff CryptoTokenKit arm64  <9959770c4df038c9b104fe83150c7a8a> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1bbfa5000 - 0x1bc016fff libcorecrypto.dylib arm64  <0132fdd2a91538919c322733a68c136f> /usr/lib/system/libcorecrypto.dylib
0x1bc017000 - 0x1bc039fff UserManagement arm64  <446f0ed5432e39f7ba07fc13098c05cd> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1bc10a000 - 0x1bc120fff libsystem_asl.dylib arm64  <2d732c1c91d739da8981bb8ea0265b47> /usr/lib/system/libsystem_asl.dylib
0x1bc121000 - 0x1bc143fff AppSSO arm64  <4b6f1d80a33632d29a687d1e74899d13> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1bc144000 - 0x1bc160fff SharedWebCredentials arm64  <9de5e81a0235315a910b073c10496cce> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1bc161000 - 0x1bc333fff SafariServices arm64  <c6b7db8f62ce3c569bc392ffda489368> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1bc389000 - 0x1bc3bffff DataAccessExpress arm64  <4ccafb8eae983b01ab3c6a2250807c06> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1bc3c0000 - 0x1bc3f6fff CoreServicesStore arm64  <030438846e5b39faae37c22fa736bdb8> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1bc3f7000 - 0x1bc41bfff CoreAnalytics arm64  <43ed2b52d6bf34ff85a81fa594917963> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1bc41c000 - 0x1bc427fff SymptomAnalytics arm64  <b1e84a0dcf1b30559a0f256409424768> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1bc603000 - 0x1bc612fff NanoPreferencesSync arm64  <f80f79b345713bd28f159efe73cefd53> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1bca89000 - 0x1bcab3fff IconServices arm64  <3f645203f06b3c5494b55cbc282a8018> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1bd47b000 - 0x1bd716fff vImage arm64  <4d2753e5ccc03c1ebeb4d89472ebf7cd> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1be270000 - 0x1be441fff IMCore arm64  <90bb42ba12e63f4cb7af84925deba533> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1be531000 - 0x1be548fff IAP arm64  <32ccdc96ce9b32f4b3c2929de687899b> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x1be549000 - 0x1be59efff ktrace arm64  <097420ebaa7e36ae9dbf36f796be63e9> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1be6f1000 - 0x1be6fefff Celestial arm64  <4943ee031d6f3f7ca307f6c5fc714f16> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1be7a2000 - 0x1be7e5fff Pegasus arm64  <c5e7519cd58c3455afcfb6b94c0194af> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1be7e6000 - 0x1be944fff WebKitLegacy arm64  <02f26121740a3a808167d6e3e1041857> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1be9b0000 - 0x1bea1ffff ClassKit arm64  <fd158d64632d31d1b81196f88c443a0e> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1bea20000 - 0x1bea61fff StoreKit arm64  <7b942ae79dd53539a3ccbe63d6c412b4> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1bf65b000 - 0x1bf665fff IOMobileFramebuffer arm64  <dcdc7f06833c3f8e9e1d245cf8b94f02> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1bf666000 - 0x1bf6d7fff ScreenTimeCore arm64  <fc360858775b3847a41661b598272451> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x1bf77e000 - 0x1bf8f2fff CloudPhotoLibrary arm64  <212b417af05b3373b0d1332506f81181> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1bf8f3000 - 0x1bfbb6fff MusicLibrary arm64  <69c7de31875239d6bc4b0489ae44ffd1> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1bfbb7000 - 0x1bfc1bfff CallKit arm64  <437f05ae96573c92aba3c50325d4d334> /System/Library/Frameworks/CallKit.framework/CallKit
0x1bfcb9000 - 0x1bfcd7fff PrototypeTools arm64  <d3f78765bb3137baacf8009e96d8b371> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1bfcd8000 - 0x1bfd03fff PersistentConnection arm64  <16765b75546c37c381d5e435d025a787> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1bfd04000 - 0x1bfd22fff BiomeStreams arm64  <6616da253d933cfe9ea43d84b29d1b33> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
0x1bfd3d000 - 0x1bffdefff PencilKit arm64  <85200dc2069c3a63905d2e017e6df390> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x1c0084000 - 0x1c0093fff libswiftUniformTypeIdentifiers.dylib arm64  <9f02326c5a903603b0c864b182b96b40> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
0x1c0094000 - 0x1c0201fff CoreSpeech arm64  <6f90b804c2c433f19a11784d7c4befa0> /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech
0x1c0202000 - 0x1c034efff IMDPersistence arm64  <9397ac0068ea3e119c103bda21d106e8> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1c0579000 - 0x1c0629fff SafariSharedUI arm64  <73380cf7c7433dbb8ad65a01c35bf38e> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
0x1c0646000 - 0x1c065bfff AppSSOCore arm64  <f8d2d4db4a71381c97518a92a2d21b65> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x1c0666000 - 0x1c067cfff CoreFollowUp arm64  <0bd8154ad157397ebce9c7a77815c21b> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1c067d000 - 0x1c06effff Rapport arm64  <ad4b3a0b533f3dd18ce3c95647c11147> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1c078d000 - 0x1c079efff Categories arm64  <516867c7736331e1b280994f631b443b> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1c0a3a000 - 0x1c0a60fff LocationSupport arm64  <8a9be86de4a13e62bffb1705c59938b3> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1c0a61000 - 0x1c0a93fff iCalendar arm64  <0aee8247fe7a34daad7902c510ad9a6c> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1c0abf000 - 0x1c0bc1fff ConfigurationEngineModel arm64  <81686722304b3479b525a76b49c27a06> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1c0bc2000 - 0x1c0bebfff CacheDelete arm64  <78237707ea453c1e82e84825f349de82> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1c0bec000 - 0x1c0c65fff CVNLP arm64  <9e4fcf078fb93f3ca6e23f37b0c5bdf5> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
0x1c0d9e000 - 0x1c0da0fff OSAServicesClient arm64  <4976b7be0b953226a56f02869e05429b> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1c0da1000 - 0x1c0da3fff BiomeFoundation arm64  <d1f577c3e48b31e3af24795eb59b9b6c> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
0x1c0da4000 - 0x1c0dfbfff ProtectedCloudStorage arm64  <383e1d3f1f3331d9a9cf892509f52ca1> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1c0dfc000 - 0x1c0e32fff C2 arm64  <198f3ea947503cc39f9d220e5ebdc001> /System/Library/PrivateFrameworks/C2.framework/C2
0x1c0e33000 - 0x1c0e85fff DifferentialPrivacy arm64  <64c195d18a443e6a8675e492b757a65c> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1c104c000 - 0x1c1806fff EmbeddedAcousticRecognition arm64  <170675581f7430978650d55646ed6f27> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
0x1c1807000 - 0x1c187bfff SiriInstrumentation arm64  <6a75112efa313407b7aabdccbbff962f> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1c187c000 - 0x1c18bdfff BiometricKit arm64  <6dfcf19d45003fdbbd8407b54b6e1f7b> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1c18f0000 - 0x1c199ffff CoreSymbolication arm64  <757c9f0b17273bba990c590adc517fa5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1c1a0e000 - 0x1c1ab8fff SpeakerRecognition arm64  <98c71a64ed66338a9817bb6841ea5b8f> /System/Library/PrivateFrameworks/SpeakerRecognition.framework/SpeakerRecognition
0x1c1afd000 - 0x1c1b06fff HearingCore arm64  <d1d4993ab59b339d9d1dd2b56eec6dd3> /System/Library/PrivateFrameworks/HearingCore.framework/HearingCore
0x1c2094000 - 0x1c2095fff MessageSupport arm64  <bcfd5a40fca03afe8d89f7fe32d7615d> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x1c2096000 - 0x1c20a7fff IOSurface arm64  <8f94086085d737abb5aaac2b1866d86c> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1c20a8000 - 0x1c2107fff MobileWiFi arm64  <1a97840fcb963453be177d661925cefb> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1c2457000 - 0x1c2472fff DoNotDisturb arm64  <61646d8b0bf4310cb6a4fa2992c5c52e> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x1c24d8000 - 0x1c257efff MMCS arm64  <16ec2b038dc939f48cb197c2b2bcc6d3> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1c25c6000 - 0x1c25fffff libGLImage.dylib arm64  <cf2eef14d66d36aa949e5befda03088b> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1c2600000 - 0x1c2607fff libsystem_symptoms.dylib arm64  <b85143fe2be737688af32e1d37a86a1d> /usr/lib/system/libsystem_symptoms.dylib
0x1c264a000 - 0x1c2bf6fff CoreAudio arm64  <67773bc042d8391eaa3fdadf97f39bab> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1c2bf7000 - 0x1c2c0cfff ContactsDonation arm64  <b7e1d933de073d239e2222a86cac9f7f> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1c2c0d000 - 0x1c2c2afff IntentsCore arm64  <9cbdcce1a777332884f739bc42eabb54> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
0x1c2cc8000 - 0x1c2cfefff ImageCaptureCore arm64  <1a0585d91f983e01a8bc876b7ceb1ec3> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1c2e4d000 - 0x1c2f8afff Navigation arm64  <6f465c4af8133c238ea816421b082667> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1c2f8b000 - 0x1c2fa6fff SafariFoundation arm64  <927a05b3c2c636ea86fbe98ecf590be1> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1c311a000 - 0x1c312dfff MaterialKit arm64  <e87a6b90bfa03c6fbb7c4618184d651b> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1c322f000 - 0x1c323ffff CoreAUC arm64  <523a64721fb3342b94b28c35ee4fd67e> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1c33c6000 - 0x1c38d4fff AudioCodecs arm64  <95a98b4c40bc35d5b99765b1f73dda37> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs
0x1c3a39000 - 0x1c3a49fff SettingsFoundation arm64  <c1226215f8ba3db881e481878c2f4f87> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1c4165000 - 0x1c439ffff RawCamera arm64  <06eee6e15094362aa27c3a5fd7669c17> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1c4407000 - 0x1c4461fff ToneLibrary arm64  <a6b1eda9bf093ea69c7f46925b41ff7f> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1c4c54000 - 0x1c4c61fff MediaSafetyNet arm64  <a9e7a7d80dad359f9ccff776c2a33a90> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
0x1c4c62000 - 0x1c4c9dfff TimeSync arm64  <7fd32790f5ce3bcea216a85abae43e94> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
0x1c4cf3000 - 0x1c4d2efff ExposureNotification arm64  <6b3dea6c17253363aa8d7e96efb05acb> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
0x1c537e000 - 0x1c5387fff CoreTime arm64  <ed632bf6778b3ff2a7e5df4b28073eeb> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1c5cda000 - 0x1c5dd6fff TextRecognition arm64  <3f64a0db36e53d4692d521e8a55bcdf9> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1c5dd7000 - 0x1c5de0fff ContextKitExtraction arm64  <21524cab8edf34a1b467a8c8081a30b4> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
0x1c5eb2000 - 0x1c5eb4fff libswiftObjectiveC.dylib arm64  <e9e09b0b9f92392f9fad1c9f6c989e85> /usr/lib/swift/libswiftObjectiveC.dylib
0x1c5eb5000 - 0x1c60f1fff libmorphun.dylib arm64  <42896de222683a989657134990dc55bd> /usr/lib/libmorphun.dylib
0x1c66e2000 - 0x1c674afff EmailCore arm64  <a168fc31d402300f994b639e261444ab> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x1c7009000 - 0x1c7053fff MIME arm64  <d46b0eb80b953bfdbada50b9f473cbbf> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x1c731a000 - 0x1c732ffff MailServices arm64  <258559bfc4323c8a8e430bb9848565f0> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1c73ab000 - 0x1c742cfff CoreDAV arm64  <e1e784b0dd223349be80f1b93f2b07d4> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1c75f7000 - 0x1c7605fff MobileIcons arm64  <babb5e4371b53c38a6cb824c212e6fe6> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1c79d0000 - 0x1c7aa0fff ProofReader arm64  <30f6ea879d11339582dbce6af9c232ed> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1c8bee000 - 0x1c8bf8fff MallocStackLogging arm64  <858acb277af3359a8fd07152b168f83a> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1c8c5b000 - 0x1c8e18fff EmailDaemon arm64  <c92f40ddb5ec341399d16f4186b90585> /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x1c8e19000 - 0x1c8e63fff MetadataUtilities arm64  <cce4c0a2e62e3d399a9fbb5e0dea7d30> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1c9370000 - 0x1c939dfff MailSupport arm64  <733b54820ea83948b2c632517a9e8b33> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1c94e5000 - 0x1c953dfff CoreLocationProtobuf arm64  <f12482f70d263955b66e45df0c68da11> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1c9741000 - 0x1c9772fff Bom arm64  <7cb897977fe03d0e84104df94cfc60a5> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1c97a2000 - 0x1c97a8fff PushKit arm64  <ffa088e21dab396d84943bb7aa81819a> /System/Library/Frameworks/PushKit.framework/PushKit
0x1c97a9000 - 0x1c980dfff PhotosFormats arm64  <88e0363dce0a344c9310c67180a4480f> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1c9959000 - 0x1c99eafff Quagga arm64  <16715f6e7b1d385fa856ca8df5600c8d> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1c99eb000 - 0x1c99f2fff StudyLog arm64  <93b1a618f6083a1aa2ab05298e2db029> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1ca8ad000 - 0x1ca8ecfff NaturalLanguage arm64  <de4b268a090034b693e05d481a97cdcb> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1ca995000 - 0x1caeb3fff libAudioDSP.dylib arm64  <17cf3cb23e1638d0b6927c78b208b5ec> /System/Library/Frameworks/AudioToolbox.framework/libAudioDSP.dylib
0x1caeb4000 - 0x1caebffff AudioDataAnalysis arm64  <fa92b8ff51ea3186b05b90a199f046db> /System/Library/PrivateFrameworks/AudioDataAnalysis.framework/AudioDataAnalysis
0x1cb337000 - 0x1cb354fff MediaStream arm64  <19492adf8696318db7a39e2c69c8c826> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1cbf10000 - 0x1cbf37fff MediaConversionService arm64  <7f66e10eb510321d8cdc202862d54307> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1cc086000 - 0x1cc1c2fff CoreHandwriting arm64  <bbf2b7a929dd3001bdac84e820ddd672> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1cc8b6000 - 0x1cc8c1fff AppleIDAuthSupport arm64  <ed66c34b77d7399eac6e24e6ae1acb3b> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1cc8d0000 - 0x1cc8e6fff LocalAuthentication arm64  <2c84adac652935d1934557abc150e9be> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1cc95e000 - 0x1cc964fff IOAccelerator arm64  <eab9ed1834473d798cae3b74751ab9b6> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1ccd2a000 - 0x1ccd33fff CloudPhotoServices arm64  <359bb0c1f3363e079dc47e0b52200a69> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1ccd74000 - 0x1cce08fff iTunesStore arm64  <0252c87d03b339438063d43355cce3b3> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1cd19b000 - 0x1cd1cafff libsystem_kernel.dylib arm64  <82dbf088d58735cf959815f79c12eaa4> /usr/lib/system/libsystem_kernel.dylib
0x1cd3e8000 - 0x1cd4effff ResponseKit arm64  <c2964f19570c3b16ae474c2221d03aa6> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1cd4f0000 - 0x1cd528fff EmojiFoundation arm64  <73de32427e5f3764b03c1433e6e376a9> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x1cdb04000 - 0x1cdb10fff FontServices arm64  <dba6ff60c1d3311da5d116ae5092e555> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1cdca2000 - 0x1cdcadfff MediaAccessibility arm64  <b2d8b4ea7bde35c6a97130bb23dc1305> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1cdcee000 - 0x1ce2b9fff SiriTTS arm64  <caaebb80de0739e9bb9658848388e5ae> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1ce2ba000 - 0x1ce2c8fff SetupAssistantSupport arm64  <1e22cc340d043c43b63bff994d7367b2> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1ce2d0000 - 0x1ce32dfff Social arm64  <80b6ed82eb5e37c9928dcc6cba7c405b> /System/Library/Frameworks/Social.framework/Social
0x1ce3c3000 - 0x1ce3f2fff VirtualGarage arm64  <e76b4a83ecc73dec8fdf49f9833add81> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
0x1ce3f3000 - 0x1ce417fff NetAppsUtilities arm64  <966a9c89cfa039c98b5acc200ede32bc> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x1ce418000 - 0x1ce47afff Osprey arm64  <cb1d66887280310b9c07bd10240326c7> /System/Library/PrivateFrameworks/Osprey.framework/Osprey
0x1cf8a7000 - 0x1cf8b3fff libdscsym.dylib arm64  <4eb292dfd43834d4a7b219841e8326c5> /usr/lib/libdscsym.dylib
0x1cf8b4000 - 0x1cf8c5fff HangTracer arm64  <28aed98179ea3d32a8dc4e8a397ff700> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1cf9fa000 - 0x1cfa0dfff PersonalAudio arm64  <a388866708323d8b8262602fe624261e> /System/Library/PrivateFrameworks/PersonalAudio.framework/PersonalAudio
0x1cfa72000 - 0x1cfb2afff SampleAnalysis arm64  <74a526e5693b39f9a867d04debeac387> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1cfb2b000 - 0x1cfb59fff PlugInKit arm64  <a1dae7ad9f003dbc8baec9d505b5e2fe> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1cfbf0000 - 0x1cfbf1fff libSystem.B.dylib arm64  <ebdb6d14cbdc3ce0ab68c0ee237a16e0> /usr/lib/libSystem.B.dylib
0x1cfd9a000 - 0x1cfed3fff ContentKit arm64  <6c7fa821bab13a30b233fa1a97051e50> /System/Library/PrivateFrameworks/ContentKit.framework/ContentKit
0x1cfed4000 - 0x1cfedcfff MobileActivation arm64  <d748b4cf6b8535f9b06f5fc6bfa5cf1d> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1cfedd000 - 0x1cff34fff CalendarDaemon arm64  <31871f62e60a3208b5b119cac39e1c39> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1d0029000 - 0x1d0097fff libarchive.2.dylib arm64  <584a70fd7da63008b71604ef831b7f> /usr/lib/libtailspin.dylib
0x1d00bc000 - 0x1d04e2fff libBNNS.dylib arm64  <a42c621f162e32d5a9672b9ad124d346> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1d04e3000 - 0x1d0522fff SharedUtils arm64  <87ca7742c6013aa3b4120db837f4125f> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1d07bc000 - 0x1d07c1fff libsysdiagnose.dylib arm64  <e2294cfba70f32eeae90b41c738922a7> /usr/lib/libsysdiagnose.dylib
0x1d07f4000 - 0x1d08f5fff CoreMediaStream arm64  <1a8124d7be223cd896e27e4fb56bbbc0> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1d0af1000 - 0x1d0af1fff AVFoundation arm64  <47a18200c0333bc9864cdb00a2e46c29> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1d0af2000 - 0x1d0af2fff Accelerate arm64  <61d6e706b1863b32a2a8e01ac1d46443> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1d0af3000 - 0x1d0ba2fff libBLAS.dylib arm64  <b404152c5ebe3ab5bba9c852ee97ea31> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1d0ba3000 - 0x1d0eb5fff libLAPACK.dylib arm64  <8625162ce6dc3c7e8c654a7d6bf57cbe> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1d0eb6000 - 0x1d0ecafff libLinearAlgebra.dylib arm64  <1cab0d8379243f9296d553ac0d70cbd6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1d0ecb000 - 0x1d0ecffff libQuadrature.dylib arm64  <c4b76ae2a5783857b19b17e7a82e7309> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1d0ed0000 - 0x1d0f31fff libSparse.dylib arm64  <9fff1eaa7a4f3e619368364d0721f352> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1d0f32000 - 0x1d0f43fff libSparseBLAS.dylib arm64  <7dd5047a29e9366197256c1e0020011a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1d0f44000 - 0x1d0f9dfff libvMisc.dylib arm64  <220714da804534e2b661bd16662bbc7f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1d0f9e000 - 0x1d0f9efff vecLib arm64  <adeee68d3e453776add246aad6dae801> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1d0fa3000 - 0x1d0fa3fff AdSupport arm64  <4248169fc2ca3dd0b2d458b57a94f7d3> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x1d0fd6000 - 0x1d0fd7fff AppTrackingTransparency arm64  <789eb00402ac33279c49c26fbf5da05b> /System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency
0x1d0fd8000 - 0x1d0fe7fff AssetsLibrary arm64  <04d7589548b73c48a260ff5c4c11b122> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1d0fe8000 - 0x1d10f8fff libEmbeddedSystemAUs.dylib arm64  <4b4b9bb6460630978d514bf739e8431f> /System/Library/Frameworks/AudioToolbox.framework/libEmbeddedSystemAUs.dylib
0x1d10f9000 - 0x1d1114fff AuthenticationServices arm64  <cb8bec376ff33352b0c5eff65c206ba9> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1d11fc000 - 0x1d1265fff CoreMIDI arm64  <86a32e4455e639a2889b50011b2b6ea2> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1d1767000 - 0x1d177dfff ExternalAccessory arm64  <56e3ba45907c3b8082c41c681db4f4a4> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
0x1d17ba000 - 0x1d17e7fff GSS arm64  <94a6af7a883b38de8d6c3540f2b4c83f> /System/Library/Frameworks/GSS.framework/GSS
0x1d17e8000 - 0x1d1885fff GameController arm64  <1f27857d0ded3920b083ed548d6119ef> /System/Library/Frameworks/GameController.framework/GameController
0x1d1942000 - 0x1d1a89fff MLCompute arm64  <2a1c84ab8b0e3dd69efe5508531b1d62> /System/Library/Frameworks/MLCompute.framework/MLCompute
0x1d1aae000 - 0x1d1ac6fff MetalKit arm64  <3fd3676cdf1e36e8bf16d560cdd14035> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1d1ac7000 - 0x1d1b4cfff MPSImage arm64  <a744a1dc0803351d962c706046fe56a6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1d1b4d000 - 0x1d1b73fff MPSMatrix arm64  <55d5253d52b432c89fc1d451f9d55f6e> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1d1b74000 - 0x1d1bacfff MPSNDArray arm64  <5cb7c6034ece3efc9d0fe60311e96562> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1d1bad000 - 0x1d1bf5fff MPSRayIntersector arm64  <a2457e1d186c35df8e6b720f51604300> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1d1bf6000 - 0x1d1bf6fff MetalPerformanceShaders arm64  <cea4592557393600bbf50a1ea2e23dd0> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1d1f72000 - 0x1d1f72fff MobileCoreServices arm64  <7275644f2e2f394e9fe4bc9279f5f778> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1d2a5e000 - 0x1d2a8dfff OpenAL arm64  <a33dac19a2a536059e3bfe8f92b3a8c1> /System/Library/Frameworks/OpenAL.framework/OpenAL
0x1d2a8e000 - 0x1d2b57fff GLEngine arm64  <a33899c345f1378f8d2be9d5b380d95e> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x1d2b58000 - 0x1d2b60fff OpenGLES arm64  <3f31fb62ab1733009a9bfe21c1507898> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1d2b61000 - 0x1d2b62fff libCVMSPluginSupport.dylib arm64  <f357556cd2df3ac39603664f87aa04c8> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1d2b63000 - 0x1d2b69fff libCoreFSCache.dylib arm64  <c198a37a10713397910d44bbbe89f354> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1d2b6a000 - 0x1d2b6ffff libCoreVMClient.dylib arm64  <ef1d65f5b0f03a04b64c80209bce055f> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1d2b70000 - 0x1d2b78fff libGFXShared.dylib arm64  <ac3853445de336668360e5b93f2dc30d> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1d2b79000 - 0x1d2cd8fff libGLProgrammability.dylib arm64  <4fbf3bc8e6e5336c9fd70631a7c891f2> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x1d2d25000 - 0x1d2de5fff PDFKit arm64  <b9466cfc60c6314b831289b9361055ec> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1d2df4000 - 0x1d2e2ffff QuickLookThumbnailing arm64  <ca8940d211d6360d883a0db1d4d05f81> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1d306a000 - 0x1d3097fff ReplayKit arm64  <f6e5b17acf083bcc9cd5db22e025b04a> /System/Library/Frameworks/ReplayKit.framework/ReplayKit
0x1d34aa000 - 0x1d35f0fff SoundAnalysis arm64  <602c37cf55673c82a682c3069d8c5e49> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1d35f1000 - 0x1d3600fff Speech arm64  <bc25b53f5dde30599a41bc3a1c3086d6> /System/Library/Frameworks/Speech.framework/Speech
0x1d3722000 - 0x1d3722fff UIKit arm64  <0684bbaa65d33a28aa9770f30beb518c> /System/Library/Frameworks/UIKit.framework/UIKit
0x1d372b000 - 0x1d37eefff VideoSubscriberAccount arm64  <85d2244029213e3e9ed6abca339ba22e> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1d37ef000 - 0x1d43c5fff libfaceCore.dylib arm64  <92ca66d6bc2a3f47841cefc88e39970a> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
0x1d43e0000 - 0x1d43e0fff VisionKit arm64  <bb5315801ccd31d48b9d368afbe2882e> /System/Library/Frameworks/VisionKit.framework/VisionKit
0x1d4905000 - 0x1d4908fff AFKUser arm64  <69c1d09c8a403dfabb1a2d3e06c22000> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
0x1d4909000 - 0x1d490cfff AGXCompilerConnection-S2A8 arm64  <05edbbbf46c43f16be2dbea91311124e> /System/Library/PrivateFrameworks/AGXCompilerConnection-S2A8.framework/AGXCompilerConnection-S2A8
0x1d49c8000 - 0x1d4c43fff ANECompiler arm64  <41638650c8f83d6292e0e3bf25cd8a9a> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1d4c44000 - 0x1d4c57fff ANEServices arm64  <66b4799b31a73955af1cf67acaf714e3> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1d4c5c000 - 0x1d4d13fff APFS arm64  <823ea73b7581318ca59d5efb59d0e199> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1d4d14000 - 0x1d4d19fff ASEProcessing arm64  <43e5bc61f8ad3e9a8cea6787497bd35e> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1d54d6000 - 0x1d54dbfff AggregateDictionary arm64  <59d523348b21398b880ac82a7af28390> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1d565a000 - 0x1d5733fff AirPlaySync arm64  <bfd72e08cc2e3390a3299141ec62e4e4> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
0x1d583a000 - 0x1d5855fff AlgosScoreFramework arm64  <3a3863c728423925af48609ec0ee1654> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
0x1d597a000 - 0x1d599bfff AppConduit arm64  <c11b391a62263245b9c8cea122e9dd49> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1d5a6b000 - 0x1d5a75fff AppStoreOverlays arm64  <14f9102955e83f829bf3aeccdbeea637> /System/Library/PrivateFrameworks/AppStoreOverlays.framework/AppStoreOverlays
0x1d6b02000 - 0x1d6b11fff AppleFSCompression arm64  <ff58c35416ed37628f2315b40db8e5c6> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1d6b1e000 - 0x1d6b2bfff AppleIDSSOAuthentication arm64  <f95cd2626f9c320183b79e8a96a8b74f> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1d6b2c000 - 0x1d6b6ffff AppleJPEG arm64  <ca73b2334751376d8d20e48fc7bf9366> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1d6bea000 - 0x1d6bfefff AppleNeuralEngine arm64  <33956eaa28523b89989b56ef570bd5cb> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1d6c08000 - 0x1d6c2bfff AppleSauce arm64  <98773b29d1ca32859bb2e33e372e7ad4> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1d6c5a000 - 0x1d6c77fff AssetCacheServices arm64  <09fca87c8e573488afca2933c3ce83d2> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1d6dd6000 - 0x1d6e31fff AuthKitUI arm64  <2d8b369a66b13cd3bac3ab2940f2da70> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1d6ec0000 - 0x1d6ed8fff BiomePubSub arm64  <1e923137ddf739c9911f97c4d6f5e50b> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
0x1d7176000 - 0x1d7184fff BluetoothManager arm64  <90c10ed5788738f29ab95d30a5c296c8> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1d73e3000 - 0x1d73edfff CMCaptureCore arm64  <46a5a06a59cb33448f65493275cacd3b> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
0x1d73ee000 - 0x1d7404fff CPAnalytics arm64  <30408100613c3b2c8d9dfa6c108abf74> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
0x1d7407000 - 0x1d7416fff CPMS arm64  <e39e55f4bd8b3eb8a2c67baa319925b5> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1d7417000 - 0x1d7426fff CTCarrierSpace arm64  <0398db29b63f3fd7b23a67a8f0c7ab07> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1d7729000 - 0x1d7734fff CaptiveNetwork arm64  <5d00f4e42152382fb63fbd925f29fd05> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1d7850000 - 0x1d788afff Catalyst arm64  <10f788d2edbd3c71a060989320948615> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1d788b000 - 0x1d78acfff CellularPlanManager arm64  <33a79b49d65f3614b3cbc328807e2626> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1d78c5000 - 0x1d78cdfff CertUI arm64  <8e8238ad50313f549562a5a751565776> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1d78d6000 - 0x1d7924fff ChunkingLibrary arm64  <c720b94d770535e990d278956ad4c6d3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1d7d02000 - 0x1d7d09fff CommonAuth arm64  <005934a481e63a9dbcbfd6c43aab0fbe> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1d7d0a000 - 0x1d7d0efff CommunicationsFilter arm64  <c3f7f2dbb27739768d3513cd21e0882f> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1d7dc2000 - 0x1d7dc5fff ConstantClasses arm64  <0acd87d41849364085c69009cf692c90> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1d7dcf000 - 0x1d7e0bfff ContactsAutocomplete arm64  <9e30014a284c3d849a0499054efca7af> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1d7e11000 - 0x1d7e81fff ContactsUICore arm64  <c6a2a2e593423f3b92ce7626687de64b> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1d7ffb000 - 0x1d80ecfff CoreBrightness arm64  <f0ead13cec4232fc864fceb96b90362b> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1d8156000 - 0x1d8165fff CoreDuetDaemonProtocol arm64  <14a65e5a1411356d8ad7e24969046a33> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1d8168000 - 0x1d816afff CoreDuetDebugLogging arm64  <6e6f179aad41307282f668e877577ada> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1d8179000 - 0x1d818bfff CoreEmoji arm64  <20394a668c1a320b80df41055cee6182> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1d86b5000 - 0x1d86b9fff CoreOptimization arm64  <df515a8d246e342891f774e3bf18cfa6> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1d86ba000 - 0x1d8773fff CorePDF arm64  <61a4575378d23bd186a8cc421e380a85> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1d8774000 - 0x1d877cfff CorePhoneNumbers arm64  <64a166806f5031a997756c064232fe11> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1d877d000 - 0x1d87d1fff CorePrediction arm64  <8f16184fb32432259b700ea8212322cf> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1d90d1000 - 0x1d90dbfff CoreRecents arm64  <cae303f5db9332b9855a723ec5bb1425> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1d90dc000 - 0x1d9142fff CoreRecognition arm64  <8f8cceef99943c5ea633556e701c72fb> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1d9143000 - 0x1d915bfff CoreSDB arm64  <e5aa802021963bec817cdaa2019f18bf> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1d915c000 - 0x1d9184fff CoreSVG arm64  <3217d7e9ae72350c87ebb30b3b364cc6> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1d932e000 - 0x1d9332fff DAAPKit arm64  <000646563fa239d78a713726219ff5fa> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1d9350000 - 0x1d935dfff DCIMServices arm64  <63a2d9f55857305d8db1d5ec86c247ff> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1d9374000 - 0x1d93b0fff DataDetectorsNaturalLanguage arm64  <20dd0e19fab8334baf5a45c147003723> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1d9413000 - 0x1d9422fff DeviceIdentity arm64  <3982948d7e8d31b3b4cbcc808159a972> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1d954a000 - 0x1d957ffff DistributedEvaluation arm64  <a7526b4438473dba9cea82959de74137> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x1d95cc000 - 0x1d9697fff DocumentCamera arm64  <298879733d063d00b693a696958f85dc> /System/Library/PrivateFrameworks/DocumentCamera.framework/DocumentCamera
0x1d9698000 - 0x1d96d2fff DocumentManager arm64  <7c3051c977cd374db31b43b733d94e4e> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1d96d3000 - 0x1d96f1fff DocumentManagerCore arm64  <602d77fd1c8d3df6ab53f027fdb0695e> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1d9775000 - 0x1d9777fff DragUI arm64  <19371251fd3433e2b7299e371b5d8db5> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
0x1d97a6000 - 0x1d97d6fff EAP8021X arm64  <723dfd9ab82837e6a343f505d7e6144c> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1d97ed000 - 0x1d97f7fff EmailAddressing arm64  <f3d3bf02d8a8343682df04362d1acd42> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x1d9805000 - 0x1d9819fff Engram arm64  <166b4486f1b732fcbd1cf18a3d8f316a> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1d9952000 - 0x1d9959fff ExtensionFoundation arm64  <3057cf1d42953e77929fb8679c6e9ff9> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
0x1d9ad3000 - 0x1d9adbfff FSEvents arm64  <2018b3b538ba3346ad0c38c0dd50ae58> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1d9adc000 - 0x1d9afbfff FTAWD arm64  <cb695906b83d399084be8dbd6ae8b389> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1d9afc000 - 0x1d9afffff FTClientServices arm64  <ca550f99b27832faa21556deb2e7a364> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1d9b00000 - 0x1d9f12fff FaceCore arm64  <1212449c1d813831a67f01c0bbb73ccd> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1d9f1b000 - 0x1d9f20fff FeatureFlagsSupport arm64  <e1d9daac7ab23bdfa836ac445704ea89> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
0x1d9f21000 - 0x1d9f29fff FeedbackLogger arm64  <ab4f2105d16833c09669ad65b8387d8e> /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
0x1da0b2000 - 0x1da1eefff libFontParser.dylib arm64  <811fcf65dfa1310ba7269cb3184c18c4> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1da1ef000 - 0x1da1f7fff libGSFont.dylib arm64  <23ada823abf434bda35b475e1b402f79> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1da1f8000 - 0x1da235fff libGSFontCache.dylib arm64  <2e6bbc94fcb13b36bb6848ea16466410> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1da299000 - 0x1da2a6fff libhvf.dylib arm64  <c9c2ba49f172327fa09b274b163bebfa> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1da2cc000 - 0x1da2e3fff Futhark arm64  <68f212da64673bf5a405e54d98905b5b> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1dae37000 - 0x1dae40fff libGPUSupportMercury.dylib arm64  <84b17981e5bb35ec840d28547d3248f6> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
0x1daf0d000 - 0x1daf2bfff GenerationalStorage arm64  <e5421432be29351b9a27bc7462df8a3d> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1daf2c000 - 0x1daf39fff GraphVisualizer arm64  <8d7ecf3365e43e499586765506ebd73f> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1daf70000 - 0x1daf7bfff HID arm64  <4121b87277253bc2bd754a4cba7daa72> /System/Library/PrivateFrameworks/HID.framework/HID
0x1db05a000 - 0x1db0cafff Heimdal arm64  <42cd52f7f54736bea11d5bb4ae1312f7> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1db2cc000 - 0x1db343fff HomeSharing arm64  <7c96ce5e48183277b1d2afead6445f65> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1db39d000 - 0x1db3a2fff IDSKVStore arm64  <73479e1d6a2531a28b10570c0cf76bef> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1db6ba000 - 0x1db6c3fff IOKitten arm64  <ebcf65636f953fd092e8a0fc807e5136> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
0x1db6c4000 - 0x1db6c6fff IOSurfaceAccelerator arm64  <d2c560b91ce9359f8aa43eb55cd6b530> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1db6ea000 - 0x1db6f1fff IdleTimerServices arm64  <545551ecfa1a38faa6836766fc80200d> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1db6f9000 - 0x1db6fefff IncomingCallFilter arm64  <ee7c6774a5933ce5ad256b55b68dc7a0> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1db7bd000 - 0x1db7c9fff IntentsFoundation arm64  <801454c3444c3d04840ce557e6aec172> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1db7e3000 - 0x1db7e6fff InternationalTextSearch arm64  <2cd95d117f0631eaa158de4107181f2c> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1db7e7000 - 0x1db802fff IntlPreferences arm64  <655065db99d53d638ef5bf18b4dfc07f> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1dba61000 - 0x1dba67fff LinguisticData arm64  <1d113deee31d3c7aa4136f8a7721d172> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1dbab5000 - 0x1dbaedfff LocalAuthenticationPrivateUI arm64  <7305e6b963e3398eab22cd178df9f378> /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
0x1dbca4000 - 0x1dbca4fff Marco arm64  <7b19828708ec396ab560a8d93384f83c> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1dbe30000 - 0x1dc147fff MediaLibraryCore arm64  <70dbe537580231e385add0f635542d3b> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1dc148000 - 0x1dc1d7fff MediaPlatform arm64  <d720207864df306ba6783f3e3555e8c1> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1dc5bb000 - 0x1dc683fff MetalTools arm64  <b5ad1500f65a3872bed8180b6c3fee2d> /System/Library/PrivateFrameworks/MetalTools.framework/MetalTools
0x1dc6a5000 - 0x1dc6f0fff MetricsKit arm64  <e55dbb4c401a33fb93bdd568adaede04> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1dc704000 - 0x1dc718fff MobileBluetooth arm64  <bc20ab35182736f89facdc754ee9cebf> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1dc798000 - 0x1dc79efff MobileSystemServices arm64  <34a5144899f431068ab1eb0c593a56a8> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1dc879000 - 0x1dc87ffff Netrb arm64  <25e84c85ec463a549d770a75fed95719> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1dc93b000 - 0x1dc954fff NetworkStatistics arm64  <9e20389a661f39b7b2c22c2d718d8253> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1dca09000 - 0x1dca0bfff OAuth arm64  <1e015c64f5e435f19bb32a64ba4149d5> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1dca2a000 - 0x1dca6afff OTSVG arm64  <29902cc4eb1732728b22d4340051a2e6> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1dd066000 - 0x1dd068fff ParsecSubscriptionServiceSupport arm64  <e16df16207663b8ebf2883673b9b377e> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1dd06d000 - 0x1dd095fff Pasteboard arm64  <8326ef1a9c53387683bf62097e6c3ef6> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x1dd0c4000 - 0x1dd0cffff PersonaKit arm64  <ddb14d125c9032888ab748a0e23add78> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1dd0d0000 - 0x1dd0dcfff PersonaUI arm64  <00025b65125e373e8e5d77b44e44f5d6> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1dd0fe000 - 0x1dd0fefff PhoneNumbers arm64  <b48d6337a78e323f8f3985d828f1ae8a> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1dd2aa000 - 0x1dd2e6fff PhotosImagingFoundation arm64  <09e384900c7a3f57bdcd12b8187f36b8> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1dd2e7000 - 0x1dd332fff PhysicsKit arm64  <8700df181762319689b0666d96317e0b> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1dd3e6000 - 0x1dd3f1fff PointerUIServices arm64  <7af31d2a3bfe3889984fd2123249d11f> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1de85c000 - 0x1de866fff RTCReporting arm64  <b03b6aaa9a88351a8d9d74498a139963> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1deae4000 - 0x1deaf5fff RemoteTextInput arm64  <1f0b5969dcc33ee1b3ef5d18f71bafce> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1deaf6000 - 0x1deb5bfff RemoteUI arm64  <6554860eb6873b688ae2de66b7e841bc> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x1deb89000 - 0x1deb8dfff RevealCore arm64  <1dbbab8b8aab3e60b3a65e008771f25d> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1deba3000 - 0x1def1cfff SDAPI arm64  <2ca1b92d06443e528dfbe57c2b6de578> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
0x1df1d5000 - 0x1df1f4fff ScreenshotServices arm64  <8b4b6fa4bc2f35249cd68fd6af9039bd> /System/Library/PrivateFrameworks/ScreenshotServices.framework/ScreenshotServices
0x1df439000 - 0x1df442fff SignpostCollection arm64  <32cfeee632f130839759f0825bea533f> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1df443000 - 0x1df443fff SignpostMetrics arm64  <5cfb0c69eb7e31c0a20c0dbb5da662c1> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1df445000 - 0x1df483fff SignpostSupport arm64  <297b123ed97a3d3e911caa9e50c9f51b> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1dfcc6000 - 0x1dfcc6fff SoftLinking arm64  <97fdfaaec8e5375bbcc4f54ccb9d35ed> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
0x1e01b7000 - 0x1e01f4fff StreamingZip arm64  <728b1d8e97b23e95a25895b8c4ddd8e4> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1e01fc000 - 0x1e0206fff SymptomDiagnosticReporter arm64  <b0f71b4cf8323f8f94c0ac3a51fb7a8f> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1e0207000 - 0x1e0211fff SymptomReporter arm64  <b30b7e2ed4503867879128cb862c1afc> /System/Library/PrivateFrameworks/SymptomReporter.framework/SymptomReporter
0x1e0237000 - 0x1e0252fff SymptomPresentationFeed arm64  <32326bc9953c3691b86968625b0eb2f5> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1e028d000 - 0x1e029dfff TCC arm64  <7d96fad4a42e3cfc9fa0d0819adc51c4> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1e0b4b000 - 0x1e0bfdfff TextureIO arm64  <8d6baa10d66b347f966b89ecb1ad7882> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1e0e0d000 - 0x1e0e14fff URLFormatting arm64  <a9906aa18ea53cf7a839182c8442d836> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1e13ed000 - 0x1e1416fff UsageTracking arm64  <5ae190ff14fd3af081a843cd35bc72cb> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1e1eaa000 - 0x1e1f6cfff VoiceTrigger arm64  <75a310f8cf6c3d9f9ef3213e818310d8> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger
0x1e202e000 - 0x1e202ffff WatchdogClient arm64  <fd203ca56dc93fc0a6a4c565efccaee7> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1e22ef000 - 0x1e2a17fff libwebrtc.dylib arm64  <95ef997e2cda36829d1e60e5af1001f2> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1e2a90000 - 0x1e2aa5fff WebUI arm64  <08d89ecbf82d32bdaf5436faf72c56ce> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1e2fa7000 - 0x1e2faafff XCTTargetBootstrap arm64  <4db35f739c0e351dbab043c5d3f4c6ba> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1e3006000 - 0x1e3025fff caulk arm64  <3862d3b38b0339c096e2e1ecbc1eff2e> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1e545c000 - 0x1e5461fff kperf arm64  <b50ef8fda61f3350b15fd654c4338625> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1e5462000 - 0x1e546afff kperfdata arm64  <86e99d81f33a34439b09a139668b516d> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1e546b000 - 0x1e5480fff libEDR arm64  <a09e7c62d2903d39b63575e7d9275262> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1e549c000 - 0x1e54acfff perfdata arm64  <d4bad467622e32c2b1b67c655a3dd666> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1e54ad000 - 0x1e54dbfff vCard arm64  <fb429e5a3c2032a28558d7ec1d1deb10> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1e5dee000 - 0x1e5e27fff libAWDSupport.dylib arm64  <0900d15497f13a82be19a2f57c4a6373> /usr/lib/libAWDSupport.dylib
0x1e5e28000 - 0x1e61d8fff libAWDSupportFramework.dylib arm64  <fbd4315c19843f1582f8ae8edfd4f9cc> /usr/lib/libAWDSupportFramework.dylib
0x1e6352000 - 0x1e6361fff libAudioStatistics.dylib arm64  <941dacf1afb63a5f8e674a0b35d6d12b> /usr/lib/libAudioStatistics.dylib
0x1e64fb000 - 0x1e652dfff libCRFSuite.dylib arm64  <38dd74de263e32c4aa9f98a5c1dbdf33> /usr/lib/libCRFSuite.dylib
0x1e652e000 - 0x1e652ffff libCTGreenTeaLogger.dylib arm64  <71c2384339923959a065ad15d9ea065a> /usr/lib/libCTGreenTeaLogger.dylib
0x1e6530000 - 0x1e653afff libChineseTokenizer.dylib arm64  <0d66a477057a345e969675522f8b9d92> /usr/lib/libChineseTokenizer.dylib
0x1e67d4000 - 0x1e67dbfff libIOReport.dylib arm64  <47776e894e7c3d3cb063ed9653f68742> /usr/lib/libIOReport.dylib
0x1e6851000 - 0x1e6858fff libMatch.1.dylib arm64  <a4308b309cfe31e986adcd0e6f64f986> /usr/lib/libMatch.1.dylib
0x1e696c000 - 0x1e6971fff libThaiTokenizer.dylib arm64  <29c767a8fdb73c91b4fe13382b993043> /usr/lib/libThaiTokenizer.dylib
0x1e6aa4000 - 0x1e6aa6fff libapp_launch_measurement.dylib arm64  <d1735d998c2d3be78b696b6d39142141> /usr/lib/libapp_launch_measurement.dylib
0x1e6aa7000 - 0x1e6abdfff libapple_nghttp2.dylib arm64  <15aed6e3e0873b0599ed6efe290b728a> /usr/lib/libapple_nghttp2.dylib
0x1e6abe000 - 0x1e6b4ffff libate.dylib arm64  <0c19f1907abc3e0ea07189310a496ee2> /usr/lib/libate.dylib
0x1e6bde000 - 0x1e6beefff libbsm.0.dylib arm64  <143fbc15b02d338fb6a1b39767b0d8d6> /usr/lib/libbsm.0.dylib
0x1e6bef000 - 0x1e6bfbfff libbz2.1.0.dylib arm64  <080f312258a2361d9557680fa41fb3ea> /usr/lib/libbz2.1.0.dylib
0x1e6bfc000 - 0x1e6bfcfff libcharset.1.dylib arm64  <d2bfd5647e693ce2acbd75d812dcc6e1> /usr/lib/libcharset.1.dylib
0x1e6bfd000 - 0x1e6c0efff libcmph.dylib arm64  <957916b8197333c095f7b195badcf739> /usr/lib/libcmph.dylib
0x1e6c0f000 - 0x1e6c26fff libcompression.dylib arm64  <aed5585423dc3ee98604ba680abd1af2> /usr/lib/libcompression.dylib
0x1e6c27000 - 0x1e6c3cfff libcoretls.dylib arm64  <10f0a6718f0f3a79bb127189648ca0fd> /usr/lib/libcoretls.dylib
0x1e6c3d000 - 0x1e6c3efff libcoretls_cfhelpers.dylib arm64  <35c08391a163309589115dd323a82c36> /usr/lib/libcoretls_cfhelpers.dylib
0x1e6c62000 - 0x1e6c68fff libcupolicy.dylib arm64  <ef0f2a7ba6e936af8936e0db17e323ac> /usr/lib/libcupolicy.dylib
0x1e6c69000 - 0x1e6c70fff libdns_services.dylib arm64  <354111811df03f3dbc9422a2f0029e42> /usr/lib/libdns_services.dylib
0x1e6c71000 - 0x1e6c8dfff libedit.3.dylib arm64  <816a737710183b56b430f6f012547f19> /usr/lib/libedit.3.dylib
0x1e6c8e000 - 0x1e6c8efff libenergytrace.dylib arm64  <49849d3b12be3842a0dea70c436742c5> /usr/lib/libenergytrace.dylib
0x1e6c8f000 - 0x1e6ca6fff libexpat.1.dylib arm64  <9380047a0ed13d20aa54a8ba1c7238d7> /usr/lib/libexpat.1.dylib
0x1e6cd3000 - 0x1e6cd7fff libgermantok.dylib arm64  <e73d3ce2fa013e018127019335d46924> /usr/lib/libgermantok.dylib
0x1e6cd8000 - 0x1e6cddfff libheimdal-asn1.dylib arm64  <a250977984703286b4315bd0e88feb85> /usr/lib/libheimdal-asn1.dylib
0x1e6cde000 - 0x1e6dcffff libiconv.2.dylib arm64  <d4a9a55a604038338f69b29eddf4984a> /usr/lib/libiconv.2.dylib
0x1e6df3000 - 0x1e6df4fff liblangid.dylib arm64  <4bb82b46fc223c43b783c6a6bd162e1b> /usr/lib/liblangid.dylib
0x1e6df5000 - 0x1e6e00fff liblockdown.dylib arm64  <7c5295079d7e3d42bc17efc5e7f43fbc> /usr/lib/liblockdown.dylib
0x1e6e01000 - 0x1e6e19fff liblzma.5.dylib arm64  <3c34ab768cdb312aba64cb27ef9ec744> /usr/lib/liblzma.5.dylib
0x1e6e47000 - 0x1e6e9afff libmecab.dylib arm64  <4cc93102498936959dd3af5cd2af2a89> /usr/lib/libmecab.dylib
0x1e6e9b000 - 0x1e70c3fff libmecabra.dylib arm64  <726149fd8b053eb99a419645d17ba944> /usr/lib/libmecabra.dylib
0x1e70c4000 - 0x1e70d6fff libmis.dylib arm64  <38cd9bee64a536f397b90688a3398702> /usr/lib/libmis.dylib
0x1e70d7000 - 0x1e70ecfff libnetworkextension.dylib arm64  <74a1f61b74a932ee9b7dc0755cc4ba39> /usr/lib/libnetworkextension.dylib
0x1e7486000 - 0x1e74b9fff libpcap.A.dylib arm64  <7480e8ed4b0a36aea58f3f22f7e371dc> /usr/lib/libpcap.A.dylib
0x1e74ba000 - 0x1e74c7fff libperfcheck.dylib arm64  <616d38d57d6e3911ab6af0d9d561d9e4> /usr/lib/libperfcheck.dylib
0x1e74cf000 - 0x1e74e0fff libprequelite.dylib arm64  <6be5e72e06f733e18fa03f8477252e2e> /usr/lib/libprequelite.dylib
0x1e74e1000 - 0x1e74f2fff libprotobuf-lite.dylib arm64  <b98ef8a9292334f986913ee4e9b7e5ef> /usr/lib/libprotobuf-lite.dylib
0x1e74f3000 - 0x1e7551fff libprotobuf.dylib arm64  <38ef6eb728c636059bc52eaea57905a3> /usr/lib/libprotobuf.dylib
0x1e7552000 - 0x1e75affff libquic.dylib arm64  <043cf124e530377196b3528ceabcdf70> /usr/lib/libquic.dylib
0x1e75b0000 - 0x1e75c7fff libresolv.9.dylib arm64  <c2903025c58a3c7ca5a2fb41ca23dcc4> /usr/lib/libresolv.9.dylib
0x1e75c8000 - 0x1e75cafff libsandbox.1.dylib arm64  <18a398f15acf3f22a42e79d5a18e8d3a> /usr/lib/libsandbox.1.dylib
0x1e7612000 - 0x1e7615fff libutil.dylib arm64  <855d6c2ba0fe3bb987fc1750eaa844bb> /usr/lib/libutil.dylib
0x1e7616000 - 0x1e76fbfff libxml2.2.dylib arm64  <a1fa300be30537d5b8cd229bf10711f6> /usr/lib/libxml2.2.dylib
0x1e7700000 - 0x1e7728fff libxslt.1.dylib arm64  <65b0eb3790f631438487ddf4da152208> /usr/lib/libxslt.1.dylib
0x1e7729000 - 0x1e773afff libz.1.dylib arm64  <b5c9f814a8163e21a9b1a7fb9cd49723> /usr/lib/libz.1.dylib
0x1e776f000 - 0x1e7771fff liblog_network.dylib arm64  <2697efa6417935c2a9b1aeb27a969c56> /usr/lib/log/liblog_network.dylib
0x1e777a000 - 0x1e7781fff libswiftAVFoundation.dylib arm64  <092e199e70cd316186cdf50c12abdcdd> /usr/lib/swift/libswiftAVFoundation.dylib
0x1e7782000 - 0x1e77e1fff libswiftAccelerate.dylib arm64  <6de613494bed3233ab8b72a3ac8eedd9> /usr/lib/swift/libswiftAccelerate.dylib
0x1e7808000 - 0x1e7810fff libswiftCoreAudio.dylib arm64  <503562067bbb3457bf701bc123419392> /usr/lib/swift/libswiftCoreAudio.dylib
0x1e7816000 - 0x1e7816fff libswiftCoreFoundation.dylib arm64  <aeedfc18a720335bb6e52de001da4304> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1e7817000 - 0x1e7817fff libswiftCoreImage.dylib arm64  <50c208a74ed63984ad35704a09ea580d> /usr/lib/swift/libswiftCoreImage.dylib
0x1e7818000 - 0x1e781afff libswiftCoreLocation.dylib arm64  <ff4546fa4db93cbbb25c192c2494427f> /usr/lib/swift/libswiftCoreLocation.dylib
0x1e781b000 - 0x1e7824fff libswiftCoreMIDI.dylib arm64  <01949680f14a3dc1abe504eb8d6afeb8> /usr/lib/swift/libswiftCoreMIDI.dylib
0x1e7829000 - 0x1e7860fff libswiftCoreMedia.dylib arm64  <2f9b2f3a084038de9e092b1c5f45950e> /usr/lib/swift/libswiftCoreMedia.dylib
0x1e786d000 - 0x1e7876fff libswiftDarwin.dylib arm64  <2f4513fb62d5359a9227bde0bfccaa31> /usr/lib/swift/libswiftDarwin.dylib
0x1e7895000 - 0x1e7899fff libswiftMetal.dylib arm64  <7befc66aa88a307c86842305b2d41194> /usr/lib/swift/libswiftMetal.dylib
0x1e78ff000 - 0x1e78fffff libswiftPhotos.dylib arm64  <6bd17fd9f9793767a61e5dedb24370bd> /usr/lib/swift/libswiftPhotos.dylib
0x1e7905000 - 0x1e7906fff libswiftQuartzCore.dylib arm64  <bf3f0ed3317d3a27ad8ba3967af761ae> /usr/lib/swift/libswiftQuartzCore.dylib
0x1e7941000 - 0x1e7943fff libswiftWebKit.dylib arm64  <274588f8c57431daa7ac59a5f95637a8> /usr/lib/swift/libswiftWebKit.dylib
0x1e7944000 - 0x1e7955fff libswiftos.dylib arm64  <9f640746feba320087b95977a146eb82> /usr/lib/swift/libswiftos.dylib
0x1e7956000 - 0x1e7968fff libswiftsimd.dylib arm64  <5525f7c59d9e3aa19e609d059f397f15> /usr/lib/swift/libswiftsimd.dylib
0x1e7969000 - 0x1e796efff libcache.dylib arm64  <c03e75419e3838759e85571c9c91265e> /usr/lib/system/libcache.dylib
0x1e796f000 - 0x1e797bfff libcommonCrypto.dylib arm64  <398a60893251355c8e2a4a756006b994> /usr/lib/system/libcommonCrypto.dylib
0x1e797c000 - 0x1e7980fff libcompiler_rt.dylib arm64  <3b729469f4bc324f887d7760ae88dfdc> /usr/lib/system/libcompiler_rt.dylib
0x1e7981000 - 0x1e7989fff libcopyfile.dylib arm64  <c44a9ca1863931de8b239455d58fd5f6> /usr/lib/system/libcopyfile.dylib
0x1e7a6a000 - 0x1e7a6afff liblaunch.dylib arm64  <239b4628269d3a30befc4a1cdde62200> /usr/lib/system/liblaunch.dylib
0x1e7a6b000 - 0x1e7a70fff libmacho.dylib arm64  <1f4e88a2765131f19fbc3e4e4778513d> /usr/lib/system/libmacho.dylib
0x1e7a71000 - 0x1e7a73fff libremovefile.dylib arm64  <20332a9fbf18357daa68f9d3c38de5ef> /usr/lib/system/libremovefile.dylib
0x1e7a74000 - 0x1e7a75fff libsystem_blocks.dylib arm64  <c82a363dbe2937079b856b63e9750ac6> /usr/lib/system/libsystem_blocks.dylib
0x1e7a76000 - 0x1e7a78fff libsystem_collections.dylib arm64  <529aa57f7ed83d6582239e358795e383> /usr/lib/system/libsystem_collections.dylib
0x1e7a79000 - 0x1e7a7dfff libsystem_configuration.dylib arm64  <7aeaf1d58b8c3916b207dfe53f70d36f> /usr/lib/system/libsystem_configuration.dylib
0x1e7a7e000 - 0x1e7a8efff libsystem_containermanager.dylib arm64  <0e46f112fbab39ae80c66e7f2d8a88c7> /usr/lib/system/libsystem_containermanager.dylib
0x1e7a8f000 - 0x1e7a90fff libsystem_coreservices.dylib arm64  <0676c79bd19e3733bc767cb4bb5ea03e> /usr/lib/system/libsystem_coreservices.dylib
0x1e7a91000 - 0x1e7a9afff libsystem_darwin.dylib arm64  <2ec6f22cd9323dadae5f69e95eead17d> /usr/lib/system/libsystem_darwin.dylib
0x1e7a9b000 - 0x1e7aa3fff libsystem_dnssd.dylib arm64  <0105e492820c3b28818db2a4faabc858> /usr/lib/system/libsystem_dnssd.dylib
0x1e7aa4000 - 0x1e7aa6fff libsystem_featureflags.dylib arm64  <6740a2aaf41b3c3a8065cf127b500502> /usr/lib/system/libsystem_featureflags.dylib
0x1e7aa7000 - 0x1e7ad4fff libsystem_m.dylib arm64  <5a30e5550a8d3d4f958099a8e166f84b> /usr/lib/system/libsystem_m.dylib
0x1e7ad5000 - 0x1e7adffff libsystem_platform.dylib arm64  <4eb8aaf4abbe393ebeb7709438b60b01> /usr/lib/system/libsystem_platform.dylib
0x1e7ae0000 - 0x1e7ae0fff libsystem_product_info_filter.dylib arm64  <9f86cf4ccb7633dd847ad851dafe9fde> /usr/lib/system/libsystem_product_info_filter.dylib
0x1e7ae1000 - 0x1e7af1fff libsystem_pthread.dylib arm64  <9a31891727db312e91d681661034fcc6> /usr/lib/system/libsystem_pthread.dylib
0x1e7af2000 - 0x1e7af5fff libsystem_sandbox.dylib arm64  <98c632a1deb039d3924f81fed09a1cd7> /usr/lib/system/libsystem_sandbox.dylib
0x1e7af6000 - 0x1e7afffff libunwind.dylib arm64  <a8f36de8879b32c2a0eeceb65e6d8fe7> /usr/lib/system/libunwind.dylib
0x1e7b00000 - 0x1e7b31fff libxpc.dylib arm64  <2c2fdbd6c4a93dfbb3850ecf6f0f97f8> /usr/lib/system/libxpc.dylib
0x1e8322000 - 0x1e8334fff SpotlightLinguistics arm64  <7f9b5278e82f3b0282155c9cbe747c65> /System/Library/PrivateFrameworks/SpotlightLinguistics.framework/SpotlightLinguistics

EOF
@paulb777
Copy link
Member

Closing now that the fix is staged for next week's 7.0.0 release.

@firebase firebase locked and limited conversation to collaborators Nov 23, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
4 participants