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 when setting value to an existing object #5761

Closed
michalrentka opened this issue Aug 19, 2022 · 7 comments · Fixed by #5993
Closed

Crash when setting value to an existing object #5761

michalrentka opened this issue Aug 19, 2022 · 7 comments · Fixed by #5993

Comments

@michalrentka
Copy link

Expected results

App shouldn't crash when setting value to existing object.

Actual Results

App crashes when accessing existing object and setting value to it.

Steps & Code to Reproduce

I can't reproduce this issue myself, but I can see multiple reports of this on TestFlight. The app has a background sync of data from our server. This issue happens when I want to update an existing object with a new version number after the sync. I've seen reports from multiple users which point to this issue in the same part of the app (same database write).

All writes in the app run on background serial queues. All reads (accessed by UI) run on main queue. There can be multiple serial queues writing in background at the same time.

The crash happens here: https://github.com/zotero/zotero-ios/blob/5c27b78a64eba144e67113cd10d1687ff97b920a/Zotero/Controllers/Sync/SyncActions/StoreVersionSyncAction.swift#L27

UpdateVersionsDbRequest can be found here: https://github.com/zotero/zotero-ios/blob/5c27b78a64eba144e67113cd10d1687ff97b920a/Zotero/Controllers/Database/Requests/UpdateVersionsDbRequest.swift#L25-L67.

I have a simple wrapper for accessing Realm found here: https://github.com/zotero/zotero-ios/blob/5c27b78a64eba144e67113cd10d1687ff97b920a/Zotero/Controllers/Database/RealmDbStorage.swift#L92-L99
https://github.com/zotero/zotero-ios/blob/5c27b78a64eba144e67113cd10d1687ff97b920a/Zotero/Controllers/Database/RealmDbStorage.swift#L121-L136

RCustomLibrary and RGroup are simple realm objects, both with RVersions: EmbeddedObject:
https://github.com/zotero/zotero-ios/blob/master/Zotero/Models/Database/RCustomLibrary.swift
https://github.com/zotero/zotero-ios/blob/master/Zotero/Models/Database/RGroup.swift
https://github.com/zotero/zotero-ios/blob/master/Zotero/Models/Database/RVersions.swift

To sum it up: the sync process happens in background serial queue. When it's finished for given object type (item, collection, search, ...) it wants to write new version value to RVersions object stored either in RCustomLibrary or RGroup, where RVersions is an EmbeddedObject. New Realm is opened (in the same background serial queue), new write transaction is started in autoreleasepool, a RCustomLibrary or RGroup object is fetched from database and there is an attempt to write to RVersions object when the app crashes.

Incident Identifier: 8B274DC3-3A2F-4D1D-9C08-7008ACBF41B7
Hardware Model:      iPad13,10
Process:             Zotero [1611]
Path:                /private/var/containers/Bundle/Application/E3514FDA-B0A9-424F-98E3-9F150245D2EE/Zotero.app/Zotero
Identifier:          org.zotero.ios.Zotero
Version:             1.0.4 (8)
AppStoreTools:       13F100
AppVariant:          1:iPad13,10:15
Beta:                YES
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           org.zotero.ios.Zotero [781]

Date/Time:           2022-08-17 18:54:49.5780 -0700
Launch Time:         2022-08-17 18:54:46.8581 -0700
OS Version:          iPhone OS 15.6.1 (19G82)
Release Type:        User
Baseband Version:    2.70.01
Report Version:      104

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


Thread 0 name:
Thread 0:
0   libsystem_kernel.dylib        	0x00000001b73674a0 0x1b7366000 + 5280
1   libsystem_kernel.dylib        	0x00000001b7367ae4 0x1b7366000 + 6884
2   CoreFoundation                	0x000000018039fd30 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2646)
3   CoreFoundation                	0x00000001803a41bc __CFRunLoopRun + 1180 (CFRunLoop.c:3000)
4   CoreFoundation                	0x00000001803b7bc8 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3268)
5   GraphicsServices              	0x000000019c523374 GSEventRunModal + 164 (GSEvent.c:2200)
6   UIKitCore                     	0x0000000182d2bb58 -[UIApplication _run] + 1100 (UIApplication.m:3511)
7   UIKitCore                     	0x0000000182aad090 UIApplicationMain + 364 (UIApplication.m:5064)
8   Zotero                        	0x0000000100163890 main + 204 (main.swift:13)
9   dyld                          	0x0000000101505da4 start + 520 (dyldMain.cpp:879)

Thread 1:
0   libsystem_pthread.dylib       	0x00000001f0b24e54 0x1f0b24000 + 3668

Thread 2:
0   libsystem_pthread.dylib       	0x00000001f0b24e54 0x1f0b24000 + 3668

Thread 3 name:
Thread 3:
0   libsystem_kernel.dylib        	0x00000001b73699cc 0x1b7366000 + 14796
1   libsystem_kernel.dylib        	0x00000001b73690bc 0x1b7366000 + 12476
2   libsqlite3.dylib              	0x000000019f3a92f4 unixShmSystemLock + 196 (sqlite3.c:37379)
3   libsqlite3.dylib              	0x000000019f317008 unixShmLock + 276 (sqlite3.c:43252)
4   libsqlite3.dylib              	0x000000019f3130c8 sqlite3PagerSharedLock + 104 (sqlite3.c:24883)
5   libsqlite3.dylib              	0x000000019f312b60 sqlite3BtreeBeginTrans + 1472 (sqlite3.c:75474)
6   libsqlite3.dylib              	0x000000019f332dc4 sqlite3VdbeExec + 3000 (sqlite3.c:97710)
7   libsqlite3.dylib              	0x000000019f331248 sqlite3_step + 312 (sqlite3.c:92283)
8   libsqlite3.dylib              	0x000000019f2f6d04 sqlite3_exec + 356 (sqlite3.c:134587)
9   CFNetwork                     	0x0000000180c054f0 -[NSURLStorageURLCacheDB execSQLStatement:onConnection:toCompletionWithRetry:writeLockHeld:] + 104 (NSURLStorageURLCacheDB.mm:2011)
10  CFNetwork                     	0x0000000180c99404 ___ZN12__CFURLCache23CreateAndStoreCacheNodeEP16__CFURLCacheNodePK20_CFCachedURLResponsePK10__CFStringPK13_CFURLRequestPKvbRb_block_invoke + 260 (NSURLStorageURLCacheDB.mm:2084)
11  libdispatch.dylib             	0x00000001800a8830 _dispatch_block_async_invoke2 + 148 (queue.c:560)
12  libdispatch.dylib             	0x0000000180099a30 _dispatch_client_callout + 20 (object.m:560)
13  libdispatch.dylib             	0x00000001800a1124 _dispatch_lane_serial_drain + 668 (inline_internal.h:2622)
14  libdispatch.dylib             	0x00000001800a1cb4 _dispatch_lane_invoke + 444 (queue.c:3944)
15  libdispatch.dylib             	0x00000001800ac500 _dispatch_workloop_worker_thread + 648 (queue.c:6732)
16  libsystem_pthread.dylib       	0x00000001f0b250bc 0x1f0b24000 + 4284
17  libsystem_pthread.dylib       	0x00000001f0b24e5c 0x1f0b24000 + 3676

Thread 4 name:
Thread 4 Crashed:
0   libsystem_kernel.dylib        	0x00000001b736db38 0x1b7366000 + 31544
1   libsystem_pthread.dylib       	0x00000001f0b2b3bc 0x1f0b24000 + 29628
2   libsystem_c.dylib             	0x000000018b544524 abort + 168 (abort.c:118)
3   Zotero                        	0x0000000100bf9edc please_report_this_issue_in_github_realm_realm_core + 12 (terminate.cpp:50)
4   Zotero                        	0x0000000100bfa21c realm::util::terminate_internal(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) + 244 (terminate.cpp:123)
5   Zotero                        	0x0000000100bf9f98 realm::util::terminate(char const*, char const*, long, std::initializer_list<realm::util::Printable>&&) + 188 (terminate.cpp:133)
6   Zotero                        	0x0000000100812a64 void realm::util::terminate<realm::NodeHeader::WidthType, realm::NodeHeader::WidthType>(char const*, char const*, long, realm::NodeHeader::WidthType, realm::NodeHeader::WidthType) + 60 (terminate.hpp:45)
7   Zotero                        	0x0000000100a08b58 realm::Node::calc_byte_len(unsigned long, unsigned long) const + 76 (node.cpp:45)
8   Zotero                        	0x0000000100a08ddc realm::Node::do_copy_on_write(unsigned long) + 68 (node.cpp:131)
9   Zotero                        	0x0000000100986e50 realm::Node::copy_on_write() + 28 (node.hpp:299)
10  Zotero                        	0x0000000100986e50 realm::Array::set(unsigned long, long long) + 124 (array.cpp:378)
11  Zotero                        	0x0000000100a102bc realm::Obj& realm::Obj::set<long long>(realm::ColKey, long long, bool) + 436 (obj.cpp:1346)
12  Zotero                        	0x00000001007924cc void (anonymous namespace)::setValue<long long>(RLMObjectBase*, realm::ColKey, long long) + 28 (RLMAccessor.mm:120)
13  Zotero                        	0x00000001007924cc void (anonymous namespace)::kvoSetValue<long long, long long>(RLMObjectBase*, unsigned long, long long) + 112 (RLMAccessor.mm:404)
14  Zotero                        	0x00000001009426a4 Persisted.set(_:value:) + 1104 (PersistedProperty.swift:207)
15  Zotero                        	0x00000001009440e0 specialized static Persisted.subscript.setter + 108 (PersistedProperty.swift:129)
16  Zotero                        	0x0000000100942b4c static Persisted.subscript.setter + 48 (<compiler-generated>:0)
17  Zotero                        	0x000000010046f204 specialized UpdateVersionsDbRequest.update(versions:type:version:) + 264 (UpdateVersionsDbRequest.swift:0)
18  Zotero                        	0x000000010046f060 UpdateVersionsDbRequest.process(in:) + 260 (UpdateVersionsDbRequest.swift:0)
19  Zotero                        	0x000000010046f0e8 protocol witness for DbRequest.process(in:) in conformance UpdateVersionsDbRequest + 32 (<compiler-generated>:0)
20  Zotero                        	0x000000010038a844 $s6Zotero18RealmDbCoordinatorV7perform7requestyAA0C7Request_p_tKFyyKXEfU_ + 44 (RealmDbStorage.swift:134)
21  Zotero                        	0x000000010038a844 partial apply for closure #1 in RealmDbCoordinator.perform(request:) + 68 (<compiler-generated>:0)
22  Zotero                        	0x000000010094fe40 Realm.write<A>(withoutNotifying:_:) + 180 (Realm.swift:258)
23  Zotero                        	0x0000000100389460 RealmDbCoordinator.perform(request:) + 876 (RealmDbStorage.swift:133)
24  Zotero                        	0x0000000100388ecc closure #1 in RealmDbStorage.perform(request:on:) + 400 (RealmDbStorage.swift:95)
25  Zotero                        	0x000000010038a7d8 partial apply for closure #1 in RealmDbStorage.perform(request:on:) + 20 (<compiler-generated>:0)
26  Zotero                        	0x000000010038a7f4 $s6Zotero14RealmDbStorageC32performInAutoreleasepoolIfNeeded33_0C0F801E5634ADE4DF1A4E8CD0CAA38DLL8invokingxxyKXE_tKlFxyKXEfU_yt_Tg5 + 4 (RealmDbStorage.swift:51)
27  Zotero                        	0x000000010038a7f4 partial apply for specialized closure #1 in RealmDbStorage.performInAutoreleasepoolIfNeeded<A>(invoking:) + 20 (<compiler-generated>:0)
28  libswiftObjectiveC.dylib      	0x00000001ae43aa10 autoreleasepool<A>(invoking:) + 64 (ObjectiveC.swift:172)
29  Zotero                        	0x0000000100388b94 $s6Zotero14RealmDbStorageC32performInAutoreleasepoolIfNeeded33_0C0F801E5634ADE4DF1A4E8CD0CAA38DLL8invokingxxyKXE_tKlFyt_Tg5 + 320 (RealmDbStorage.swift:50)
30  Zotero                        	0x0000000100388b94 RealmDbStorage.perform(request:on:) + 668 (RealmDbStorage.swift:93)
31  Zotero                        	0x00000001004f7f48 $s6Zotero14RealmDbStorageCAA0cD0A2aDP7perform7request2onyAA0C7Request_p_So17OS_dispatch_queueCtKFTW + 12 (<compiler-generated>:0)
32  Zotero                        	0x00000001004f7f48 closure #1 in StoreVersionSyncAction.result.getter + 124 (StoreVersionSyncAction.swift:27)
33  Zotero                        	0x000000010061b718 $s7RxSwift21PrimitiveSequenceTypePA2A11SingleTraitO0G0RtzrlE6create9subscribeAA0cD0VyAE7ElementQzGAA10Disposable_pys6ResultOyAMs5Error_pGcc_tFZAaO_pAA11AnyObserverVyAMGcfU_ + 60 (Single.swift:32)
34  Zotero                        	0x000000010061b718 partial apply for closure #1 in static PrimitiveSequenceType<>.create(subscribe:) + 104 (<compiler-generated>:0)
35  Zotero                        	0x00000001005d3dac $s7RxSwift23AnonymousObservableSink33_95EBF5692819D58425EC2DD0512D115ALLC3runyAA10Disposable_pAA0cD0ACLLCy7ElementQzGF + 60 (Create.swift:60)
36  Zotero                        	0x00000001005d3dac AnonymousObservable.run<A>(_:cancel:) + 240 (Create.swift:75)
37  Zotero                        	0x0000000100605728 closure #1 in Producer.subscribe<A>(_:) + 228 (Producer.swift:26)
38  Zotero                        	0x0000000100604e14 specialized CurrentThreadScheduler.schedule<A>(_:action:) + 168 (CurrentThreadScheduler.swift:94)
39  Zotero                        	0x0000000100604d14 Producer.subscribe<A>(_:) + 496 (Producer.swift:24)
40  Zotero                        	0x00000001005fa600 protocol witness for ObservableType.subscribe<A>(_:) in conformance Observable<A> + 28 (<compiler-generated>:0)
41  Zotero                        	0x000000010061fcec closure #1 in SubscribeOnSink.run() + 152 (SubscribeOn.swift:78)
42  Zotero                        	0x00000001005de190 $s7RxSwift26DispatchQueueConfigurationV8schedule_6actionAA10Disposable_px_AaF_pxctlFyycfU_ + 8 (DispatchQueueConfiguration.swift:27)
43  Zotero                        	0x00000001005de190 partial apply for closure #1 in DispatchQueueConfiguration.schedule<A>(_:action:) + 120 (<compiler-generated>:0)
44  Zotero                        	0x00000001005d3594 thunk for @escaping @callee_guaranteed () -> () + 28 (<compiler-generated>:0)
45  libdispatch.dylib             	0x0000000180097e6c _dispatch_call_block_and_release + 32 (init.c:1517)
46  libdispatch.dylib             	0x0000000180099a30 _dispatch_client_callout + 20 (object.m:560)
47  libdispatch.dylib             	0x00000001800a1124 _dispatch_lane_serial_drain + 668 (inline_internal.h:2622)
48  libdispatch.dylib             	0x00000001800a1cb4 _dispatch_lane_invoke + 444 (queue.c:3944)
49  libdispatch.dylib             	0x00000001800a1000 _dispatch_lane_serial_drain + 376 (inline_internal.h:0)
50  libdispatch.dylib             	0x00000001800a1c80 _dispatch_lane_invoke + 392 (queue.c:3944)
51  libdispatch.dylib             	0x00000001800ac500 _dispatch_workloop_worker_thread + 648 (queue.c:6732)
52  libsystem_pthread.dylib       	0x00000001f0b250bc 0x1f0b24000 + 4284
53  libsystem_pthread.dylib       	0x00000001f0b24e5c 0x1f0b24000 + 3676

Thread 5:
0   libsystem_pthread.dylib       	0x00000001f0b24e54 0x1f0b24000 + 3668

Thread 6 name:
Thread 6:
0   libsystem_kernel.dylib        	0x00000001b73674a0 0x1b7366000 + 5280
1   libsystem_kernel.dylib        	0x00000001b7367ae4 0x1b7366000 + 6884
2   CoreFoundation                	0x000000018039fd30 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2646)
3   CoreFoundation                	0x00000001803a41bc __CFRunLoopRun + 1180 (CFRunLoop.c:3000)
4   CoreFoundation                	0x00000001803b7bc8 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3268)
5   Foundation                    	0x0000000181baa444 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 236 (NSRunLoop.m:373)
6   Foundation                    	0x0000000181bebe0c -[NSRunLoop(NSRunLoop) runUntilDate:] + 92 (NSRunLoop.m:420)
7   UIKitCore                     	0x0000000182ca5cc4 -[UIEventFetcher threadMain] + 524 (UIEventFetcher.m:1167)
8   Foundation                    	0x0000000181bfa41c __NSThread__start__ + 808 (NSThread.m:972)
9   libsystem_pthread.dylib       	0x00000001f0b259ac 0x1f0b24000 + 6572
10  libsystem_pthread.dylib       	0x00000001f0b24e68 0x1f0b24000 + 3688

Thread 7:
0   libsystem_pthread.dylib       	0x00000001f0b24e54 0x1f0b24000 + 3668

Thread 8:
0   libsystem_kernel.dylib        	0x00000001b73674a0 0x1b7366000 + 5280
1   libsystem_kernel.dylib        	0x00000001b7367ae4 0x1b7366000 + 6884
2   Zotero                        	0x0000000100c2cffc exception_server_thread + 188 (PLCrashMachExceptionServer.m:674)
3   libsystem_pthread.dylib       	0x00000001f0b259ac 0x1f0b24000 + 6572
4   libsystem_pthread.dylib       	0x00000001f0b24e68 0x1f0b24000 + 3688

Thread 9 name:
Thread 9:
0   libsystem_kernel.dylib        	0x00000001b7368e18 0x1b7366000 + 11800
1   Zotero                        	0x0000000100a345bc realm::_impl::ExternalCommitHelper::listen() + 160 (external_commit_helper.cpp:220)
2   Zotero                        	0x0000000100a349b0 realm::_impl::ExternalCommitHelper::ExternalCommitHelper(realm::_impl::RealmCoordinator&)::$_0::operator()() const + 4 (external_commit_helper.cpp:176)
3   Zotero                        	0x0000000100a349b0 decltype(static_cast<realm::_impl::ExternalCommitHelper::ExternalCommitHelper(realm::_impl::RealmCoordinator&)::$_0>(fp)()) std::__1::__invoke<realm::_impl::ExternalCommitHelper::ExternalCommitHelp... + 4 (type_traits:3918)
4   Zotero                        	0x0000000100a349b0 void std::__1::__thread_execute<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, realm::_impl::ExternalCommitHelper::ExternalCommitHelper(realm... + 4 (thread:287)
5   Zotero                        	0x0000000100a349b0 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, realm::_impl::ExternalCommitHelper::ExternalCom... + 52 (thread:298)
6   libsystem_pthread.dylib       	0x00000001f0b259ac 0x1f0b24000 + 6572
7   libsystem_pthread.dylib       	0x00000001f0b24e68 0x1f0b24000 + 3688

Thread 10:
0   libsystem_pthread.dylib       	0x00000001f0b24e54 0x1f0b24000 + 3668

Thread 11 name:
Thread 11:
0   libsystem_kernel.dylib        	0x00000001b73674a0 0x1b7366000 + 5280
1   libsystem_kernel.dylib        	0x00000001b7367ae4 0x1b7366000 + 6884
2   CoreFoundation                	0x000000018039fd30 __CFRunLoopServiceMachPort + 372 (CFRunLoop.c:2646)
3   CoreFoundation                	0x00000001803a41bc __CFRunLoopRun + 1180 (CFRunLoop.c:3000)
4   CoreFoundation                	0x00000001803b7bc8 CFRunLoopRunSpecific + 600 (CFRunLoop.c:3268)
5   CFNetwork                     	0x0000000180e341dc +[__CFN_CoreSchedulingSetRunnable _run:] + 472 (CoreSchedulingSet.mm:1372)
6   Foundation                    	0x0000000181bfa41c __NSThread__start__ + 808 (NSThread.m:972)
7   libsystem_pthread.dylib       	0x00000001f0b259ac 0x1f0b24000 + 6572
8   libsystem_pthread.dylib       	0x00000001f0b24e68 0x1f0b24000 + 3688


Thread 4 crashed with ARM Thread State (64-bit):
    x0: 0x0000000000000000   x1: 0x0000000000000000   x2: 0x0000000000000000   x3: 0x0000000000000000
    x4: 0x0000000000000012   x5: 0x000000014003fc00   x6: 0x0000000000001800   x7: 0x0000000000000000
    x8: 0x162ee1dd066a2d4d   x9: 0x162ee1dc6986dd4d  x10: 0x00000000007bca00  x11: 0x0000000000bf3d01
   x12: 0x0000000000004009  x13: 0x0000000140040000  x14: 0x0000000000003fff  x15: 0x000000000000dc19
   x16: 0x0000000000000148  x17: 0x000000016fecf000  x18: 0x0000000000000000  x19: 0x0000000000000006
   x20: 0x0000000000002203  x21: 0x000000016fecf0e0  x22: 0x000000016fecd210  x23: 0x0000000100cca106
   x24: 0x0000000107a058b0  x25: 0x000000000027d8b0  x26: 0x0000000282bc3b80  x27: 0x0000000000000004
   x28: 0x000000016fecd838   fp: 0x000000016fecd150   lr: 0x00000001f0b2b3bc
    sp: 0x000000016fecd130   pc: 0x00000001b736db38 cpsr: 0x40001000
   esr: 0x56000080  Address size fault


Binary Images:
0x10015c000 - 0x100e9ffff Zotero arm64  <ae979ea4c9fd3e98bbded9094e52600f> /private/var/containers/Bundle/Application/E3514FDA-B0A9-424F-98E3-9F150245D2EE/Zotero.app/Zotero
0x1014ec000 - 0x101543fff dyld arm64e  <66e1fb2668f8379ba052eb8b8291b5e1> /usr/lib/dyld
0x180096000 - 0x1800dbfff libdispatch.dylib arm64e  <e3ea4f635d11342aaf199f58dbc8e259> /usr/lib/system/libdispatch.dylib
0x180399000 - 0x1807eefff CoreFoundation arm64e  <6b22dd8135853be6bc77ba19810ec0f2> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x180bbc000 - 0x18107dfff CFNetwork arm64e  <106410ffdd4f3527ad531980fe8b0ddd> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x181b91000 - 0x181e9bfff Foundation arm64e  <ee1abaf23d7137fb906715aa79528619> /System/Library/Frameworks/Foundation.framework/Foundation
0x182817000 - 0x1840b4fff UIKitCore arm64e  <137a95aada6d332cbc01e13bb9b6e317> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x18b524000 - 0x18b5a3fff libsystem_c.dylib arm64e  <86a1a24ace353769ba6960f28353281e> /usr/lib/system/libsystem_c.dylib
0x19c522000 - 0x19c52afff GraphicsServices arm64e  <a094e7b51d4037c5902756d86988ec4b> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x19f2ed000 - 0x19f485fff libsqlite3.dylib arm64e  <f9afcada4db33c15985eedb2dac7b25c> /usr/lib/libsqlite3.dylib
0x1ae439000 - 0x1ae43bfff libswiftObjectiveC.dylib arm64e  <7eb9c85783d83c8bbf9bf55779a9ac76> /usr/lib/swift/libswiftObjectiveC.dylib
0x1b7366000 - 0x1b739bfff libsystem_kernel.dylib arm64e  <1fb39303587b320eaeb8e51a54c8a4a9> /usr/lib/system/libsystem_kernel.dylib
0x1f0b24000 - 0x1f0b2ffff libsystem_pthread.dylib arm64e  <adc41700002e3a2bb4a1eb5fbf575770> /usr/lib/system/libsystem_pthread.dylib

Core version

Core version: 12.5.0 (Realm version 10.28.5)

@finnschiermer
Copy link
Contributor

This looks like a corrupt file.
@jsflax any swift expert who can take a look at this .. most notable the swift code referenced at the top of the issue?
@michalrentka can you share a realm file associated with this crash?

@sync-by-unito sync-by-unito bot added the Waiting-For-Reporter Waiting for more information from the reporter before we can proceed label Aug 24, 2022
@michalrentka
Copy link
Author

@finnschiermer unfortunately all reports of this that I can find are submitted by anonymous user(s). So I can't ask them to provide the realm file to me.

@github-actions github-actions bot added Needs-Attention Reporter has responded. Review comment. and removed Waiting-For-Reporter Waiting for more information from the reporter before we can proceed labels Aug 24, 2022
@leemaguire
Copy link
Contributor

@michalrentka I've been going through the repo and I've found this:

extension RealmDbCoordinator: DbCoordinator {
    func perform(request: DbRequest) throws  {
        if !request.needsWrite {
            try request.process(in: self.realm)
            return
        }

        if self.realm.isInWriteTransaction {
            DDLogError("RealmDbCoordinator: realm already writing \(type(of: request))")
            try request.process(in: self.realm)
            return
        }

If all actions are running through a serial queue then at what point would self.realm.isInWriteTransaction be true? I wonder if any writes that hit that branch are terminated too early would leave the Realm file in an invalid state. @finnschiermer would that be possible at the Core level?

@michalrentka
Copy link
Author

@leemaguire I noticed this behaviour a long time ago, when I didn't have all realm requests running on background serial queues. So this was a quick workaround to an issue I didn't know about - realm shouldn't run on concurrent queues. Then I re-read the docs and moved all requests to serial queues. I left this in, just in case.

Anyway realm requests can be performed from multiple background serial queues - sync runs in the background while user can make changes, which are written in another background serial queue. But I didn't see that error in logs for a long time, so it's probably safe to say this doesn't happen anymore. If you suspect this could lead to issues, I can be a bit more aggressive and try to crash there, so maybe I'd get some reports from users.

@sync-by-unito sync-by-unito bot removed the Needs-Attention Reporter has responded. Review comment. label Aug 26, 2022
@finnschiermer
Copy link
Contributor

@michalrentka Sorry but I got confused by your last comment. Is the bug gone or still there?

@michalrentka
Copy link
Author

@finnschiermer the bug is still there. I was just trying to explain how the piece of code mentioned above was created. I don't think it has anything to do with the reported crash and the if self.realm.isInWriteTransaction { should always be false now. But if you think otherwise I can try to get more reports from users.

@michalrentka
Copy link
Author

@leemaguire @finnschiermer I've got an update from the user. He is still able to reproduce the issue and I was able to get the realm file from him. I can't open the file in Realm Studio, so it's most likely corrupted. But the crash report changed a bit and it looks more like #5344 which I reported some time ago.

Link to the database: https://mega.nz/file/w1AXAACJ#c0exEdAP4njaGgKRu_pRXaz2Gk-Ii-lwJn6cBiI98tg.

The current crash report:

Incident Identifier: 294CACCD-D704-442F-BACB-7C4A95747992
Hardware Model:      iPad13,4
Process:         Zotero [425]
Path:            /private/var/containers/Bundle/Application/462179D2-0417-4350-BDD7-B2B795428ED3/Zotero.app/Zotero
Identifier:      org.zotero.ios.Zotero
Version:         1.0.4 (11)
Code Type:       ARM-64
Parent Process:   [1]

Date/Time:       2022-09-08 12:38:53 +0000
OS Version:      iPhone OS 15.6.1 (19G82)
Report Version:  104

Exception Type:  SIGABRT
Exception Codes: #0 at 0x1b7379b38
Crashed Thread:  0

Thread 0 Crashed:
0   libsystem_kernel.dylib              0x00000001b7379b38 __pthread_kill + 8
1   libsystem_c.dylib                   0x000000018b550524 abort + 168
2   Zotero                              0x0000000100e455a8 realm::util::terminate(char const*, char const*, long, std::initializer_list<realm::util::Printable>&&) + 11146664 (terminate.cpp:147)
3   Zotero                              0x0000000100e458e8 realm::util::terminate_internal(std::__1::basic_stringstream<char, std::__1::char_traits<char>, std::__1::allocator<char> >&) + 11147496 (terminate.cpp:142)
4   Zotero                              0x0000000100e45664 realm::util::terminate(char const*, char const*, long, std::initializer_list<realm::util::Printable>&&) + 11146852 (terminate.cpp:0)
5   Zotero                              0x0000000100d9b264 realm::Spec::init(realm::MemRef) + 10449508 (spec.cpp:78)
6   Zotero                              0x0000000100d9aff4 realm::Spec::init(unsigned long) + 10448884 (spec.cpp:37)
7   Zotero                              0x0000000100e00850 realm::Table::init(unsigned long, realm::ArrayParent*, unsigned long, bool, bool) + 10864720 (table.cpp:605)
8   Zotero                              0x0000000100c1655c realm::Group::create_table_accessor(unsigned long) + 8856924 (group.cpp:795)
9   Zotero                              0x0000000100c161f0 realm::Group::do_get_table(unsigned long) + 8856048 (group.cpp:0)
10  Zotero                              0x0000000100e1d694 realm::Transaction::check_consistency() + 10983060 (transaction.cpp:0)
11  Zotero                              0x0000000100bfffd0 realm::DB::open(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool, realm::DBOptions) + 8765392 (db.cpp:1168)
12  Zotero                              0x0000000100c02324 realm::DB::open(realm::Replication&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, realm::DBOptions) + 8774436 (db.cpp:1203)
13  Zotero                              0x0000000100c06038 realm::DB::create(std::__1::unique_ptr<realm::Replication, std::__1::default_delete<realm::Replication> >, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, realm::DBOptions) + 8790072 (db.cpp:2517)
14  Zotero                              0x0000000100c91efc realm::_impl::RealmCoordinator::open_db() + 9363196 (realm_coordinator.cpp:519)
15  Zotero                              0x0000000100c92de8 realm::_impl::RealmCoordinator::do_get_realm(realm::RealmConfig, std::__1::shared_ptr<realm::Realm>&, std::__1::optional<realm::VersionID>, realm::util::CheckedUniqueLock&) + 9367016 (realm_coordinator.cpp:309)
16  Zotero                              0x0000000100c92c78 realm::_impl::RealmCoordinator::get_realm(realm::RealmConfig, std::__1::optional<realm::VersionID>) + 9366648 (realm_coordinator.cpp:279)
17  Zotero                              0x0000000100cf0cb0 realm::Realm::get_shared_realm(realm::RealmConfig) + 9751728 (shared_realm.cpp:157)
18  Zotero                              0x0000000100b00138 +[RLMRealm realmWithConfiguration:queue:error:] + 7717176 (RLMRealm.mm:532)
19  Zotero                              0x0000000100b9bd4c Realm.init(configuration:queue:) + 8355148 (Realm.swift:95)
20  Zotero                              0x000000010057c7e8 specialized UserControllers.init(userId:controllers:) + 1935336 (Controllers.swift:309)
21  Zotero                              0x000000010057919c Controllers.set(sessionData:isLogin:debugLogging:) + 1921436 (Controllers.swift:206)
22  Zotero                              0x0000000100577bf8 Controllers.initializeSessionIfPossible(failOnError:) + 1915896 (Controllers.swift:133)
23  Zotero                              0x0000000100577784 closure #1 in Controllers.init() + 1914756 (<compiler-generated>:0)
24  Zotero                              0x0000000100518594 partial apply for closure #1 in AppCoordinator.presentActivityViewController(with:completed:) + 1525140 (<compiler-generated>:0)
25  Zotero                              0x0000000100595730 thunk for @escaping @callee_guaranteed (@guaranteed UIActivityType?, @unowned Bool, @guaranteed [Any]?, @guaranteed Error?) -> () + 2037552 (<compiler-generated>:0)
26  ShareSheet                          0x0000000193fbcff8 -[UIActivityViewController mainPresenter:didCompleteActivity:withSuccess:returnedItems:error:] + 564
27  ShareSheet                          0x0000000193fbc61c __32-[SHSheetMainPresenter _dismiss]_block_invoke + 188
28  ShareSheet                          0x0000000193fbf8d0 -[SHSheetMainRouter dismissForActivityPerformerResult:completionHandler:] + 1540
29  ShareSheet                          0x0000000193fbf280 -[SHSheetMainPresenter _dismiss] + 468
30  ShareSheet                          0x000000019400dd5c -[SHSheetMainPresenter mainInteractor:didPerformActivityWithResult:] + 328
31  ShareSheet                          0x0000000194012678 -[SHSheetMainInteractor _didPerformActivityWithResult:] + 88
32  ShareSheet                          0x00000001940125f8 __38-[SHSheetMainInteractor _runActivity:]_block_invoke + 60
33  ShareSheet                          0x0000000194020f30 -[SHSheetActivityPerformer _completePerformingActivityWithState:returnedItems:error:] + 812
34  ShareSheet                          0x00000001940208f8 -[SHSheetActivityPerformer cancel] + 272
35  ShareSheet                          0x00000001940224cc __56-[SHSheetActivityPerformer _prepareActivityPresentation]_block_invoke + 60
36  ShareSheet                          0x000000019403f314 -[SHSheetMainRouter _presentationControllerDismissalTransitionDidEndNotification:] + 496
37  CoreFoundation                      0x00000001803cf834 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 28
38  CoreFoundation                      0x000000018046bfd4 ___CFXRegistrationPost_block_invoke + 52
39  CoreFoundation                      0x000000018043f1d0 _CFXRegistrationPost + 456
40  CoreFoundation                      0x00000001803e58ac _CFXNotificationPost + 728
41  Foundation                          0x0000000181bb8734 -[NSNotificationCenter postNotificationName:object:userInfo:] + 96
42  UIKitCore                           0x0000000182d28354 -[UIPresentationController _sendPresentationControllerNotification:userInfo:] + 120
43  UIKitCore                           0x00000001831138c0 __80-[UIPresentationController _initViewHierarchyForPresentationSuperview:inWindow:]_block_invoke_2.650 + 448
44  UIKitCore                           0x0000000182bc8b84 -[UIPresentationController transitionDidFinish:] + 152
45  UIKitCore                           0x0000000183112e50 __56-[UIPresentationController runTransitionForCurrentState]_block_invoke.461 + 212
46  UIKitCore                           0x0000000182a62450 -[_UIViewControllerTransitionContext completeTransition:] + 124
47  UIKitCore                           0x0000000182c73528 -[UITransitionView notifyDidCompleteTransition:] + 244
48  UIKitCore                           0x0000000182acb030 -[UITransitionView _didCompleteTransition:] + 1124
49  UIKitCore                           0x0000000183acd4dc __UIVIEW_IS_EXECUTING_ANIMATION_COMPLETION_BLOCK__ + 36
50  UIKitCore                           0x0000000182ae5fa4 -[UIViewAnimationBlockDelegate _didEndBlockAnimation:finished:context:] + 728
51  UIKitCore                           0x00000001829b1d04 -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 248
52  UIKitCore                           0x00000001829c6504 -[UIViewAnimationState animationDidStop:finished:] + 244
53  UIKitCore                           0x00000001829c666c -[UIViewAnimationState animationDidStop:finished:] + 604
54  QuartzCore                          0x00000001841b2e50 CA::Layer::run_animation_callbacks+ 835152 (void*) + 280
55  libdispatch.dylib                   0x00000001800a5a30 _dispatch_client_callout + 20
56  libdispatch.dylib                   0x00000001800b3f48 _dispatch_main_queue_drain + 928
57  libdispatch.dylib                   0x00000001800b3b98 _dispatch_main_queue_callback_4CF + 44
58  CoreFoundation                      0x00000001803f6800 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 16
59  CoreFoundation                      0x00000001803b0704 __CFRunLoopRun + 2532
60  CoreFoundation                      0x00000001803c3bc8 CFRunLoopRunSpecific + 600
61  GraphicsServices                    0x000000019c52f374 GSEventRunModal + 164
62  UIKitCore                           0x0000000182d37b58 -[UIApplication _run] + 1100
63  UIKitCore                           0x0000000182ab9090 UIApplicationMain + 364
64  Zotero                              0x00000001003aba64 main + 31332 (<compiler-generated>:0)
65  ???                                 0x00000001014c1da4 0x0 + 0

Thread 1:
0   libsystem_kernel.dylib              0x00000001b7373a74 __workq_kernreturn + 8
1   libsystem_pthread.dylib             0x00000001f0b30e5c start_wqthread + 8

Thread 2:
0   libsystem_kernel.dylib              0x00000001b73734a0 mach_msg_trap + 8
1   CoreFoundation                      0x00000001803abd30 __CFRunLoopServiceMachPort + 372
2   CoreFoundation                      0x00000001803b01bc __CFRunLoopRun + 1180
3   CoreFoundation                      0x00000001803c3bc8 CFRunLoopRunSpecific + 600
4   Foundation                          0x0000000181bb6444 -[NSRunLoop+ 103492 (NSRunLoop) runMode:beforeDate:] + 236
5   Foundation                          0x0000000181bf7e0c -[NSRunLoop+ 372236 (NSRunLoop) runUntilDate:] + 92
6   UIKitCore                           0x0000000182cb1cc4 -[UIEventFetcher threadMain] + 524
7   Foundation                          0x0000000181c0641c __NSThread__start__ + 808
8   libsystem_pthread.dylib             0x00000001f0b319ac _pthread_start + 148
9   libsystem_pthread.dylib             0x00000001f0b30e68 thread_start + 8

Thread 3:
0   libsystem_kernel.dylib              0x00000001b7373a74 __workq_kernreturn + 8
1   libsystem_pthread.dylib             0x00000001f0b30e5c start_wqthread + 8

Thread 4:
0   libsystem_kernel.dylib              0x00000001b73734a0 mach_msg_trap + 8
1   Zotero                              0x0000000100e78914 exception_server_thread + 11356436 (PLCrashMachExceptionServer.m:683)
2   libsystem_pthread.dylib             0x00000001f0b319ac _pthread_start + 148
3   libsystem_pthread.dylib             0x00000001f0b30e68 thread_start + 8

Thread 5:
0   libsystem_kernel.dylib              0x00000001b73734a0 mach_msg_trap + 8
1   CoreFoundation                      0x00000001803abd30 __CFRunLoopServiceMachPort + 372
2   CoreFoundation                      0x00000001803b01bc __CFRunLoopRun + 1180
3   CoreFoundation                      0x00000001803c3bc8 CFRunLoopRunSpecific + 600
4   CFNetwork                           0x0000000180e401dc 0x180bc8000 + 2589148
5   Foundation                          0x0000000181c0641c __NSThread__start__ + 808
6   libsystem_pthread.dylib             0x00000001f0b319ac _pthread_start + 148
7   libsystem_pthread.dylib             0x00000001f0b30e68 thread_start + 8

Thread 6:
0   libsystem_kernel.dylib              0x00000001b7373a74 __workq_kernreturn + 8
1   libsystem_pthread.dylib             0x00000001f0b30e5c start_wqthread + 8

Thread 0 crashed with ARM-64 Thread State:
    pc: 0x00000001b7379b38     fp: 0x000000016fa57240     sp: 0x000000016fa57220     x0: 0x0000000000000000 
    x1: 0x0000000000000000     x2: 0x0000000000000000     x3: 0x0000000000000000     x4: 0x0000000000000011 
    x5: 0x00000001348f5800     x6: 0x0000000000002200     x7: 0x0000000000000000     x8: 0x938aa4580d0ff41f 
    x9: 0x938aa4590c5eb19f    x10: 0x000000000069ee00    x11: 0x0000000000bf3d01    x12: 0x0000000000004009 
   x13: 0x00000001348f4000    x14: 0x0000000000003fff    x15: 0x0000000000009cf3    x16: 0x0000000000000148 
   x17: 0x0000000101514580    x18: 0x0000000000000000    x19: 0x0000000000000006    x20: 0x0000000000000103 
   x21: 0x0000000101514660    x22: 0x000000016fa57300    x23: 0x0000000100f1e456    x24: 0x0000000003ded920 
   x25: 0x0000000000000000    x26: 0x1fffffffffffffff    x27: 0x000000010123f000    x28: 0x0000000000000000 
    lr: 0x00000001f0b373bc   cpsr: 0x0000000040001000 

Binary Images:
       0x1003a4000 -        0x1010ebfff +Zotero arm64  <83f826d67d913278a54a5ac69202d915> /private/var/containers/Bundle/Application/462179D2-0417-4350-BDD7-B2B795428ED3/Zotero.app/Zotero
       0x101650000 -        0x10275bfff  PSPDFKit arm64  <61c8942876ce3533a8cf10a8648e5341> /private/var/containers/Bundle/Application/462179D2-0417-4350-BDD7-B2B795428ED3/Zotero.app/Frameworks/PSPDFKit.framework/PSPDFKit
       0x10390c000 -        0x103e2ffff  PSPDFKitUI arm64  <1feaa137301b3621b164eecf503a587f> /private/var/containers/Bundle/Application/462179D2-0417-4350-BDD7-B2B795428ED3/Zotero.app/Frameworks/PSPDFKitUI.framework/PSPDFKitUI
       0x104698000 -        0x1046a3fff  libobjc-trampolines.dylib arm64e  <6446decb4506319a8fac590adce52182> /usr/lib/libobjc-trampolines.dylib
       0x11081c000 -        0x110823fff  FileProviderOverride arm64e  <834516b43b5c3a2a96696a121dc4e1d6> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/FileProviderOverride.bundle/FileProviderOverride
       0x110834000 -        0x11083bfff  CloudDocsFileProvider arm64e  <cf9edd7e419538d98d841da9c966fae7> /System/Library/Frameworks/FileProvider.framework/OverrideBundles/CloudDocsFileProvider.bundle/CloudDocsFileProvider
       0x1800a2000 -        0x1800e7fff  libdispatch.dylib arm64e  <e3ea4f635d11342aaf199f58dbc8e259> /usr/lib/system/libdispatch.dylib
       0x1800e8000 -        0x1800f4fff  libdyld.dylib arm64e  <7ec304d36d113ee289a695459f3338b8> /usr/lib/system/libdyld.dylib
       0x1800f5000 -        0x1803a4fff  libicucore.A.dylib arm64e  <642d2a48fbff3fafb8db483216b87dd3> /usr/lib/libicucore.A.dylib
       0x1803a5000 -        0x1807fafff  CoreFoundation arm64e  <6b22dd8135853be6bc77ba19810ec0f2> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x1807fb000 -        0x1809dbfff  CoreServices arm64e  <8938ddb45e853d4b8d6af3a7808d8f20> /System/Library/Frameworks/CoreServices.framework/CoreServices
       0x1809dc000 -        0x180a24fff  WirelessDiagnostics arm64e  <64b19f288c763d0084ab5f746dbd97da> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x180a25000 -        0x180aa3fff  SystemConfiguration arm64e  <9655ee24702b39bca9a3a70fe945f390> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x180aa4000 -        0x180bc7fff  CoreTelephony arm64e  <33aff36e910c3dcda83072d98ea51f40> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x180bc8000 -        0x181089fff  CFNetwork arm64e  <106410ffdd4f3527ad531980fe8b0ddd> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x18108a000 -        0x181b1efff  libnetwork.dylib arm64e  <0dbe8d5848823c66b0310239c020ee4c> /usr/lib/libnetwork.dylib
       0x181b1f000 -        0x181b9cfff  Accounts arm64e  <d69a24e2a991358bb76a0e292966105e> /System/Library/Frameworks/Accounts.framework/Accounts
       0x181b9d000 -        0x181ea7fff  Foundation arm64e  <ee1abaf23d7137fb906715aa79528619> /System/Library/Frameworks/Foundation.framework/Foundation
       0x181ea8000 -        0x18224ffff  ImageIO arm64e  <95d62629d8543c9d9980ab6884a2350c> /System/Library/Frameworks/ImageIO.framework/ImageIO
       0x182250000 -        0x182268fff  libCGInterfaces.dylib arm64e  <6f5b7d0614a03257bd8c7882a953cbed> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x182269000 -        0x182822fff  CoreGraphics arm64e  <b26475cc36fa3fdc880b9c0aab8b61d5> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x182823000 -        0x1840c0fff  UIKitCore arm64e  <137a95aada6d332cbc01e13bb9b6e317> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
       0x1840c1000 -        0x1840e6fff  libAccessibility.dylib arm64e  <a1dc6c10c002370b8883b077526db96c> /usr/lib/libAccessibility.dylib
       0x1840e7000 -        0x1843f8fff  QuartzCore arm64e  <df21293e9dbf37a58506d0c7f3d8646c> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x1843f9000 -        0x184479fff  BackBoardServices arm64e  <4ee3155c09a73d1e9147e38e7ecf1455> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x18447a000 -        0x18452dfff  TextInput arm64e  <4aeb7e7cb5883404a7e2a0a1d07243e5> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x18452e000 -        0x184596fff  libusrtcp.dylib arm64e  <4968ed2b776c312b874f80fc60378bb7> /usr/lib/libusrtcp.dylib
       0x184597000 -        0x184b02fff  AppleMediaServices arm64e  <792217839de236bfade86036c74d5fce> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
       0x184b03000 -        0x184e75fff  libswiftFoundation.dylib arm64e  <b0552a73c46a359c87b8a13998818fe7> /usr/lib/swift/libswiftFoundation.dylib
       0x184e76000 -        0x18538cfff  libswiftCore.dylib arm64e  <c35a3d11ec7d3c3382000570820501ed> /usr/lib/swift/libswiftCore.dylib
       0x18538d000 -        0x1853b4fff  UIKitServices arm64e  <53d92acde0233f5b8b9aa406575cac28> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
       0x1853b5000 -        0x185519fff  Preferences arm64e  <be761ca268ae368a993e906fe8ef8625> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
       0x18551a000 -        0x1857a6fff  ContactsUI arm64e  <0fcdd20a29073b8ca2a2abdf40c37ffa> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x1857a7000 -        0x185965fff  CoreText arm64e  <1383f3ee433f34dc98f916f38cd746c4> /System/Library/Frameworks/CoreText.framework/CoreText
       0x185966000 -        0x185974fff  ExtensionKit arm64e  <f04952ed5ca93dcd92359b4655dcfe51> /System/Library/PrivateFrameworks/ExtensionKit.framework/ExtensionKit
       0x185975000 -        0x1859a3fff  ChronoServices arm64e  <7b9a16ba22d532b292bb0d3cd29a6c33> /System/Library/PrivateFrameworks/ChronoServices.framework/ChronoServices
       0x1859a4000 -        0x185a60fff  BaseBoard arm64e  <cfb4af4072ca378d9e8f52b9157535ad> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x185a61000 -        0x185cbefff  CoreDuet arm64e  <2e94877b1b6f387a8f3052dbd8073d12> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x185cbf000 -        0x185e54fff  Contacts arm64e  <e938c0da8aa3363287876b056277f480> /System/Library/Frameworks/Contacts.framework/Contacts
       0x185e55000 -        0x1878dbfff  GeoServices arm64e  <423f261e787b3f608fd0fb8e204df17f> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x1878dc000 -        0x18799bfff  CoreLocation arm64e  <8e2d3c96c07b33b98364446447b0e89a> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x18799c000 -        0x187b9afff  CloudKit arm64e  <0b5a4551da1d30c490d9eadfbb105541> /System/Library/Frameworks/CloudKit.framework/CloudKit
       0x187b9b000 -        0x187f27fff  CoreData arm64e  <7872d1e2f9f4375a8d2eb352e403e97a> /System/Library/Frameworks/CoreData.framework/CoreData
       0x187fde000 -        0x189075fff  SwiftUI arm64e  <6ab6407f39eb3fb393d55e0c55af3a2d> /System/Library/Frameworks/SwiftUI.framework/SwiftUI
       0x189076000 -        0x189080fff  libswiftCoreGraphics.dylib arm64e  <a3f4124c550c344eaf0863255998734b> /usr/lib/swift/libswiftCoreGraphics.dylib
       0x189081000 -        0x1890c7fff  AppSupport arm64e  <e470e3e071a334d7b4494beec264aa39> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x1890c8000 -        0x189204fff  ManagedConfiguration arm64e  <2c6670d18d04336a8b8b25195c933450> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x189205000 -        0x189280fff  IMFoundation arm64e  <a16437bc3411334a91986fe1df2ccb25> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x189281000 -        0x189401fff  IDS arm64e  <a1d8a97b0f82385e85b46270eab42493> /System/Library/PrivateFrameworks/IDS.framework/IDS
       0x189402000 -        0x189578fff  Security arm64e  <c1632a45171a367e99a105c7f5142b19> /System/Library/Frameworks/Security.framework/Security
       0x189579000 -        0x1899d1fff  MediaPlayer arm64e  <f8febd80ce5a3425a0293e41bc2308e4> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x1899d2000 -        0x1899fcfff  AudioSession arm64e  <98e4676874ff374c9b70303bffce2d33> /System/Library/PrivateFrameworks/AudioSession.framework/AudioSession
       0x1899fd000 -        0x189c10fff  AVFCore arm64e  <05af45ed8be03dc4ad29b3cefa50d09e> /System/Library/PrivateFrameworks/AVFCore.framework/AVFCore
       0x189c11000 -        0x18a267fff  Intents arm64e  <6e75556106543867bf62e70c6333753c> /System/Library/Frameworks/Intents.framework/Intents
       0x18a2d8000 -        0x18a632fff  CoreImage arm64e  <a02c98ab36833b0e9573eff24852142d> /System/Library/Frameworks/CoreImage.framework/CoreImage
       0x18a633000 -        0x18a6f8fff  ColorSync arm64e  <19505f2aeed53d73b4245fad9ccf198f> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x18a6f9000 -        0x18a73bfff  CoreVideo arm64e  <6e1dbca06640337fa8f1635b3a866d01> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x18a73c000 -        0x18af65fff  MediaToolbox arm64e  <b2e4d390b69a306b8b58e42de96c0c9f> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x18af66000 -        0x18b086fff  CoreMedia arm64e  <cc15e7b7e7c0342ea808fc139ee59417> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x18b087000 -        0x18b317fff  AudioToolbox arm64e  <eeda441c4ed331be9ca5782c3d14a76e> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x18b318000 -        0x18b36afff  CoreHaptics arm64e  <5ae29c17750f3976b446a6388b8939f4> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
       0x18b36b000 -        0x18b3d7fff  UserActivity arm64e  <4556ee7374243743b9be0fa76a9881aa> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
       0x18b3d8000 -        0x18b509fff  UIFoundation arm64e  <900e677e1f2f310d9cbdcbca6b3c9949> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x18b50a000 -        0x18b52ffff  libsystem_info.dylib arm64e  <b913046d661531549ee1609eb1ec2143> /usr/lib/system/libsystem_info.dylib
       0x18b530000 -        0x18b5affff  libsystem_c.dylib arm64e  <86a1a24ace353769ba6960f28353281e> /usr/lib/system/libsystem_c.dylib
       0x18b5b0000 -        0x18b607fff  RunningBoardServices arm64e  <94debc1ebee53d2d9377060e0d9ccc57> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
       0x18b608000 -        0x18ca8cfff  JavaScriptCore arm64e  <e76b377fc862395a9439d12b09a59e07> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x18ca8d000 -        0x18d1e5fff  ChatKit arm64e  <2093677e740c3c9085c0504243464097> /System/Library/PrivateFrameworks/ChatKit.framework/ChatKit
       0x18d1e6000 -        0x18d29afff  ContactsFoundation arm64e  <d2d76d8799d73de7a368a1513512dc28> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x18d5a2000 -        0x18d5c8fff  ProactiveEventTracker arm64e  <283e7425e4f03e7197a1dc1ec12849a9> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x18d5c9000 -        0x18d610fff  Lexicon arm64e  <6823f5a1efb03f8ab385ab30448b909c> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
       0x18d611000 -        0x18d69afff  PersonalizationPortrait arm64e  <6b9828709492358c9317e52b17e4fe50> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
       0x18d69b000 -        0x18d6f5fff  CoreDuetContext arm64e  <19b640bb02a33bc1a976121075f0e3ec> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
       0x18d6f6000 -        0x18d7adfff  IOKit arm64e  <7987edd1e89e34b6aeb426baba611255> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x18d7ae000 -        0x18d7bbfff  DataMigration arm64e  <0e98d163c620329b97377f6099dce51c> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x18d7bc000 -        0x18d835fff  SpringBoardServices arm64e  <88dd29b9b08a34b290517dcb487b89b1> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x18d836000 -        0x18d84ffff  ContextKit arm64e  <6135bb3c9b173e55b06c9ee4412b325b> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
       0x18d850000 -        0x18db69fff  CoreMotion arm64e  <9f45d028cdd833daab156f34eae67b38> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x18db6a000 -        0x18dcf7fff  EventKit arm64e  <51ad7bef352d3d789539a274e38f4498> /System/Library/Frameworks/EventKit.framework/EventKit
       0x18dcf8000 -        0x18e393fff  PassKitCore arm64e  <c5d4e76be8c3358787e5f8b95b65bf4f> /System/Library/PrivateFrameworks/PassKitCore.framework/PassKitCore
       0x18e394000 -        0x18e6e8fff  MediaRemote arm64e  <dcdc8a62b2293743bdf23e5410af89ef> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x18e6e9000 -        0x18e87efff  CoreUtils arm64e  <68e40863e912347bae010dc0dd38887e> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
       0x18e87f000 -        0x18e89efff  FamilyCircle arm64e  <f9aade2b246c320ca7038b0f9e8c0362> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
       0x18e89f000 -        0x18e928fff  CoreSpotlight arm64e  <d448c2303c1033869fff76f4980d9097> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x18ed20000 -        0x18ef61fff  AssistantServices arm64e  <75831c57bdbd3e69a27d7961c17cfb7e> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
       0x18ef62000 -        0x18f046fff  CoreUI arm64e  <86013573bb153dd0b851805718980bb0> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x18f047000 -        0x18f096fff  SafariSafeBrowsing arm64e  <f8c20860491e323f81c5573211bd678b> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
       0x18f097000 -        0x18fbcbfff  WebKit arm64e  <b57bb448c17c3c189e089306752f08c7> /System/Library/Frameworks/WebKit.framework/WebKit
       0x18fbcc000 -        0x192135fff  WebCore arm64e  <46356aa10f253215915edbc81e3b4699> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x192136000 -        0x192197fff  libMobileGestalt.dylib arm64e  <037036dbecc33a6a9823d46f79570529> /usr/lib/libMobileGestalt.dylib
       0x192198000 -        0x1921b6fff  CommonUtilities arm64e  <0905567c6b4330b08c85d61ca88ca2ad> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x1921b7000 -        0x19237ffff  IDSFoundation arm64e  <d4969bd23a183a8ebc3b3c50cb83fe2e> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x192380000 -        0x192496fff  IMSharedUtilities arm64e  <2132c631f6ab305280d20a77f249570b> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
       0x192497000 -        0x192552fff  CoreSuggestions arm64e  <cbac50c7eab2302785c4a96e99d3980b> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
       0x192553000 -        0x1925fcfff  AddressBookLegacy arm64e  <d3eca9bcb17e3c54b31ac46bfb16d24c> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
       0x1925fd000 -        0x192644fff  UserNotifications arm64e  <f7ecd0b5b0f733a989baaee2a0239a11> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x192645000 -        0x1926f1fff  FrontBoardServices arm64e  <a314664d1369370ab222a180669b4f11> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x1926f2000 -        0x192713fff  libsystem_malloc.dylib arm64e  <2a5621a9337e32c3a42966d35f417b14> /usr/lib/system/libsystem_malloc.dylib
       0x192714000 -        0x192a8ffff  MapKit arm64e  <89318c1c351f3325856df4257519d71d> /System/Library/Frameworks/MapKit.framework/MapKit
       0x192a90000 -        0x19362ffff  VectorKit arm64e  <f51b4a0f89bd34dfbf40ce2409a87c71> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
       0x193630000 -        0x1936f5fff  AuthKit arm64e  <04e4fae0401932ecb45d909d03af3fea> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x1936f6000 -        0x1937ddfff  AppleAccount arm64e  <9cb4118af70830999d720d2a706a2437> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x1937de000 -        0x193a7efff  AudioToolboxCore arm64e  <e7608ae5f9973bb0b4854260d035082d> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
       0x193ada000 -        0x193dd5fff  StoreServices arm64e  <41ba2edfe8e839f3b07bd9d8b1d1b961> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x193dd6000 -        0x193fa7fff  Sharing arm64e  <3962feae6bbe3fb99d297d67bdd6a8d0> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
       0x193fa8000 -        0x194094fff  ShareSheet arm64e  <252641099c293623930b376a4c101f32> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
       0x194095000 -        0x194162fff  CoreParsec arm64e  <cb6a88016e0c33c5b469b46d7cb4ec2a> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
       0x194163000 -        0x1941b0fff  PhotoFoundation arm64e  <948c1d04a6173205a1570b44aee96512> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
       0x1941b1000 -        0x19446dfff  Photos arm64e  <c4f38c554fea3ea08f0f720d789b3081> /System/Library/Frameworks/Photos.framework/Photos
       0x19446e000 -        0x194c03fff  PhotoLibraryServices arm64e  <03c560b528f73586ae9e1ecae61fee1b> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x194c04000 -        0x194c71fff  MobileBackup arm64e  <507331dea38534199c964969de3f632d> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
       0x194c72000 -        0x194c77fff  MSUDataAccessor arm64e  <e0e4620dcdba33b79b79113565a4c2ef> /System/Library/PrivateFrameworks/MSUDataAccessor.framework/MSUDataAccessor
       0x194c78000 -        0x194ca1fff  MobileAsset arm64e  <7b01fb336cfb3440878d5fd7e52a700f> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x194ca2000 -        0x194cbafff  libsystem_networkextension.dylib arm64e  <6e8afbb18a883ad8b8311741ea7141b1> /usr/lib/system/libsystem_networkextension.dylib
       0x194cbb000 -        0x194f35fff  NetworkExtension arm64e  <ac659a1833ad3f0da53a4b97de360466> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
       0x194f36000 -        0x194fa3fff  Trial arm64e  <a993b62532d43ea09bad415a889e66f7> /System/Library/PrivateFrameworks/Trial.framework/Trial
       0x194fa4000 -        0x1955e2fff  CoreML arm64e  <df4733d55f6331bf9ba985865b4320c1> /System/Library/Frameworks/CoreML.framework/CoreML
       0x1955e3000 -        0x19607afff  Espresso arm64e  <00a4b156f05736dfbc4f802843c0c4e4> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
       0x19607b000 -        0x1964bffff  VideoToolbox arm64e  <5b6e986093cd38499a66068a1a10753b> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x1964c0000 -        0x19651cfff  OnBoardingKit arm64e  <4fdf531682db3f9681d6021b26f40f33> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
       0x19651d000 -        0x196645fff  AccessibilityUtilities arm64e  <d62226339b7d3e47bb69de49ffee542d> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
       0x196646000 -        0x19665efff  AXCoreUtilities arm64e  <6e9061e5962b375db134b25126d44bb2> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
       0x19665f000 -        0x196cd8fff  PhotosUI arm64e  <2137baa6c8133642b56bcbd0d13f72b0> /System/Library/Frameworks/PhotosUI.framework/PhotosUI
       0x196cd9000 -        0x197accfff  PhotosUICore arm64e  <1d2b62cabe463ec7b80d537af08738fd> /System/Library/PrivateFrameworks/PhotosUICore.framework/PhotosUICore
       0x197acd000 -        0x197cedfff  Montreal arm64e  <3fda3bc3889635939bc82d04dc7e3ed8> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
       0x197cee000 -        0x197e1ffff  LanguageModeling arm64e  <7ddcda27db463451b80e1ae0f4cc8a7d> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x197e20000 -        0x197e2bfff  InternationalSupport arm64e  <10a8e66ebafc37ccbca3cabc17be9ab7> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
       0x197e2c000 -        0x198134fff  iTunesCloud arm64e  <f33e25502a7837e497fccc19c3aa9546> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
       0x198135000 -        0x1981a2fff  libswiftUIKit.dylib arm64e  <acf111ecacda3fc38c6fe8b79b2be7dd> /usr/lib/swift/libswiftUIKit.dylib
       0x1981a3000 -        0x19823efff  UIAccessibility arm64e  <7cd723b3aab63ef896413daffcea3cdd> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
       0x19823f000 -        0x19828ffff  CarKit arm64e  <ab1e14c003df38e0add2ed21a8984053> /System/Library/PrivateFrameworks/CarKit.framework/CarKit
       0x1982eb000 -        0x1983b9fff  CalendarDatabase arm64e  <a626d63748ca372c9819dc77db733a49> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
       0x1983ba000 -        0x1983dcfff  Notes arm64e  <a60f470e25c23532a4739eff78e9a810> /System/Library/PrivateFrameworks/Notes.framework/Notes
       0x1983dd000 -        0x1984e0fff  LinkPresentation arm64e  <22fbbe73a5a53179b1b68f387f66699f> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
       0x1984e1000 -        0x19862efff  Combine arm64e  <e3e7d5edf0d331aaad095c83a14d4646> /System/Library/Frameworks/Combine.framework/Combine
       0x19873e000 -        0x198750fff  UniformTypeIdentifiers arm64e  <4f222f559c413615913a786a708f7067> /System/Library/Frameworks/UniformTypeIdentifiers.framework/UniformTypeIdentifiers
       0x198751000 -        0x1987f5fff  CloudDocs arm64e  <970cdb9977bb3bf38cde6ade3542d6d9> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
       0x1987f6000 -        0x198a09fff  Message arm64e  <1bbf794fbc95330ab63c588166514dcf> /System/Library/PrivateFrameworks/Message.framework/Message
       0x198a0a000 -        0x198a9afff  EmailFoundation arm64e  <6e7ad2769c913f6ca7975bc3c67d692b> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
       0x198dd7000 -        0x198e05fff  FindMyDevice arm64e  <9c078d41231e3b32be1ef59e794e0dec> /System/Library/PrivateFrameworks/FindMyDevice.framework/FindMyDevice
       0x198e06000 -        0x198e66fff  MediaServices arm64e  <7091c63283c836ffbb45ec0f3f919671> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x198e67000 -        0x1990a4fff  SearchFoundation arm64e  <6204849eccc9300e99d81fe104e5a11d> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
       0x1990a5000 -        0x199146fff  WebBookmarks arm64e  <635a36ad42a034c8a584b67bdc02df66> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x199147000 -        0x199157fff  BookLibrary arm64e  <94fc31d4b5223abf8f31bd4ca094b29d> /System/Library/PrivateFrameworks/BookLibrary.framework/BookLibrary
       0x199158000 -        0x199194fff  libobjc.A.dylib arm64e  <f6368be9109b3405b282624040529afd> /usr/lib/libobjc.A.dylib
       0x199195000 -        0x199200fff  LoggingSupport arm64e  <65a02c7d408b3ece9b1ac77372c5c5b9> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
       0x199201000 -        0x199267fff  libc++.1.dylib arm64e  <17cea4f6e3933beab8971bf33851a14b> /usr/lib/libc++.1.dylib
       0x199268000 -        0x19927ffff  libc++abi.dylib arm64e  <d00067b20a7a3cb9b4d407b160da261b> /usr/lib/libc++abi.dylib
       0x199280000 -        0x1992d3fff  SetupAssistant arm64e  <3d3f0ba63aa033249d094cd177fe706b> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
       0x1992d4000 -        0x1992f9fff  OctagonTrust arm64e  <42342933cdd63db68565a0854d2b9cbc> /System/Library/PrivateFrameworks/OctagonTrust.framework/OctagonTrust
       0x199469000 -        0x1994b3fff  CoreAutoLayout arm64e  <4a4959eb12203b44b6cf8e1dc4c5b28b> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/CoreAutoLayout
       0x1994b4000 -        0x19965efff  Network arm64e  <057eb33b502336a081f9aa5299e9c935> /System/Library/Frameworks/Network.framework/Network
       0x19965f000 -        0x19969cfff  MobileKeyBag arm64e  <352f2a5f40373df084954b97a61972f6> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
       0x199a1a000 -        0x199a35fff  BaseBoardUI arm64e  <734f14e6d40636a3a896b11aaed61c34> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
       0x199a36000 -        0x199b19fff  libvDSP.dylib arm64e  <e9020b59607b32a6bb629f2122584f3f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x199b1a000 -        0x199b4dfff  libAudioToolboxUtility.dylib arm64e  <fb92b354a610382ca3245fd9b6277d0d> /usr/lib/libAudioToolboxUtility.dylib
       0x199d4c000 -        0x199e38fff  CoreNLP arm64e  <340b6d2f40f93cdeacea0baac1016772> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x199e39000 -        0x199fc0fff  FileProvider arm64e  <c4c232c2c5b93337abc229d88442c86b> /System/Library/Frameworks/FileProvider.framework/FileProvider
       0x199fc1000 -        0x199fe4fff  BiomeStorage arm64e  <ecc2e9f3b3a43a42bbe4c8bdda8a978b> /System/Library/PrivateFrameworks/BiomeStorage.framework/BiomeStorage
       0x199fe5000 -        0x199ffdfff  libswiftDispatch.dylib arm64e  <cb8bf9cfecf033249ba1ade6b2180d86> /usr/lib/swift/libswiftDispatch.dylib
       0x199ffe000 -        0x19a039fff  DataDetectorsCore arm64e  <ca7c346172803e51bd46eb9e144c1ada> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x19a03a000 -        0x19a0f8fff  Symbolication arm64e  <541cfc68bf8e358bbf2768ba3ec2bcd1> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
       0x19a0f9000 -        0x19a107fff  CrashReporterSupport arm64e  <73679dcf16713fa9aab54cde24a93041> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
       0x19a108000 -        0x19a123fff  FMCoreLite arm64e  <e65ee4edaf113511845035ec552133d5> /System/Library/PrivateFrameworks/FMCoreLite.framework/FMCoreLite
       0x19a194000 -        0x19a2edfff  TelephonyUtilities arm64e  <872d27932d02337fb72d3b7470ef38e1> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
       0x19a32c000 -        0x19a529fff  MPSNeuralNetwork arm64e  <a1b22990d50f395fa6e01eddaec53516> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
       0x19a52a000 -        0x19a59bfff  MPSCore arm64e  <d621bcddedf635e1b34d67210464e1d6> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
       0x19a711000 -        0x19a79bfff  CalendarFoundation arm64e  <4ea244af42e63822b3433cac2b5d9ea9> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
       0x19a79c000 -        0x19a839fff  TipsCore arm64e  <ed4ebb2e0d9c3a79a32cabff440633d1> /System/Library/PrivateFrameworks/TipsCore.framework/TipsCore
       0x19a83a000 -        0x19a924fff  NLP arm64e  <eae6a9038761397194bb6847e359caeb> /System/Library/PrivateFrameworks/NLP.framework/NLP
       0x19a925000 -        0x19a94efff  AppSupportUI arm64e  <6db2b6f12bcd3227a2dbe05662c342d1> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
       0x19a959000 -        0x19a9b6fff  FTServices arm64e  <c2798f2c96673041aabff1b54ac72dad> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x19a9b7000 -        0x19aa78fff  libboringssl.dylib arm64e  <d912c7bbbb13308cab0130c67ab254c9> /usr/lib/libboringssl.dylib
       0x19aa79000 -        0x19aa93fff  ProtocolBuffer arm64e  <e6285a0e0feb31e2b43c56d78e30e4a8> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x19aa94000 -        0x19abe1fff  AVKit arm64e  <49954501bbe33f42b0c792a9f15f6417> /System/Library/Frameworks/AVKit.framework/AVKit
       0x19ad8f000 -        0x19ada0fff  AssertionServices arm64e  <7ab28f9921a83753bc464a6463b5c5da> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x19ada1000 -        0x19add1fff  CloudServices arm64e  <9d48474c4a513ae3aaf3de1d53f153bb> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
       0x19ae3a000 -        0x19af6efff  Metal arm64e  <9c456c50c0d8333ab79d5209a3bd3326> /System/Library/Frameworks/Metal.framework/Metal
       0x19af6f000 -        0x19b115fff  MediaExperience arm64e  <6cd495e1953532fc84c70265db94deb3> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
       0x19b116000 -        0x19b2d1fff  VideoProcessing arm64e  <97e8fef7c9df33bdb6c23ec586dde392> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
       0x19b2d2000 -        0x19b2ebfff  libsystem_trace.dylib arm64e  <f497648ceccf3a7bbd70edd2ac67f7ab> /usr/lib/system/libsystem_trace.dylib
       0x19b2ec000 -        0x19b31dfff  CoreServicesInternal arm64e  <cb8247500deb3cb191aa9c71e7544229> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x19b31e000 -        0x19b3b5fff  SafariCore arm64e  <aeecd8b6576d32f397395635f0fbfa18> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
       0x19b3b6000 -        0x19b641fff  SafariShared arm64e  <8e36a9ff343931fdb34ca7260d5fe222> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
       0x19bbc2000 -        0x19bccdfff  AXMediaUtilities arm64e  <76fa1953b989311c894e21cb9b19a974> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
       0x19bcce000 -        0x19bd40fff  ContactsAutocompleteUI arm64e  <e83eee012b923db188c23d363b36b5c4> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
       0x19bd41000 -        0x19becafff  MessageUI arm64e  <3869a264494132be81b29c1101ffe12b> /System/Library/Frameworks/MessageUI.framework/MessageUI
       0x19c410000 -        0x19c4cafff  SAObjects arm64e  <a493591548743b2e973c389b5f72e4b3> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
       0x19c4cb000 -        0x19c52dfff  VoiceServices arm64e  <e13a8e9556c93226af657749c7a316e4> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
       0x19c52e000 -        0x19c536fff  GraphicsServices arm64e  <a094e7b51d4037c5902756d86988ec4b> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x19c537000 -        0x19c594fff  DeviceManagement arm64e  <e1d89819d9f1345ca8c267b049feffb6> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
       0x19c73a000 -        0x19c761fff  PowerLog arm64e  <91e34762541b3e6fb8e6009d6995674b> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
       0x19c762000 -        0x19c794fff  DuetActivityScheduler arm64e  <d5475522d3793feb8289cd0925d7fe8a> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
       0x19e56d000 -        0x19e853fff  Vision arm64e  <1119af8c9ad03d76bbccac379d50fa62> /System/Library/Frameworks/Vision.framework/Vision
       0x19e854000 -        0x19e8bafff  DataAccess arm64e  <0acec9560a2a33a4ab063ad2511e7784> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
       0x19e8bb000 -        0x19e93bfff  ProactiveSupport arm64e  <b732b76bf1f7341e89ef44418d056d1f> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
       0x19e93c000 -        0x19e967fff  AirTraffic arm64e  <c1f089cffc333aedaa0998e151448135> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
       0x19e968000 -        0x19e98bfff  ApplePushService arm64e  <a8cb18a331a634fe8dc6d92d212bb733> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x19e98c000 -        0x19e9dffff  BoardServices arm64e  <38ade6aec1cd3a89bdc8f121202a504e> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
       0x19e9e0000 -        0x19ea21fff  libswiftCloudKit.dylib arm64e  <29ab4c8578aa35048feb356e9487cff1> /usr/lib/swift/libswiftCloudKit.dylib
       0x19ec35000 -        0x19ec65fff  libncurses.5.4.dylib arm64e  <0157efb14fd2335080f2328137e3bab3> /usr/lib/libncurses.5.4.dylib
       0x19ec66000 -        0x19ecb6fff  OSAnalytics arm64e  <a2b0befc89c5336aac182ea8e93ebe64> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
       0x19ecb7000 -        0x19ed4dfff  CoreBluetooth arm64e  <339bbe1d59ad38eaa28d28339b086300> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x19ef8f000 -        0x19efdefff  TemplateKit arm64e  <5e4410bf99423271be8958edce62ae49> /System/Library/PrivateFrameworks/TemplateKit.framework/TemplateKit
       0x19efdf000 -        0x19f026fff  MobileInstallation arm64e  <db25b4bae4af3687a050288be0b4891d> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
       0x19f027000 -        0x19f0aefff  libTelephonyUtilDynamic.dylib arm64e  <654991e1ddbb39928eca0d745e7b643f> /usr/lib/libTelephonyUtilDynamic.dylib
       0x19f0af000 -        0x19f125fff  NanoRegistry arm64e  <834c67adde66352f9b79c11cc903d801> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
       0x19f23a000 -        0x19f25afff  CoreMaterial arm64e  <13e9d43c9ea73fc4be396fd879fb6da9> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
       0x19f2f9000 -        0x19f491fff  libsqlite3.dylib arm64e  <f9afcada4db33c15985eedb2dac7b25c> /usr/lib/libsqlite3.dylib
       0x19f492000 -        0x19f590fff  AVFCapture arm64e  <35ab41577141380bb1533b128a4e917f> /System/Library/PrivateFrameworks/AVFCapture.framework/AVFCapture
       0x19f591000 -        0x19fb0ffff  CMCapture arm64e  <0b47eb0371b53d92a04b3c5df609320c> /System/Library/PrivateFrameworks/CMCapture.framework/CMCapture
       0x19ffc5000 -        0x1a009bfff  Email arm64e  <ad5eac131d9830ca97512100fa60300b> /System/Library/PrivateFrameworks/Email.framework/Email
       0x1a00c0000 -        0x1a011cfff  AccessibilityUIUtilities arm64e  <0959ca2d20a1351da759ea9dd477f057> /System/Library/PrivateFrameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
       0x1a037a000 -        0x1a0425fff  BulletinBoard arm64e  <97817f46a8733f64a9fd0e390c56bbd3> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
       0x1a0426000 -        0x1a0549fff  PeopleSuggester arm64e  <28e57b1b2b61366fb2d0cdfb23114523> /System/Library/PrivateFrameworks/PeopleSuggester.framework/PeopleSuggester
       0x1a054a000 -        0x1a0554fff  libsystem_notify.dylib arm64e  <252db8f9aaef333ba181d492e14411b2> /usr/lib/system/libsystem_notify.dylib
       0x1a0555000 -        0x1a05b2fff  CryptoTokenKit arm64e  <e1fde3c2825331a38e9a1047433421c5> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
       0x1a0633000 -        0x1a06acfff  libcorecrypto.dylib arm64e  <a1c6b0f254263e98bcba7bd3b59dbb6f> /usr/lib/system/libcorecrypto.dylib
       0x1a06ad000 -        0x1a06dafff  UserManagement arm64e  <ec5b0e9b994731539f50b8392c27ce21> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x1a07c7000 -        0x1a07defff  libsystem_asl.dylib arm64e  <a73a171af1ae3c4f987cd83fa7fd6f2d> /usr/lib/system/libsystem_asl.dylib
       0x1a07df000 -        0x1a080dfff  AppSSO arm64e  <b0d8662005493fa3851e438f176889f7> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
       0x1a080e000 -        0x1a0831fff  SharedWebCredentials arm64e  <5f8ef8c79c873e8f8f945a30c30f8c48> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
       0x1a0832000 -        0x1a0a6afff  SafariServices arm64e  <3c135c58b59e36b18de35ccc5c4c94fe> /System/Library/Frameworks/SafariServices.framework/SafariServices
       0x1a0ac1000 -        0x1a0afefff  DataAccessExpress arm64e  <72d0519b3fc739bbbb3bcb944b905c76> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x1a0aff000 -        0x1a0b39fff  CoreServicesStore arm64e  <0856c3bc53d6355cb68ab1e5c711d2e4> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
       0x1a0b3a000 -        0x1a0b6afff  CoreAnalytics arm64e  <0fb62ebf123d39f28083c829e27d3d66> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
       0x1a0b6b000 -        0x1a0b7afff  SymptomAnalytics arm64e  <f48fd25114f435aa9c763f33ff6594bb> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
       0x1a0e0c000 -        0x1a0e1dfff  NanoPreferencesSync arm64e  <9de4825ab9ad36ed8994e17becfe59ca> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
       0x1a14cc000 -        0x1a151dfff  IconServices arm64e  <a13a9fb90a363c09a34bf85a2ae1bb3d> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
       0x1a161e000 -        0x1a1715fff  QuickLook arm64e  <ba3b06e0d2ee31f9b89918700f2c26cd> /System/Library/Frameworks/QuickLook.framework/QuickLook
       0x1a22ea000 -        0x1a25e7fff  vImage arm64e  <ce4c26f44c5d3f838389b9b0f4c7cbe1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x1a380c000 -        0x1a3a43fff  IMCore arm64e  <6e522e35d4b73ed29c7f1e9e04dbe4e3> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
       0x1a3b4b000 -        0x1a3b66fff  IAP arm64e  <edcef1f6a15c3e4981e878899f5580b7> /System/Library/PrivateFrameworks/IAP.framework/IAP
       0x1a3b67000 -        0x1a3bc4fff  ktrace arm64e  <a700ec9fd24e36f7b149baf2f9bd96a1> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
       0x1a3bc5000 -        0x1a3bc7fff  libAXSafeCategoryBundle.dylib arm64e  <981513d9842734e39afb0b66cfd1bcb2> /usr/lib/libAXSafeCategoryBundle.dylib
       0x1a3bc8000 -        0x1a3bd9fff  RecapPerformanceTesting arm64e  <3dab37c91964388c8190cdaf6be1340d> /System/Library/PrivateFrameworks/RecapPerformanceTesting.framework/RecapPerformanceTesting
       0x1a3d6d000 -        0x1a3d78fff  Celestial arm64e  <64b792db705a302aadad9fbe03cf4dd1> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x1a3e43000 -        0x1a3eb0fff  Pegasus arm64e  <12e7811773d73b109fb88e723d06ef45> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
       0x1a3eb1000 -        0x1a4057fff  WebKitLegacy arm64e  <72b03e1c27f038ad8078cc19d52972a4> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1a4152000 -        0x1a420bfff  ClassKit arm64e  <d2bcbce7a05036fa99eca7640a1a47c4> /System/Library/Frameworks/ClassKit.framework/ClassKit
       0x1a56f2000 -        0x1a56fdfff  IOMobileFramebuffer arm64e  <abeff827175d3a9892d1bd8319b92547> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
       0x1a56fe000 -        0x1a578dfff  ScreenTimeCore arm64e  <a7b3d99ee2aa3ee5a4ce7d8b4449ecba> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
       0x1a578e000 -        0x1a57a1fff  CoreIDV arm64e  <73bd613d5f4f3fcfa72b7f5f50b95ad7> /System/Library/PrivateFrameworks/CoreIDV.framework/CoreIDV
       0x1a5854000 -        0x1a5a05fff  CloudPhotoLibrary arm64e  <629805acb22d3765b4101ae0d7364949> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x1a5a06000 -        0x1a5cf2fff  MusicLibrary arm64e  <32fad359e9be3c239c7a0ee86e45ae5f> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x1a5cf3000 -        0x1a5d71fff  CallKit arm64e  <e7f58dc21bc033728ae99d15f3af9e33> /System/Library/Frameworks/CallKit.framework/CallKit
       0x1a5db6000 -        0x1a5e1cfff  AXRuntime arm64e  <cdc1737184783982936d2aa23e6c61dc> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
       0x1a5e1d000 -        0x1a5e42fff  PrototypeTools arm64e  <c9d871e2cded32d9b70e324e268d2c52> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
       0x1a5e43000 -        0x1a5e74fff  PersistentConnection arm64e  <02524dc8d7103cb9b6fe23d62b836648> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x1a5e75000 -        0x1a5f9bfff  BiomeStreams arm64e  <42a0e7fb48b73810ae193c1e5d902e1b> /System/Library/PrivateFrameworks/BiomeStreams.framework/BiomeStreams
       0x1a5f9c000 -        0x1a5fbdfff  SecurityFoundation arm64e  <a25f7867362b36f3822be9726b37cc5c> /System/Library/PrivateFrameworks/SecurityFoundation.framework/SecurityFoundation
       0x1a5fbe000 -        0x1a62e9fff  PencilKit arm64e  <e938b37c3c443b3b9779f2d66caf72ae> /System/Library/Frameworks/PencilKit.framework/PencilKit
       0x1a6388000 -        0x1a6394fff  libswiftUniformTypeIdentifiers.dylib arm64e  <a79468b13fe8335791ed4b043f12db88> /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib
       0x1a65d3000 -        0x1a675cfff  IMDPersistence arm64e  <23206653887139588ec1e608644c4a72> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
       0x1a6b4c000 -        0x1a6d57fff  SafariSharedUI arm64e  <da8870eede5137a99f360a8992d3181b> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
       0x1a6d58000 -        0x1a6d7afff  TextToSpeech arm64e  <4b933b5ce3ce3677aa746728397bcecd> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
       0x1a6d7b000 -        0x1a6d96fff  AppSSOCore arm64e  <90a5e57249d634319a0ed45c2c204e48> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
       0x1a6d97000 -        0x1a6da1fff  libMobileGestaltExtensions.dylib arm64e  <2a634cc9eafa361d8fd3a3b586852021> /usr/lib/libMobileGestaltExtensions.dylib
       0x1a6da2000 -        0x1a6dbefff  CoreFollowUp arm64e  <cda0300a4336337480ee5437fe6fb711> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
       0x1a6dbf000 -        0x1a6e4dfff  Rapport arm64e  <a5c4e7dbda273da0bb96d8f5652e1ffa> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
       0x1a6eac000 -        0x1a6f30fff  SiriUICore arm64e  <21acd2415a763b00b02d0778b2a1a136> /System/Library/PrivateFrameworks/SiriUICore.framework/SiriUICore
       0x1a6f42000 -        0x1a6f54fff  Categories arm64e  <5b0844fe7f643d228fa0be2b33c61b37> /System/Library/PrivateFrameworks/Categories.framework/Categories
       0x1a72cb000 -        0x1a72f4fff  LocationSupport arm64e  <8f52cd62ed8d35858d27525eb1409fc5> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
       0x1a72f5000 -        0x1a7339fff  iCalendar arm64e  <79c282c520513190bffab5d09ce896e0> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
       0x1a733a000 -        0x1a7375fff  CoreAccessories arm64e  <422e52e3a988307aa8850997f4376535> /System/Library/PrivateFrameworks/CoreAccessories.framework/CoreAccessories
       0x1a7376000 -        0x1a74a0fff  ConfigurationEngineModel arm64e  <634deb17a4ee37178362ec97aa33d4ae> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
       0x1a74a1000 -        0x1a74dcfff  CacheDelete arm64e  <5de7c83fbdb13cd98d4bc0d20edf4751> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x1a74dd000 -        0x1a7588fff  CVNLP arm64e  <1a50e01c64b63f77b50f6b0e921304ae> /System/Library/PrivateFrameworks/CVNLP.framework/CVNLP
       0x1a7738000 -        0x1a7740fff  OSAServicesClient arm64e  <ab75e0a00e82381a8a27f4ea1f0758ef> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
       0x1a7741000 -        0x1a7746fff  BiomeFoundation arm64e  <0034f1e4d0fe37049bd4aa451c33bdeb> /System/Library/PrivateFrameworks/BiomeFoundation.framework/BiomeFoundation
       0x1a7747000 -        0x1a77adfff  ProtectedCloudStorage arm64e  <af8c0edacf833ff9bc300222e9d75839> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x1a77ae000 -        0x1a77f1fff  C2 arm64e  <7d14e86116ae3f5fa447ad7601f10e05> /System/Library/PrivateFrameworks/C2.framework/C2
       0x1a77f2000 -        0x1a7893fff  DifferentialPrivacy arm64e  <33e2180c3de33e139449431edc63372b> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
       0x1a78bf000 -        0x1a828bfff  EmbeddedAcousticRecognition arm64e  <4c36b7d712d83ac092a05cf4be6639bf> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition
       0x1a828c000 -        0x1a86f2fff  SiriInstrumentation arm64e  <8ee406a2e2443ecb9a871ee8669665a8> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
       0x1a86f3000 -        0x1a8744fff  BiometricKit arm64e  <9bad6b79b5b13f80aacb3fd44701df71> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
       0x1a894f000 -        0x1a8a2bfff  CoreSymbolication arm64e  <b1acd8251e243916a95f6dcae19a410a> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
       0x1a94bc000 -        0x1a94befff  MessageSupport arm64e  <6e1fb2e0f46337d185e3fdadca563067> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
       0x1a94bf000 -        0x1a94d2fff  IOSurface arm64e  <1622651db4403ff999c5b57e138cfb77> /System/Library/Frameworks/IOSurface.framework/IOSurface
       0x1a94d3000 -        0x1a953ffff  MobileWiFi arm64e  <1406cc7050783f3ea1973fc36096b443> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
       0x1a99ef000 -        0x1a9a42fff  DoNotDisturb arm64e  <344d699ee0cb372bbcd53b898eeb52e0> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
       0x1a9a43000 -        0x1a9ad5fff  NearField arm64e  <38e31228bf7231e38f8004041ea4425a> /System/Library/PrivateFrameworks/NearField.framework/NearField
       0x1a9ad6000 -        0x1a9b7cfff  MMCS arm64e  <0c0611b1c2cc3db9b93cfa1e3387b79d> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x1a9bd6000 -        0x1a9c10fff  libGLImage.dylib arm64e  <215c08980bc43a55b640d720deb8a716> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x1a9c11000 -        0x1a9c19fff  libsystem_symptoms.dylib arm64e  <5c29bc5a3f8b3d94b415e2fe48869343> /usr/lib/system/libsystem_symptoms.dylib
       0x1a9c74000 -        0x1aa2b3fff  CoreAudio arm64e  <dadf4943c2be30bb9ff70b412c55d723> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x1aa2b4000 -        0x1aa2cefff  ContactsDonation arm64e  <c532feccea13341dad9a74954e8eea2c> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
       0x1aa2cf000 -        0x1aa2f2fff  IntentsCore arm64e  <db64bd91749b3a6aaed044e5989c8dbb> /System/Library/PrivateFrameworks/IntentsCore.framework/IntentsCore
       0x1aa2f3000 -        0x1aa39dfff  FrontBoard arm64e  <f471ab264f443cacb846edc99b445573> /System/Library/PrivateFrameworks/FrontBoard.framework/FrontBoard
       0x1aa403000 -        0x1aa448fff  ImageCaptureCore arm64e  <19a7cb0812af3aa6916d51a6f92d478e> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
       0x1aa4c4000 -        0x1aa54cfff  RenderBox arm64e  <930a281f4a573983b090a71acbfc9de2> /System/Library/PrivateFrameworks/RenderBox.framework/RenderBox
       0x1aa60e000 -        0x1aa77afff  Navigation arm64e  <1a28f028b56333068fbef1bc1fb6cd88> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
       0x1aa77b000 -        0x1aa79ffff  SafariFoundation arm64e  <ea8ed3fa9c763a9eb8290979e2e5113e> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
       0x1aaa4f000 -        0x1aaa68fff  MaterialKit arm64e  <21cbc4fe59553c65aacc45526e522f1a> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
       0x1aacbb000 -        0x1aacc4fff  EmojiKit arm64e  <64669965726f3b45bcd74a3ba45043a4> /System/Library/PrivateFrameworks/EmojiKit.framework/EmojiKit
       0x1aacc5000 -        0x1aacd5fff  CoreAUC arm64e  <02906d227b7e384db7e19658626d6344> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
       0x1ab5fd000 -        0x1ab615fff  SettingsFoundation arm64e  <e118ca31705033b7948bb60fe7821f42> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
       0x1ab6a2000 -        0x1ab700fff  SiriActivation arm64e  <b37ab52c8dab3a80a0f63da57548bff0> /System/Library/PrivateFrameworks/SiriActivation.framework/SiriActivation
       0x1abe8e000 -        0x1ac0cbfff  RawCamera arm64e  <fd984586ff0b3946aab158ceb184c33e> /System/Library/CoreServices/RawCamera.bundle/RawCamera
       0x1ac141000 -        0x1ac1b0fff  ToneLibrary arm64e  <deda3e21e91933b7b8c05cd9b7d3de20> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
       0x1ac1b1000 -        0x1ac22ffff  TrialProto arm64e  <e4a22516f9b231b6b562bf6d7f11658e> /System/Library/PrivateFrameworks/TrialProto.framework/TrialProto
       0x1acb35000 -        0x1acb43fff  MediaSafetyNet arm64e  <1fd4594927313ad7947fbc558727fb2b> /System/Library/PrivateFrameworks/MediaSafetyNet.framework/MediaSafetyNet
       0x1acb44000 -        0x1acb8dfff  TimeSync arm64e  <f7030ebc1038345eae4deebe5a0f6dcb> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync
       0x1acbed000 -        0x1acc3dfff  ExposureNotification arm64e  <6e946ae38fa433ab90f24072dbca471b> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification
       0x1ad38e000 -        0x1ad398fff  CoreTime arm64e  <ebed08270072346b8466f05d4384cae0> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
       0x1added000 -        0x1ae043fff  NeutrinoCore arm64e  <3220808489b7312fa1599ce93dd6657d> /System/Library/PrivateFrameworks/NeutrinoCore.framework/NeutrinoCore
       0x1ae054000 -        0x1ae1a1fff  TextRecognition arm64e  <ec00cd7d1a4a36bdb64e359960c4f8db> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
       0x1ae2fb000 -        0x1ae30efff  ContextKitExtraction arm64e  <013e6501aef13556b9c76be57798e22a> /System/Library/PrivateFrameworks/ContextKitExtraction.framework/ContextKitExtraction
       0x1ae445000 -        0x1ae447fff  libswiftObjectiveC.dylib arm64e  <7eb9c85783d83c8bbf9bf55779a9ac76> /usr/lib/swift/libswiftObjectiveC.dylib
       0x1aeed8000 -        0x1aef4cfff  EmailCore arm64e  <38bedf2c7a6738e98a182d7659f08563> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
       0x1aefb9000 -        0x1af6affff  AVConference arm64e  <bff68f28184530bfb3e8982ec710d1b5> /System/Library/PrivateFrameworks/AVConference.framework/AVConference
       0x1af6b0000 -        0x1af6d0fff  KeychainCircle arm64e  <c688f7d6d7823d90b76f83f4c99bb058> /System/Library/PrivateFrameworks/KeychainCircle.framework/KeychainCircle
       0x1af707000 -        0x1af75bfff  MIME arm64e  <cb3d26d2b0573104895ae1fd8fb26e2a> /System/Library/PrivateFrameworks/MIME.framework/MIME
       0x1afad3000 -        0x1afaecfff  MailServices arm64e  <32eb4233887031f2a129246c0c733be0> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
       0x1afaed000 -        0x1afb32fff  PhotosPlayer arm64e  <47f3e5a2a5bf367b8e6676b31fbe478f> /System/Library/PrivateFrameworks/PhotosPlayer.framework/PhotosPlayer
       0x1afb85000 -        0x1afc15fff  CoreDAV arm64e  <1dc4a193dec93a118b81ef7b07bcd901> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
       0x1afc16000 -        0x1afc2ffff  AXAssetLoader arm64e  <79677c914dc13656948c309146323768> /System/Library/PrivateFrameworks/AXAssetLoader.framework/AXAssetLoader
       0x1afda6000 -        0x1afe06fff  CalDAV arm64e  <29b68c3a081d3222932083b86c665231> /System/Library/PrivateFrameworks/CalDAV.framework/CalDAV
       0x1afe55000 -        0x1afe64fff  MobileIcons arm64e  <847b46d3c3eb38eb9c4328659a448c93> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
       0x1b0558000 -        0x1b0638fff  ProofReader arm64e  <2beb4342ab093c5fa06d99883f8afc34> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x1b0639000 -        0x1b067afff  BookUtility arm64e  <7395913ec0d536bd9b5ce473f5ec5ed9> /System/Library/PrivateFrameworks/BookUtility.framework/BookUtility
       0x1b1cbe000 -        0x1b1d22fff  AccessibilitySharedSupport arm64e  <0a8df0573f7039769966c987097423d3> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
       0x1b1d23000 -        0x1b1d2efff  MallocStackLogging arm64e  <e6c630d3bb433d4cb7c813730d467a81> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
       0x1b1d4b000 -        0x1b1d85fff  AttributeGraph arm64e  <eb28d96bc9ef356f8689e35e7d121a23> /System/Library/PrivateFrameworks/AttributeGraph.framework/AttributeGraph
       0x1b1dae000 -        0x1b1fdefff  EmailDaemon arm64e  <ce10eb1280c332d6906ab08b149bd965> /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
       0x1b1fdf000 -        0x1b202ffff  MetadataUtilities arm64e  <edeec256beb7341c9322fab032c785a9> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
       0x1b26b6000 -        0x1b26edfff  MailSupport arm64e  <5b9b595879843c4f9ea1c4323f34f813> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
       0x1b26ee000 -        0x1b2758fff  CoreLocationProtobuf arm64e  <24c29c38a7b735dfab428a7aaf0a0317> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
       0x1b2983000 -        0x1b29cdfff  Bom arm64e  <85f3ca084b613af3b5c79debde697908> /System/Library/PrivateFrameworks/Bom.framework/Bom
       0x1b2a0b000 -        0x1b2a13fff  PushKit arm64e  <e0946b66b8363621ad27c678e0d8c907> /System/Library/Frameworks/PushKit.framework/PushKit
       0x1b2a14000 -        0x1b2adafff  PhotosFormats arm64e  <74b03833397732fcbbefea70c3a1df3c> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x1b2e67000 -        0x1b2f2dfff  Quagga arm64e  <3a8a887d233f30c38023afed249974cf> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x1b2f2e000 -        0x1b2f37fff  StudyLog arm64e  <6f90088ba5e132139ca3fb06c8f6b275> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
       0x1b2f38000 -        0x1b2f89fff  CryptoKit arm64e  <dfbde4328c543f54b42ed7c91fc06077> /System/Library/Frameworks/CryptoKit.framework/CryptoKit
       0x1b3068000 -        0x1b3161fff  AirTrafficDevice arm64e  <2176ea1094a6353fae287bb5ecef9407> /System/Library/PrivateFrameworks/AirTrafficDevice.framework/AirTrafficDevice
       0x1b416c000 -        0x1b41c2fff  NaturalLanguage arm64e  <63c54eb56e743737a68ffbdcf319af67> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
       0x1b4e2d000 -        0x1b4e50fff  MediaStream arm64e  <011b9be55ded31839b89989fbef11fdb> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x1b5853000 -        0x1b5864fff  libAXSpeechManager.dylib arm64e  <eb885b9835723cbc9a5132441d86c81d> /usr/lib/libAXSpeechManager.dylib
       0x1b5d83000 -        0x1b5eb1fff  InternalSwiftProtobuf arm64e  <73528840b04b31c2ac5619cab4dca85a> /System/Library/PrivateFrameworks/InternalSwiftProtobuf.framework/InternalSwiftProtobuf
       0x1b60b5000 -        0x1b60ecfff  MediaConversionService arm64e  <beb127e3569c3b73907e5dadceb1d2d7> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
       0x1b60f3000 -        0x1b6168fff  AppleCVAPhoto arm64e  <ecae1eaa85d433988ced2f85c2a6ecaf> /System/Library/PrivateFrameworks/AppleCVAPhoto.framework/AppleCVAPhoto
       0x1b62db000 -        0x1b64a8fff  CoreHandwriting arm64e  <154b46c6d98031beaef3aeaf2e0b3a50> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
       0x1b64a9000 -        0x1b6529fff  libnfshared.dylib arm64e  <c39c74bc5b26373cbbdd5bc9ac5fa5bf> /usr/lib/libnfshared.dylib
       0x1b683a000 -        0x1b6846fff  AppleIDAuthSupport arm64e  <17a130567fbf3fc787e9a799ee7a463d> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x1b6876000 -        0x1b6890fff  LocalAuthentication arm64e  <807e7dd7d1fd3c319a7ac7187c333676> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
       0x1b6891000 -        0x1b6897fff  IOAccelerator arm64e  <156eae5fdf353876b294b3424e9d8182> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
       0x1b6d3a000 -        0x1b6d46fff  CloudPhotoServices arm64e  <eb646f04ee0938d0b7d0928de7c8fb06> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x1b6da0000 -        0x1b6e5bfff  iTunesStore arm64e  <85e83563a00937ddaf2b87cab422a0d1> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x1b7372000 -        0x1b73a7fff  libsystem_kernel.dylib arm64e  <1fb39303587b320eaeb8e51a54c8a4a9> /usr/lib/system/libsystem_kernel.dylib
       0x1b785d000 -        0x1b7969fff  ResponseKit arm64e  <c9941ded6ccc3328b69896f37b34f1f1> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
       0x1b796a000 -        0x1b79a8fff  EmojiFoundation arm64e  <6fc5576781fd3dbdaf10dc516ccb2e9f> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
       0x1b812d000 -        0x1b813bfff  FontServices arm64e  <48bb5ff894ac301eaa9895aace8ad1c6> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x1b84e2000 -        0x1b8550fff  ViceroyTrace arm64e  <579b019042873b899135e35d4a934c90> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
       0x1b8551000 -        0x1b855dfff  MediaAccessibility arm64e  <a7abbdf3dfae340dbcf1e6cc2c50b881> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x1b85aa000 -        0x1b8c3ffff  SiriTTS arm64e  <c3c44113c90e3f82ae89dbbfab9cff56> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
       0x1b8c40000 -        0x1b8c5bfff  SetupAssistantSupport arm64e  <7394518633be35ef83ee376f07addae7> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
       0x1b8c64000 -        0x1b8cd4fff  Social arm64e  <ec469b39c7563d678335dc797f02c9fc> /System/Library/Frameworks/Social.framework/Social
       0x1b8e14000 -        0x1b8e4efff  VirtualGarage arm64e  <7f13cb2d971838cf9c840a4eed1651d2> /System/Library/PrivateFrameworks/VirtualGarage.framework/VirtualGarage
       0x1b8e4f000 -        0x1b8e79fff  NetAppsUtilities arm64e  <ca0d28e040103c11806fee069af34ed8> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
       0x1ba448000 -        0x1ba44efff  libdscsym.dylib arm64e  <fc1c85586b1038e08ab2c19c543a8a8c> /usr/lib/libdscsym.dylib
       0x1ba44f000 -        0x1ba460fff  HangTracer arm64e  <bd557fe3f2e435d4959083d6981eb4df> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
       0x1ba65f000 -        0x1ba744fff  SampleAnalysis arm64e  <10152813288334f8808c9c47d06a4bec> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
       0x1ba745000 -        0x1ba77afff  PlugInKit arm64e  <6d376f324a3030299ab288fa258204fe> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x1ba8b1000 -        0x1ba8b2fff  libSystem.B.dylib arm64e  <57eafeae68af3332b4917bc819641c68> /usr/lib/libSystem.B.dylib
       0x1bac46000 -        0x1bac52fff  MobileActivation arm64e  <aa85fd43d9d53021bc9de03c65554462> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
       0x1bac53000 -        0x1bacc0fff  CalendarDaemon arm64e  <f0ff9ad0cb493866b698197946c41e8a> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
       0x1badd6000 -        0x1bae5bfff  libarchive.2.dylib arm64e  <6b102dc88a9f310e949716b9de9471a9> /usr/lib/libarchive.2.dylib
       0x1bae5c000 -        0x1bae82fff  libtailspin.dylib arm64e  <fb7e16e5f27b3088ac410b156bdf16d9> /usr/lib/libtailspin.dylib
       0x1bae83000 -        0x1bb42efff  libBNNS.dylib arm64e  <70a42fe141363855a78975893067f732> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x1bb42f000 -        0x1bb461fff  SharedUtils arm64e  <47fc3b1caae93200886eac317ae9af38> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
       0x1bb462000 -        0x1bb490fff  CoreCDP arm64e  <7a04897b29033495af04af99f5e2f3cf> /System/Library/PrivateFrameworks/CoreCDP.framework/CoreCDP
       0x1bb491000 -        0x1bb4a5fff  DiagnosticRequest arm64e  <735213c997493bb89b23003e22b0b0b2> /System/Library/PrivateFrameworks/DiagnosticRequest.framework/DiagnosticRequest
       0x1bb587000 -        0x1bb58cfff  libsysdiagnose.dylib arm64e  <bba0e47c709a3ab5a422ad47fefea9db> /usr/lib/libsysdiagnose.dylib
       0x1bb621000 -        0x1bb741fff  CoreMediaStream arm64e  <bd013aabaa4136318197d777343cdab9> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x1bb92a000 -        0x1bb92afff  AVFoundation arm64e  <9d6c630b226a3ca1b95b3ec4eb215f12> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x1bb92b000 -        0x1bb92bfff  Accelerate arm64e  <939c4fea03553068af91aba9d0e6df6c> /System/Library/Frameworks/Accelerate.framework/Accelerate
       0x1bb92c000 -        0x1bbba1fff  libBLAS.dylib arm64e  <75ce68f6f28d39acbeb958e73d0447ad> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x1bbba2000 -        0x1bc066fff  libLAPACK.dylib arm64e  <3a550050a84133b195867f41a601b764> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x1bc067000 -        0x1bc07bfff  libLinearAlgebra.dylib arm64e  <1d06650fd8c431c885df309c26895109> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x1bc07c000 -        0x1bc080fff  libQuadrature.dylib arm64e  <b95ac53414be341095a7566977b3911e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x1bc081000 -        0x1bc0e7fff  libSparse.dylib arm64e  <0106e1c42122347fa6a9e0a98779cd82> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
       0x1bc0e8000 -        0x1bc0fafff  libSparseBLAS.dylib arm64e  <2e1a8fdf06af339c8d27bb0e9a858bff> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x1bc0fb000 -        0x1bc14ffff  libvMisc.dylib arm64e  <7005d74842a83f8da4af4eb284dbb014> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x1bc150000 -        0x1bc150fff  vecLib arm64e  <82c447c298d33f5db039d6f6ef721fac> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x1bc151000 -        0x1bc167fff  Accessibility arm64e  <dbbd706e6fd33e979e00de472edbb7ae> /System/Library/Frameworks/Accessibility.framework/Accessibility
       0x1bc16a000 -        0x1bc195fff  AddressBook arm64e  <4439ff3021363fa09d8a13343082451f> /System/Library/Frameworks/AddressBook.framework/AddressBook
       0x1bc1a1000 -        0x1bc1a4fff  AppTrackingTransparency arm64e  <71c381da798b363d8c1f60220dd5ffb6> /System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency
       0x1bc1a5000 -        0x1bc1b7fff  AssetsLibrary arm64e  <3085567ec0603ae095f60ba68642b4ae> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x1bc2c4000 -        0x1bc31afff  AuthenticationServices arm64e  <9431677f3b47311a8b071b32accfb671> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
       0x1bc340000 -        0x1bc399fff  CarPlay arm64e  <cac8484854803cd69ac8b5e5050d2a7c> /System/Library/Frameworks/CarPlay.framework/CarPlay
       0x1bc48c000 -        0x1bc4fbfff  CoreMIDI arm64e  <1d7beecbd7c83b1bbc98b0301cef8577> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
       0x1bca19000 -        0x1bca34fff  ExternalAccessory arm64e  <ca049b4d19f23a44bd55a2fb498e74c0> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory
       0x1bca7b000 -        0x1bcaa8fff  GSS arm64e  <e78eeb51e1ab37a0b9fe71c0aa62b7bd> /System/Library/Frameworks/GSS.framework/GSS
       0x1bcc31000 -        0x1bcc4ffff  IntentsUI arm64e  <095286bac8c4359a87c11726628634d6> /System/Library/Frameworks/IntentsUI.framework/IntentsUI
       0x1bcc75000 -        0x1bce43fff  MLCompute arm64e  <dcd2ad4fe8d930e095ed1e56f6e44239> /System/Library/Frameworks/MLCompute.framework/MLCompute
       0x1bce73000 -        0x1bce8ffff  MetalKit arm64e  <beacbd08ebff345f8b2484ccc8ddb636> /System/Library/Frameworks/MetalKit.framework/MetalKit
       0x1bce90000 -        0x1bcf1bfff  MPSImage arm64e  <9182e0197e48363d9cdd6f58ffd207b5> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
       0x1bcf1c000 -        0x1bcf44fff  MPSMatrix arm64e  <08bd0163dc803703916fe258ea6d674c> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
       0x1bcf45000 -        0x1bcfeafff  MPSNDArray arm64e  <975ed24d58393567ac2d9a6293402f89> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
       0x1bcfeb000 -        0x1bd040fff  MPSRayIntersector arm64e  <4f4f8aeafa89337a95fa8c5f7ab8561d> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
       0x1bd041000 -        0x1bd041fff  MetalPerformanceShaders arm64e  <0e740c0b1a5739299884ad9eec1f7567> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
       0x1bd042000 -        0x1bd9fafff  MetalPerformanceShadersGraph arm64e  <6d342988a3a33d92918f48a9663d3e0f> /System/Library/Frameworks/MetalPerformanceShadersGraph.framework/MetalPerformanceShadersGraph
       0x1bda12000 -        0x1bda12fff  MobileCoreServices arm64e  <5ea91108ea00340a905d4bf451e1ff3c> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x1be32d000 -        0x1be33bfff  OSLog arm64e  <86ec240be6da343585065fe83cec4522> /System/Library/Frameworks/OSLog.framework/OSLog
       0x1be440000 -        0x1be449fff  OpenGLES arm64e  <6a69c0f45cfd3642abd82ca669daa230> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x1be44a000 -        0x1be44bfff  libCVMSPluginSupport.dylib arm64e  <d2dd4ccc3e6137cc8565b52d61d279a0> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x1be44c000 -        0x1be452fff  libCoreFSCache.dylib arm64e  <3a539e2a0a703f9fa3c1f18334647991> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x1be453000 -        0x1be458fff  libCoreVMClient.dylib arm64e  <0b5779b8e3513a69a0fe3ed95d5bab2e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x1be459000 -        0x1be462fff  libGFXShared.dylib arm64e  <112a92b2461a39e99093347d4c161a98> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x1be61d000 -        0x1be705fff  PDFKit arm64e  <6742858020113c1eac168991fa0caf7d> /System/Library/Frameworks/PDFKit.framework/PDFKit
       0x1be719000 -        0x1be75ffff  QuickLookThumbnailing arm64e  <6afff013004239a4a5bc04214a2f69e0> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
       0x1becff000 -        0x1bedd2fff  SoundAnalysis arm64e  <0746f04d68b23975baa330694a8da5ce> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
       0x1bef23000 -        0x1bef23fff  UIKit arm64e  <3bc26a587ba53cff9834ba2a70beed66> /System/Library/Frameworks/UIKit.framework/UIKit
       0x1bef3a000 -        0x1bf01afff  VideoSubscriberAccount arm64e  <90923eff860c3a14b9b75b6401e65b93> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
       0x1bf01b000 -        0x1bf616fff  libfaceCore.dylib arm64e  <3e6015156b1d30ec92da027c493a95e4> /System/Library/Frameworks/Vision.framework/libfaceCore.dylib
       0x1bf617000 -        0x1bf617fff  VisionKit arm64e  <55e4be805fbb38b2817381c90c4b6c58> /System/Library/Frameworks/VisionKit.framework/VisionKit
       0x1bfb99000 -        0x1bfb9cfff  AFKUser arm64e  <5bcefcdba63c3b6dabcb9a8c9bb804ce> /System/Library/PrivateFrameworks/AFKUser.framework/AFKUser
       0x1bfc71000 -        0x1c01cafff  ANECompiler arm64e  <28be2904fed8315bb378505baccf1256> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
       0x1c01cb000 -        0x1c01e8fff  ANEServices arm64e  <6d781ab084cf37c8815fc42bd22fb19b> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
       0x1c01ed000 -        0x1c0248fff  APFS arm64e  <a57c650526ae36c9bb95c08876f5557b> /System/Library/PrivateFrameworks/APFS.framework/APFS
       0x1c0249000 -        0x1c0254fff  ASEProcessing arm64e  <77c9e6b84364334c8d0309f36e7d2ebc> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
       0x1c025b000 -        0x1c0295fff  ATFoundation arm64e  <f0f512b6a7693107a854871304c29f3f> /System/Library/PrivateFrameworks/ATFoundation.framework/ATFoundation
       0x1c02a8000 -        0x1c031ffff  ICE arm64e  <40fe10958ca23105bdb82391dc1c6c27> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework/ICE
       0x1c0320000 -        0x1c0320fff  LegacyHandle arm64e  <77c0bc84fd5e351f96013cb9403cc347> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework/LegacyHandle
       0x1c0321000 -        0x1c0327fff  SimpleKeyExchange arm64e  <78c6ce7579823849b0f44996773ee9ca> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
       0x1c0328000 -        0x1c0328fff  snatmap arm64e  <34a537d9d3d23ed2a5294a3893441c48> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework/snatmap
       0x1c0b76000 -        0x1c0b7bfff  AggregateDictionary arm64e  <e9c9dfb3393c31dbb23b6d65af7bbf31> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x1c0d25000 -        0x1c0e01fff  AirPlaySync arm64e  <2c0d4b0d10ba3eafb821c78fcfb1ecf4> /System/Library/PrivateFrameworks/AirPlaySync.framework/AirPlaySync
       0x1c0f1e000 -        0x1c0f3cfff  AlgosScoreFramework arm64e  <56fa2c79286a33c2afb98e49851e4840> /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/AlgosScoreFramework
       0x1c1098000 -        0x1c129afff  AppC3D arm64e  <c15d4644efef3acba189437d9bb0b17f> /System/Library/PrivateFrameworks/AppC3D.framework/AppC3D
       0x1c129b000 -        0x1c12cafff  AppConduit arm64e  <836cf9cdbb3d3ac991779845ca3ae74f> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
       0x1c31c8000 -        0x1c338cfff  AppleCVA arm64e  <0fe87a9ff5e53c4fbdd522580ada18ab> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
       0x1c338d000 -        0x1c344cfff  AppleDepth arm64e  <82f5111091ca3ac69f34c819bc0654dd> /System/Library/PrivateFrameworks/AppleDepth.framework/AppleDepth
       0x1c344d000 -        0x1c345cfff  AppleFSCompression arm64e  <a36d391606963324badbdfea743bdcf3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
       0x1c346d000 -        0x1c3492fff  AppleIDSSOAuthentication arm64e  <4861e7756b373a5dbc8b6f334cb193e9> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x1c3493000 -        0x1c34d9fff  AppleJPEG arm64e  <eb7bbf42140230f8b564f741328e1bce> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x1c35d2000 -        0x1c35f0fff  AppleNeuralEngine arm64e  <9655bd9f798b3c478134e2285a1bddfc> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
       0x1c35fa000 -        0x1c361efff  AppleSauce arm64e  <b04336ccf29735db9eedeeca2ae4b644> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
       0x1c365e000 -        0x1c367dfff  AssetCacheServices arm64e  <1242a4f55f573b37ad68b054028a59ec> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x1c391c000 -        0x1c3999fff  AuthKitUI arm64e  <fdc098253eb832c9808cf494c2dd73a6> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
       0x1c399a000 -        0x1c39f4fff  AutoLoop arm64e  <95e805ee41383b679e77d9e2f4083d88> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop
       0x1c3a32000 -        0x1c3a74fff  BiomePubSub arm64e  <98aa75097e443132a1b0432571211fc0> /System/Library/PrivateFrameworks/BiomePubSub.framework/BiomePubSub
       0x1c3e9b000 -        0x1c3eb1fff  BluetoothManager arm64e  <c7557185ac9f33e2911b214532fa4ff2> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
       0x1c3f68000 -        0x1c3f7dfff  BrailleTranslation arm64e  <f99b990b9c3f3effa27f225fcb91d317> /System/Library/PrivateFrameworks/BrailleTranslation.framework/BrailleTranslation
       0x1c4187000 -        0x1c4191fff  CMCaptureCore arm64e  <3818d4649cdd30dfb541e88a46bf4932> /System/Library/PrivateFrameworks/CMCaptureCore.framework/CMCaptureCore
       0x1c4192000 -        0x1c41adfff  CPAnalytics arm64e  <cafeed91329535d4823918307bf0e7eb> /System/Library/PrivateFrameworks/CPAnalytics.framework/CPAnalytics
       0x1c41b0000 -        0x1c41c1fff  CPMS arm64e  <93833303cc493857bee2f1d381f73682> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
       0x1c41c2000 -        0x1c41d3fff  CTCarrierSpace arm64e  <435f82fa74243c1aaa070265205eaeb5> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
       0x1c4341000 -        0x1c437bfff  CameraEditKit arm64e  <fce9e629002d3bed8d41ce316ceea82c> /System/Library/PrivateFrameworks/CameraEditKit.framework/CameraEditKit
       0x1c4535000 -        0x1c4539fff  CameraKit arm64e  <8f613a9955233eb48a619dfe201f6748> /System/Library/PrivateFrameworks/CameraKit.framework/CameraKit
       0x1c453a000 -        0x1c4545fff  CaptiveNetwork arm64e  <e63e1ee9e77e3a52b40b10f74b9f8d3a> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
       0x1c4546000 -        0x1c4557fff  CarPlayServices arm64e  <04f9a29236313e2e8a0c996fc58e96fc> /System/Library/PrivateFrameworks/CarPlayServices.framework/CarPlayServices
       0x1c465f000 -        0x1c4671fff  CarPlayUIServices arm64e  <f2fae1f0c5d93991b428efcb83511c3e> /System/Library/PrivateFrameworks/CarPlayUIServices.framework/CarPlayUIServices
       0x1c46ab000 -        0x1c4716fff  Catalyst arm64e  <32c2483b0e8c3898909c74b4e797d086> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
       0x1c4717000 -        0x1c4741fff  CellularPlanManager arm64e  <6ca7c0e37e973efab500dcd4b922664b> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
       0x1c475e000 -        0x1c4766fff  CertUI arm64e  <388e7e3d76c83162999db67278b1575a> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x1c4774000 -        0x1c47c4fff  ChunkingLibrary arm64e  <14801ea269a5309c884c34a99736f83e> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x1c4e84000 -        0x1c4e8bfff  CommonAuth arm64e  <97b85ba82ea0394982daf4cdf9c91fa4> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
       0x1c4e8c000 -        0x1c4e90fff  CommunicationsFilter arm64e  <67c8997eb20b36e3b7828fe8abab4064> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1c4f59000 -        0x1c4f5cfff  ConstantClasses arm64e  <176ed9fc6f4736cab8c8842d2892d76f> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x1c4f67000 -        0x1c4fb7fff  ContactsAutocomplete arm64e  <46b93291475036a3a0270affab955f02> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
       0x1c4fbd000 -        0x1c504efff  ContactsUICore arm64e  <bfddafdd4d6c30aeae321be7153ea39d> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1c5097000 -        0x1c5126fff  CoreAppleCVA arm64e  <f722558cbffd3b0fa320af7d109e8c92> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
       0x1c5127000 -        0x1c5257fff  CoreBrightness arm64e  <d0f85b992a0139bbbda6d0828a1ff97d> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x1c52e8000 -        0x1c52f8fff  CoreDuetDaemonProtocol arm64e  <995eef76a874302287a832762e07b0dd> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x1c52fb000 -        0x1c52fdfff  CoreDuetDebugLogging arm64e  <5024d0a959f93ca5a226775abd67113b> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x1c530d000 -        0x1c531ffff  CoreEmoji arm64e  <92917fd5cb0b3db187e4bf2c00ee4495> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1c5986000 -        0x1c598afff  CoreOptimization arm64e  <d596aabd36b538cf88eb69106eb68d5a> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
       0x1c598b000 -        0x1c5a58fff  CorePDF arm64e  <bf19b79c12bb311ab78e3d1ef4f2bd45> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x1c5a59000 -        0x1c5a62fff  CorePhoneNumbers arm64e  <1191f0ded59a3379b3ccee4f7c97024e> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
       0x1c5a63000 -        0x1c5abdfff  CorePrediction arm64e  <977fe87cfff43f279824594ccbfc939e> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
       0x1c68d2000 -        0x1c68dffff  CoreRecents arm64e  <f43e6af2206534feb385b9100b08b0be> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x1c68e0000 -        0x1c694ffff  CoreRecognition arm64e  <82a103a594533ab09ce441b191ea1c46> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
       0x1c6950000 -        0x1c6966fff  CoreSDB arm64e  <3dd5265578f93afdacaeba5b30a00d9f> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
       0x1c6967000 -        0x1c6996fff  CoreSVG arm64e  <fc84d22c642e36018984098cea5e7674> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
       0x1c6c18000 -        0x1c6c1cfff  CryptoKitCBridging arm64e  <341eb2b074bc32a28393c364fc14d80d> /System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging
       0x1c6c1d000 -        0x1c6c74fff  CryptoKitPrivate arm64e  <56b6acaad044302fb4b3d62c7a2306de> /System/Library/PrivateFrameworks/CryptoKitPrivate.framework/CryptoKitPrivate
       0x1c6c75000 -        0x1c6c79fff  DAAPKit arm64e  <31c41af9eed53405881c45eb5abc4851> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x1c6cfa000 -        0x1c6d55fff  DesktopServicesPriv arm64e  <c90a4a90212d344593561dc206c3358e> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/DesktopServicesPriv
       0x1c6d62000 -        0x1c6d78fff  DeviceIdentity arm64e  <fac49e4751513a309c8ca603dc7d2077> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
       0x1c6dc7000 -        0x1c6de4fff  DigitalAccess arm64e  <a4f42dffd3343c9aa0c2201ce2cb6a73> /System/Library/PrivateFrameworks/DigitalAccess.framework/DigitalAccess
       0x1c6f4e000 -        0x1c6f9cfff  DistributedEvaluation arm64e  <92a118b74301358984bc970bfc275cfe> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
       0x1c70af000 -        0x1c719afff  DocumentCamera arm64e  <f7922f0d3f553e98a5356634e53ce9c6> /System/Library/PrivateFrameworks/DocumentCamera.framework/DocumentCamera
       0x1c719b000 -        0x1c71e2fff  DocumentManager arm64e  <4cb3f40b0548360096c3e8c394a8eeb8> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
       0x1c71e3000 -        0x1c720cfff  DocumentManagerCore arm64e  <2ef11fe8c3f031b88c4d9cc361586463> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
       0x1c72be000 -        0x1c72c0fff  DragUI arm64e  <3050961e32503ef497f1bb1d7582dff4> /System/Library/PrivateFrameworks/DragUI.framework/DragUI
       0x1c72f9000 -        0x1c732bfff  EAP8021X arm64e  <cecdb75442c33ea2bee39aa0790c8f2b> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
       0x1c7345000 -        0x1c7350fff  EmailAddressing arm64e  <e8a441269f783394b26bf207d1d56e72> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
       0x1c735b000 -        0x1c7372fff  Engram arm64e  <c45fb9543be830709cad0a91f204463b> /System/Library/PrivateFrameworks/Engram.framework/Engram
       0x1c74c8000 -        0x1c7513fff  ExtensionFoundation arm64e  <a10ad5560eb830f1a73ab18841e53f4a> /System/Library/PrivateFrameworks/ExtensionFoundation.framework/ExtensionFoundation
       0x1c76df000 -        0x1c76ebfff  FSEvents arm64e  <51580b5434503ab4a35b81aef37602f3> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
       0x1c76ec000 -        0x1c770cfff  FTAWD arm64e  <76fe602267e63534bacd9989c79d800a> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1c770d000 -        0x1c7710fff  FTClientServices arm64e  <97d7e4ead8b5350f8f69fde8c0122ad4> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
       0x1c7711000 -        0x1c7b24fff  FaceCore arm64e  <3e2336e57fd830cbb713a03ee247fdcc> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x1c7b2b000 -        0x1c7b2bfff  FeatureFlags arm64e  <ed254ef8a7e839cbbc61889f97391c5f> /System/Library/PrivateFrameworks/FeatureFlags.framework/FeatureFlags
       0x1c7b2c000 -        0x1c7b35fff  FeatureFlagsSupport arm64e  <f8e956236f733a329bb4791e844c5186> /System/Library/PrivateFrameworks/FeatureFlagsSupport.framework/FeatureFlagsSupport
       0x1c7b36000 -        0x1c7b49fff  FeedbackLogger arm64e  <da57db359fc335e4aaadb6b41d562843> /System/Library/PrivateFrameworks/FeedbackLogger.framework/FeedbackLogger
       0x1c7d4b000 -        0x1c7e75fff  libFontParser.dylib arm64e  <1502fb3c07ae3d1bb1149a050a97d577> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x1c7e76000 -        0x1c7e7ffff  libGSFont.dylib arm64e  <b4be77e261ac3aee924e651c7d15cd34> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
       0x1c7e80000 -        0x1c7ebcfff  libGSFontCache.dylib arm64e  <544bc1543eaf3b4f95d02ac729af7b72> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x1c7f28000 -        0x1c7f30fff  libhvf.dylib arm64e  <1605359d97d1305180d3c2edbb9090ee> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
       0x1c7f5a000 -        0x1c7f72fff  Futhark arm64e  <eb04e56b42243abebe1eb48522a0203f> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
       0x1c8b3b000 -        0x1c8b3efff  GPURawCounter arm64e  <332b7405b9a43d698634533fc77264ff> /System/Library/PrivateFrameworks/GPURawCounter.framework/GPURawCounter
       0x1c8c2b000 -        0x1c8c4cfff  GenerationalStorage arm64e  <9554f7d25c6033b7b0fcbc377d2fd2a1> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
       0x1c8c4d000 -        0x1c8c5afff  GraphVisualizer arm64e  <2ae40501ffaa3532a30d124a6a0ea6a0> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
       0x1c8c88000 -        0x1c8c97fff  HID arm64e  <4486369b150b3373b90da847b20bd49c> /System/Library/PrivateFrameworks/HID.framework/HID
       0x1c8cb1000 -        0x1c8cb5fff  HSAAuthentication arm64e  <9b19799d5d8a3c8bb6902261eaa9b4be> /System/Library/PrivateFrameworks/HSAAuthentication.framework/HSAAuthentication
       0x1c8eba000 -        0x1c8f2efff  Heimdal arm64e  <4a0fc37c44ba31ddb1d797dca54c1491> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
       0x1c9523000 -        0x1c959cfff  HomeSharing arm64e  <f60cffc73cff317d872bd52201755403> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x1c95f6000 -        0x1c95fbfff  IDSKVStore arm64e  <fc1340f507be3f88934bacf89d5a8907> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
       0x1c98de000 -        0x1c98fcfff  IMSharedUI arm64e  <aac6646c76023f7b8b6d7da9b3d87021> /System/Library/PrivateFrameworks/IMSharedUI.framework/IMSharedUI
       0x1c992c000 -        0x1c9939fff  IMTranscoding arm64e  <be5942f89f90392fa18f5fd0364b5905> /System/Library/PrivateFrameworks/IMTranscoding.framework/IMTranscoding
       0x1c995c000 -        0x1c9964fff  IMTransferServices arm64e  <e663d9ff9d9638f0ad504eb60bed28c6> /System/Library/PrivateFrameworks/IMTransferServices.framework/IMTransferServices
       0x1c996f000 -        0x1c9999fff  IOGPU arm64e  <3a2b6547415035f985e9c1a76427f7e5> /System/Library/PrivateFrameworks/IOGPU.framework/IOGPU
       0x1c999b000 -        0x1c99a5fff  IOKitten arm64e  <66257340ba793391b49624a610708373> /System/Library/PrivateFrameworks/IOKitten.framework/IOKitten
       0x1c99a6000 -        0x1c99a8fff  IOSurfaceAccelerator arm64e  <5cbdf160426e37fb8a0bd6863dd2e0d4> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
       0x1c99d5000 -        0x1c99ddfff  IdleTimerServices arm64e  <c4378ce716733f41991f3bc3d3824cbe> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
       0x1c99e7000 -        0x1c99edfff  IncomingCallFilter arm64e  <b69654cfd5cf326dbec432a67b14edec> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
       0x1c99ee000 -        0x1c9a58fff  InertiaCam arm64e  <eb8f054488833157bb43ace80698200c> /System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam
       0x1c9aab000 -        0x1c9abafff  IntentsFoundation arm64e  <4c54626305623d2ba534e34beba88349> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x1c9ad8000 -        0x1c9adafff  InternationalTextSearch arm64e  <9f0254eb6bdc34108936eaea6eeed3d9> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
       0x1c9adb000 -        0x1c9afdfff  IntlPreferences arm64e  <7ef1f744f9cd3a8a8fc91ced4cd0fe16> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x1c9db8000 -        0x1c9dbffff  LinguisticData arm64e  <654043ad3f8431efbae97edef01de43e> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
       0x1c9e1b000 -        0x1c9e5efff  LocalAuthenticationPrivateUI arm64e  <0ed4f8dea5a63e79ab94a96780e5392d> /System/Library/PrivateFrameworks/LocalAuthenticationPrivateUI.framework/LocalAuthenticationPrivateUI
       0x1e0b09000 -        0x1e0b09fff  Marco arm64e  <e072f1eb37b9377b8318c1e3a16081ea> /System/Library/PrivateFrameworks/Marco.framework/Marco
       0x1e0eb5000 -        0x1e11c9fff  MediaLibraryCore arm64e  <0a751e3d5bdb32319e15abe9e380acbe> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x1e11ca000 -        0x1e121efff  MediaPlatform arm64e  <38d082e0f9ff3edaaf28f3b2361a4006> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x1e177c000 -        0x1e17e6fff  MetricsKit arm64e  <16ef9855dc5f36e6847cc9e4cb11c4ec> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
       0x1e17f9000 -        0x1e1837fff  MobileBluetooth arm64e  <a5a615189ccb3afe8e1a0a9bf66b7763> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
       0x1e1838000 -        0x1e183cfff  MobileContainerManager arm64e  <4a4e9734aec736f1beac47a73b4af9fe> /System/Library/PrivateFrameworks/MobileContainerManager.framework/MobileContainerManager
       0x1e18b7000 -        0x1e18bdfff  MobileSystemServices arm64e  <a352e9d051943a67a39709525029c50f> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
       0x1e1cb9000 -        0x1e1cbffff  Netrb arm64e  <6bb578e9b4803f8f8e5b268fcc8bcc92> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
       0x1e1d19000 -        0x1e1e64fff  NetworkServiceProxy arm64e  <111cd63b5f6b33149ca46f97e6807f6e> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
       0x1e1e84000 -        0x1e1ea7fff  NeutrinoKit arm64e  <3b4deddef48f323cb12e6459a4fde049> /System/Library/PrivateFrameworks/NeutrinoKit.framework/NeutrinoKit
       0x1e1efa000 -        0x1e1efcfff  OAuth arm64e  <0ea0025ca5383a32aeac1eee65de5d1e> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x1e1efd000 -        0x1e1f00fff  OSASubmissionClient arm64e  <4834c8c9d60632f1b37cd40ba561eb65> /System/Library/PrivateFrameworks/OSASubmissionClient.framework/OSASubmissionClient
       0x1e1f03000 -        0x1e1f24fff  OSAnalyticsPrivate arm64e  <6eb41833d5cf37b495cdd80f13b15082> /System/Library/PrivateFrameworks/OSAnalyticsPrivate.framework/OSAnalyticsPrivate
       0x1e1f25000 -        0x1e1f68fff  OTSVG arm64e  <dd782eca05c134fa9545aec5a7f9fa7f> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
       0x1e264c000 -        0x1e264efff  ParsecSubscriptionServiceSupport arm64e  <763600868be137d9b483b3983d5b0156> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
       0x1e2653000 -        0x1e2687fff  Pasteboard arm64e  <daa9242db5a736328f28fe0c68fb0000> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
       0x1e26c0000 -        0x1e26ccfff  PersonaKit arm64e  <bf9ca4d55a773eed9b489d9d8f80afe4> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x1e26cd000 -        0x1e26dbfff  PersonaUI arm64e  <e23358fb4efe36b588045f173083dbdc> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
       0x1e271b000 -        0x1e271cfff  PhoneNumbers arm64e  <152b37f6c27c3cbbb26c4518273b89cc> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
       0x1e2726000 -        0x1e2849fff  PhotoImaging arm64e  <c29c16f8ccdd3b2b85c3f283044935fa> /System/Library/PrivateFrameworks/PhotoImaging.framework/PhotoImaging
       0x1e284a000 -        0x1e28b9fff  PhotoLibrary arm64e  <d7ab078ca61039ec918701ad10dc7211> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
       0x1e290b000 -        0x1e293efff  PhotosImagingFoundation arm64e  <db4b36906ba73f1fb64b1e62b9b5d9c0> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
       0x1e293f000 -        0x1e298dfff  PhysicsKit arm64e  <cf531d6ae01a3efd9a99f74d7ec96ebb> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x1e2a58000 -        0x1e2a67fff  PointerUIServices arm64e  <9885636f09633cd2946d7350386954ec> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
       0x1e408a000 -        0x1e4099fff  PrototypeToolsUI arm64e  <223b4f98e3b93c00943ff4fb6013266a> /System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
       0x1e4123000 -        0x1e4146fff  QuickLookSupport arm64e  <91856594c6933ee982412c6202d3f1fe> /System/Library/PrivateFrameworks/QuickLookSupport.framework/QuickLookSupport
       0x1e414c000 -        0x1e4158fff  RTCReporting arm64e  <dd93a2077bbb3087bfb08d9ff7d717c5> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
       0x1e43ff000 -        0x1e440efff  RemoteServiceDiscovery arm64e  <6a7bdc237adf381e84ba2ec454ff4e10> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery
       0x1e4414000 -        0x1e4428fff  RemoteTextInput arm64e  <3130d9c29b7b39d2a7b7a6bfc8806dc0> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
       0x1e4429000 -        0x1e44bafff  RemoteUI arm64e  <e6d6ab77c3953ec79fe6bac6ce4e35cb> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
       0x1e44bb000 -        0x1e44d1fff  RemoteXPC arm64e  <2816365f323936d9b2200ab193b72491> /System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC
       0x1e44ec000 -        0x1e44f1fff  RevealCore arm64e  <c537be54f50f3757835e8859684ae61d> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
       0x1e450a000 -        0x1e48a2fff  SDAPI arm64e  <3641dc4b5c6532cb8a3a03492faf6e52> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI
       0x1e48a3000 -        0x1e48defff  SEService arm64e  <e381569fac2e3434be9ea3fd1980f336> /System/Library/PrivateFrameworks/SEService.framework/SEService
       0x1e4a75000 -        0x1e4ab0fff  ScreenReaderCore arm64e  <fa50f02a7f6634559c1e339a151b5707> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
       0x1e4ab1000 -        0x1e4b09fff  ScreenReaderOutput arm64e  <e7851b06a47f383e82fc76591db387c0> /System/Library/PrivateFrameworks/ScreenReaderOutput.framework/ScreenReaderOutput
       0x1e64ee000 -        0x1e6548fff  SharingUI arm64e  <2f6a0046941933709f48c3f6043c3249> /System/Library/PrivateFrameworks/SharingUI.framework/SharingUI
       0x1e6593000 -        0x1e659efff  SignpostCollection arm64e  <f8011c61bf993056aef59ac05974bee0> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
       0x1e659f000 -        0x1e659ffff  SignpostMetrics arm64e  <9076471a131331acb6124a92400306bb> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
       0x1e65a1000 -        0x1e65e8fff  SignpostSupport arm64e  <6d5e997baf9d32edaac21f55d7104d92> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
       0x1e7649000 -        0x1e7649fff  SoftLinking arm64e  <78a78470e3cf3942a73ed8b034a37cff> /System/Library/PrivateFrameworks/SoftLinking.framework/SoftLinking
       0x1e7a6a000 -        0x1e7a78fff  StorageSettings arm64e  <183000d4677732aea0ba73730af0c8bd> /System/Library/PrivateFrameworks/StorageSettings.framework/StorageSettings
       0x1e7abb000 -        0x1e7afbfff  StreamingZip arm64e  <255f4c82d6d639d1856da1fd216f4d67> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
       0x1e7b04000 -        0x1e7b0ffff  SymptomDiagnosticReporter arm64e  <bd45de8873ec3fc29c5bcd5221f44aad> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
       0x1e7b56000 -        0x1e7b81fff  SymptomPresentationFeed arm64e  <26d9affce1ba3f519e28524ab6a87926> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
       0x1e7bde000 -        0x1e7beffff  TCC arm64e  <d4aa04ff1c203b5493282a590ae2179b> /System/Library/PrivateFrameworks/TCC.framework/TCC
       0x1e85e9000 -        0x1e868cfff  TextureIO arm64e  <983244e552a23ee6a3c78052acfd6775> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x1e86bc000 -        0x1e8707fff  TipKit arm64e  <21680d7401c432bc907a0cc9591ec521> /System/Library/PrivateFrameworks/TipKit.framework/TipKit
       0x1e8708000 -        0x1e871cfff  TipsUI arm64e  <69e077c6be85308b913a53b1fd845e2b> /System/Library/PrivateFrameworks/TipsUI.framework/TipsUI
       0x1e8949000 -        0x1e8951fff  URLFormatting arm64e  <45b8d875a2103b28a52b3380d932d552> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
       0x1e8f3f000 -        0x1e8f70fff  UsageTracking arm64e  <8f43b07a649038df9bdb24de2cb1c5c7> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
       0x1e9db4000 -        0x1e9e03fff  VoiceOverServices arm64e  <182d99fd241832b5a5119a4ff8896151> /System/Library/PrivateFrameworks/VoiceOverServices.framework/VoiceOverServices
       0x1e9fd8000 -        0x1e9fd9fff  WatchdogClient arm64e  <fb79d62d5a2e342bbd7a6cdb3589904d> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
       0x1ea06f000 -        0x1ea446fff  libANGLE-shared.dylib arm64e  <3f250d05266233dea5e5f2b346a1fc58> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libANGLE-shared.dylib
       0x1ea447000 -        0x1eac1bfff  libwebrtc.dylib arm64e  <2450819202ea30b28ed808bd2b1eb9e7> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
       0x1eacad000 -        0x1eaccafff  WebUI arm64e  <756995f94f923294a46c92f37d5fd862> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
       0x1eaeb3000 -        0x1eaec5fff  WirelessCoexManager arm64e  <d7b1bbcf8834335e97f9ba92a1a8b045> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager
       0x1eb6fe000 -        0x1eb702fff  XCTTargetBootstrap arm64e  <98085a057dc43285bf329d21c3cc886d> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
       0x1eb7ce000 -        0x1eb7f4fff  caulk arm64e  <692a48dcdd803b0da69b4d140253cb1a> /System/Library/PrivateFrameworks/caulk.framework/caulk
       0x1ee14a000 -        0x1ee14ffff  kperf arm64e  <f8a8334919e233cf820ffc8e831eafa7> /System/Library/PrivateFrameworks/kperf.framework/kperf
       0x1ee150000 -        0x1ee158fff  kperfdata arm64e  <a47a1ee9b8293cea951ded7e9eb07139> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
       0x1ee159000 -        0x1ee170fff  libEDR arm64e  <7523f982157f3fb1b443949e82a9ccfa> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
       0x1ee189000 -        0x1ee19bfff  perfdata arm64e  <d42d252c4fa43cb19ee7c4ed2e5da577> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
       0x1ee19c000 -        0x1ee1d4fff  vCard arm64e  <383762da8ccb3d01a7b8a49ffef5d147> /System/Library/PrivateFrameworks/vCard.framework/vCard
       0x1ee984000 -        0x1ee9c3fff  libAWDSupport.dylib arm64e  <ed5261f5355e35b18aefdb2754256f03> /usr/lib/libAWDSupport.dylib
       0x1ee9c4000 -        0x1eedfafff  libAWDSupportFramework.dylib arm64e  <cc9fdcccbce6348c9fcf756b6f5916a5> /usr/lib/libAWDSupportFramework.dylib
       0x1eee76000 -        0x1eef27fff  libAppleEXR.dylib arm64e  <082448c4f65239c4b65a9cf84e821056> /usr/lib/libAppleEXR.dylib
       0x1eef7e000 -        0x1eef8efff  libAudioStatistics.dylib arm64e  <6b64419d06193cccbe9fbd6a7ab47e65> /usr/lib/libAudioStatistics.dylib
       0x1ef177000 -        0x1ef1aafff  libCRFSuite.dylib arm64e  <c92b2e9c519c306c9997f3dcb61a4c08> /usr/lib/libCRFSuite.dylib
       0x1ef1ab000 -        0x1ef1acfff  libCTGreenTeaLogger.dylib arm64e  <0ca3a7e3047c3e57ba83005b5d511fbf> /usr/lib/libCTGreenTeaLogger.dylib
       0x1ef1ad000 -        0x1ef1b4fff  libChineseTokenizer.dylib arm64e  <5b4c1817aada3adc856f98e18e133bd5> /usr/lib/libChineseTokenizer.dylib
       0x1ef238000 -        0x1ef3eafff  libFosl_dynamic.dylib arm64e  <3114d8468c7b34f481ecf4619b8462fd> /usr/lib/libFosl_dynamic.dylib
       0x1ef425000 -        0x1ef42dfff  libIOReport.dylib arm64e  <93826baa7d6738658309f42971669538> /usr/lib/libIOReport.dylib
       0x1ef4b1000 -        0x1ef4b8fff  libMatch.1.dylib arm64e  <d5859751ddad388daed42606279f1202> /usr/lib/libMatch.1.dylib
       0x1ef513000 -        0x1ef56bfff  libParallelCompression.dylib arm64e  <b0702ab9dcda3044857be7483d2dde1f> /usr/lib/libParallelCompression.dylib
       0x1ef595000 -        0x1ef596fff  libThaiTokenizer.dylib arm64e  <f9748fb80038303c82adc008e645ce39> /usr/lib/libThaiTokenizer.dylib
       0x1ef7f7000 -        0x1ef7f9fff  libapp_launch_measurement.dylib arm64e  <989883c9031c37fe9d6f4012943d94d2> /usr/lib/libapp_launch_measurement.dylib
       0x1ef7fa000 -        0x1ef811fff  libapple_nghttp2.dylib arm64e  <dfd048cd40cc3b49aca99ebf3ab2fc8e> /usr/lib/libapple_nghttp2.dylib
       0x1ef812000 -        0x1ef8a2fff  libate.dylib arm64e  <ae3148306a55324da628a545be66526f> /usr/lib/libate.dylib
       0x1ef932000 -        0x1ef942fff  libbsm.0.dylib arm64e  <1b91c8b44deb30aebd16b58868ea2382> /usr/lib/libbsm.0.dylib
       0x1ef943000 -        0x1ef94ffff  libbz2.1.0.dylib arm64e  <448ae302aea13972ba23303e73798013> /usr/lib/libbz2.1.0.dylib
       0x1ef950000 -        0x1ef950fff  libcharset.1.dylib arm64e  <33d2b42491273ae6aeb909c4cae5431f> /usr/lib/libcharset.1.dylib
       0x1ef951000 -        0x1ef962fff  libcmph.dylib arm64e  <a18f0af63b723eb8b23f01e6d694b12a> /usr/lib/libcmph.dylib
       0x1ef963000 -        0x1efa2efff  libcompression.dylib arm64e  <f34527daff803bb893f957320f1dbb98> /usr/lib/libcompression.dylib
       0x1efa2f000 -        0x1efa46fff  libcoretls.dylib arm64e  <fb1b3718619d35e3b4e90549b573bc87> /usr/lib/libcoretls.dylib
       0x1efa47000 -        0x1efa48fff  libcoretls_cfhelpers.dylib arm64e  <3e3467c156163071a5ad42da4d992589> /usr/lib/libcoretls_cfhelpers.dylib
       0x1efa8c000 -        0x1efa93fff  libcupolicy.dylib arm64e  <ea7feb43e9a4318b95c6253564c75299> /usr/lib/libcupolicy.dylib
       0x1efa94000 -        0x1efa9cfff  libdns_services.dylib arm64e  <3e67fcfec5033bb1848c784bd2b0309e> /usr/lib/libdns_services.dylib
       0x1efa9d000 -        0x1efabafff  libedit.3.dylib arm64e  <bfe9b06f6015391595feb3a0c8890c80> /usr/lib/libedit.3.dylib
       0x1efabb000 -        0x1efabcfff  libenergytrace.dylib arm64e  <9cd47d7dba593e57835cd41cc58ab646> /usr/lib/libenergytrace.dylib
       0x1efabd000 -        0x1efad7fff  libexpat.1.dylib arm64e  <b399057215893ac4ba1b033562e334eb> /usr/lib/libexpat.1.dylib
       0x1efb03000 -        0x1efb05fff  libgermantok.dylib arm64e  <7fabe01e5b6c3841b4a08c560681a668> /usr/lib/libgermantok.dylib
       0x1efb06000 -        0x1efb0bfff  libheimdal-asn1.dylib arm64e  <a79ebdff751c391c83ab7b29a27df0cf> /usr/lib/libheimdal-asn1.dylib
       0x1efb0c000 -        0x1efbfdfff  libiconv.2.dylib arm64e  <89baeb0e30d5318da9f724e99a9e6352> /usr/lib/libiconv.2.dylib
       0x1efc2f000 -        0x1efc30fff  liblangid.dylib arm64e  <39b1d98aaecd373abba4dd8bf3373894> /usr/lib/liblangid.dylib
       0x1efc31000 -        0x1efc3afff  liblockdown.dylib arm64e  <e892bf4862e7311e956530b2f8fb13cc> /usr/lib/liblockdown.dylib
       0x1efc3b000 -        0x1efc53fff  liblzma.5.dylib arm64e  <b1d1c354f19536768ce87df85b2a0059> /usr/lib/liblzma.5.dylib
       0x1efc83000 -        0x1efcdefff  libmecab.dylib arm64e  <18b3e80827ca35cd91745a0c20fc8258> /usr/lib/libmecab.dylib
       0x1efcdf000 -        0x1eff3dfff  libmecabra.dylib arm64e  <8a78cd10f12139989eb4511199c82d45> /usr/lib/libmecabra.dylib
       0x1eff3e000 -        0x1eff5cfff  libmis.dylib arm64e  <f39e5c9819a43069b2ce2ebaa0027f5e> /usr/lib/libmis.dylib
       0x1eff5d000 -        0x1eff83fff  libnetworkextension.dylib arm64e  <b6d5a41936763759a255f69f7689bd4f> /usr/lib/libnetworkextension.dylib
       0x1f031c000 -        0x1f032cfff  libpartition2_dynamic.dylib arm64e  <134e27fa24563a5fab13b784df4ad768> /usr/lib/libpartition2_dynamic.dylib
       0x1f032d000 -        0x1f0369fff  libpcap.A.dylib arm64e  <08da50c62a483ab783c344ae2a933ea8> /usr/lib/libpcap.A.dylib
       0x1f036a000 -        0x1f0377fff  libperfcheck.dylib arm64e  <b056945a48363c4d871a723f86677af7> /usr/lib/libperfcheck.dylib
       0x1f037f000 -        0x1f0393fff  libprequelite.dylib arm64e  <62ad0348b65f3ad0bbd531885070f098> /usr/lib/libprequelite.dylib
       0x1f0394000 -        0x1f03a7fff  libprotobuf-lite.dylib arm64e  <a1b0132999eb35d2a281fee33f185cf7> /usr/lib/libprotobuf-lite.dylib
       0x1f03a8000 -        0x1f040cfff  libprotobuf.dylib arm64e  <447c8214af203a48949816d976dba937> /usr/lib/libprotobuf.dylib
       0x1f040d000 -        0x1f04cafff  libquic.dylib arm64e  <852ce208b7dc3b72884bbc1f0a02c33d> /usr/lib/libquic.dylib
       0x1f04cb000 -        0x1f04e3fff  libresolv.9.dylib arm64e  <480587f919a333a18f761d5eb29c2e47> /usr/lib/libresolv.9.dylib
       0x1f04e4000 -        0x1f04e6fff  libsandbox.1.dylib arm64e  <876204bafbaa309a9d08c3bc7c5dfa95> /usr/lib/libsandbox.1.dylib
       0x1f04ea000 -        0x1f04eefff  libspindump.dylib arm64e  <b9fa3166f3fa33b0b537e533b56c74eb> /usr/lib/libspindump.dylib
       0x1f04f8000 -        0x1f0529fff  libtidy.A.dylib arm64e  <6266b9391bd8374e88aa665abdaf40d8> /usr/lib/libtidy.A.dylib
       0x1f0531000 -        0x1f0534fff  libutil.dylib arm64e  <28ce963d02ce37d780612fbbc02e7a1c> /usr/lib/libutil.dylib
       0x1f0535000 -        0x1f0622fff  libxml2.2.dylib arm64e  <9304c91d39003a9b9c1e602f121b2fb7> /usr/lib/libxml2.2.dylib
       0x1f0651000 -        0x1f0662fff  libz.1.dylib arm64e  <0d1d218ae7283744987e476aea8139a4> /usr/lib/libz.1.dylib
       0x1f06a9000 -        0x1f06c4fff  libswiftAVFoundation.dylib arm64e  <95be45e156e4397893613ff4c9abe241> /usr/lib/swift/libswiftAVFoundation.dylib
       0x1f06c5000 -        0x1f0757fff  libswiftAccelerate.dylib arm64e  <258a3b1206483706b4a5143dc1a4c85b> /usr/lib/swift/libswiftAccelerate.dylib
       0x1f0781000 -        0x1f0787fff  libswiftCompression.dylib arm64e  <47ef9e30c46a3b04b126948b5f9266f8> /usr/lib/swift/libswiftCompression.dylib
       0x1f0788000 -        0x1f078afff  libswiftContacts.dylib arm64e  <7a0ccf4d800e3b179413d479a39d2388> /usr/lib/swift/libswiftContacts.dylib
       0x1f078b000 -        0x1f0793fff  libswiftCoreAudio.dylib arm64e  <8fa95ebd0de53bd6b068306564c05a0d> /usr/lib/swift/libswiftCoreAudio.dylib
       0x1f0794000 -        0x1f07a0fff  libswiftCoreData.dylib arm64e  <17b39b11f8633d39b3286673f488acac> /usr/lib/swift/libswiftCoreData.dylib
       0x1f07a1000 -        0x1f07a1fff  libswiftCoreFoundation.dylib arm64e  <4de30b109cec39b09f38ae1ce44531b9> /usr/lib/swift/libswiftCoreFoundation.dylib
       0x1f07a2000 -        0x1f07a2fff  libswiftCoreImage.dylib arm64e  <d9e9ade62b443bc189a7105b5504f8f0> /usr/lib/swift/libswiftCoreImage.dylib
       0x1f07a3000 -        0x1f07a5fff  libswiftCoreLocation.dylib arm64e  <a7255cacf19d3362ae7d0991577c4a3f> /usr/lib/swift/libswiftCoreLocation.dylib
       0x1f07a6000 -        0x1f07b0fff  libswiftCoreMIDI.dylib arm64e  <ea2614ecc9b33adda90b0ba8c3ec21e1> /usr/lib/swift/libswiftCoreMIDI.dylib
       0x1f07b1000 -        0x1f07d7fff  libswiftCoreML.dylib arm64e  <7184823324e63f4a82282a9ee7aea8a5> /usr/lib/swift/libswiftCoreML.dylib
       0x1f07d8000 -        0x1f0811fff  libswiftCoreMedia.dylib arm64e  <2f7477b5a7bc3666b460a657bf98746c> /usr/lib/swift/libswiftCoreMedia.dylib
       0x1f081d000 -        0x1f081efff  libswiftCryptoTokenKit.dylib arm64e  <37abdb0ecfdf3478911b3040834f0a2d> /usr/lib/swift/libswiftCryptoTokenKit.dylib
       0x1f081f000 -        0x1f0828fff  libswiftDarwin.dylib arm64e  <0736cc2874b43a5da652df003fec2565> /usr/lib/swift/libswiftDarwin.dylib
       0x1f0857000 -        0x1f0862fff  libswiftIntents.dylib arm64e  <7391d0ccb6ad342b843fd6bbaa9ab067> /usr/lib/swift/libswiftIntents.dylib
       0x1f0871000 -        0x1f0875fff  libswiftMetal.dylib arm64e  <0f33619bb3af3696b3fa2eba82d6dc4d> /usr/lib/swift/libswiftMetal.dylib
       0x1f0886000 -        0x1f08fdfff  libswiftNetwork.dylib arm64e  <965df4aa3c7e3ef3aca708d056dc3a36> /usr/lib/swift/libswiftNetwork.dylib
       0x1f0909000 -        0x1f090afff  libswiftQuartzCore.dylib arm64e  <5ae6d2f603ba301ab4788c4218043362> /usr/lib/swift/libswiftQuartzCore.dylib
       0x1f093b000 -        0x1f0955fff  libswiftSystem.dylib arm64e  <f21a9e6b88af3c21846d7b1b092d1280> /usr/lib/swift/libswiftSystem.dylib
       0x1f0957000 -        0x1f0959fff  libswiftVision.dylib arm64e  <98a6f6f4c874388995687cb50d026d94> /usr/lib/swift/libswiftVision.dylib
       0x1f095c000 -        0x1f095ffff  libswiftWebKit.dylib arm64e  <f16fb1ac9750356cb5e9a8d0dd816cdb> /usr/lib/swift/libswiftWebKit.dylib
       0x1f0960000 -        0x1f0979fff  libswiftos.dylib arm64e  <88c45db0d53534d7aa0eaf2412512475> /usr/lib/swift/libswiftos.dylib
       0x1f097a000 -        0x1f0991fff  libswiftsimd.dylib arm64e  <b9da865e77853402a01856e886f2d322> /usr/lib/swift/libswiftsimd.dylib
       0x1f0992000 -        0x1f0997fff  libcache.dylib arm64e  <a48023d942b2316f9fc2b561df9301b9> /usr/lib/system/libcache.dylib
       0x1f0998000 -        0x1f09a4fff  libcommonCrypto.dylib arm64e  <5e2bcf81aaad3d5fb151e1e48509368b> /usr/lib/system/libcommonCrypto.dylib
       0x1f09a5000 -        0x1f09a8fff  libcompiler_rt.dylib arm64e  <42384f1b37b132a69a634bf95309be32> /usr/lib/system/libcompiler_rt.dylib
       0x1f09a9000 -        0x1f09b1fff  libcopyfile.dylib arm64e  <e2fee32faa633422a8d16c7fd48863ba> /usr/lib/system/libcopyfile.dylib
       0x1f0aa4000 -        0x1f0aa8fff  libmacho.dylib arm64e  <f6404ef1c37e3ace94b99eda949cd783> /usr/lib/system/libmacho.dylib
       0x1f0aa9000 -        0x1f0aabfff  libremovefile.dylib arm64e  <740522225ddd3dfc850cfd8a68d61d6a> /usr/lib/system/libremovefile.dylib
       0x1f0aac000 -        0x1f0aadfff  libsystem_blocks.dylib arm64e  <8684215d9d4131dd9f25fdbc827ba1af> /usr/lib/system/libsystem_blocks.dylib
       0x1f0aae000 -        0x1f0ab2fff  libsystem_collections.dylib arm64e  <f7ec9583b807380b9800a9971a67798f> /usr/lib/system/libsystem_collections.dylib
       0x1f0ab3000 -        0x1f0ab7fff  libsystem_configuration.dylib arm64e  <27da7e01e0fc3af3961015afe4c6255d> /usr/lib/system/libsystem_configuration.dylib
       0x1f0ab8000 -        0x1f0ad7fff  libsystem_containermanager.dylib arm64e  <2a69288ed22237a78595d87e5a8c3b69> /usr/lib/system/libsystem_containermanager.dylib
       0x1f0ad8000 -        0x1f0ad9fff  libsystem_coreservices.dylib arm64e  <0c0c74f75f323bc7bb91e277c9a19209> /usr/lib/system/libsystem_coreservices.dylib
       0x1f0ada000 -        0x1f0ae4fff  libsystem_darwin.dylib arm64e  <f610f879e50a3ba088bbe3e8fcbf9a2b> /usr/lib/system/libsystem_darwin.dylib
       0x1f0ae5000 -        0x1f0aedfff  libsystem_dnssd.dylib arm64e  <6a9635f63aa73c588987d95e1c1ea8e0> /usr/lib/system/libsystem_dnssd.dylib
       0x1f0aee000 -        0x1f0af0fff  libsystem_featureflags.dylib arm64e  <5ca515753482335f89f18bf5cb326bed> /usr/lib/system/libsystem_featureflags.dylib
       0x1f0af1000 -        0x1f0b27fff  libsystem_m.dylib arm64e  <dd05e6b6b1dd3fc6a5b0cb415e1ac4ec> /usr/lib/system/libsystem_m.dylib
       0x1f0b28000 -        0x1f0b2efff  libsystem_platform.dylib arm64e  <e44b288b8df03923a311837535b6a7e9> /usr/lib/system/libsystem_platform.dylib
       0x1f0b2f000 -        0x1f0b2ffff  libsystem_product_info_filter.dylib arm64e  <63cf6a7e54033c9e82dadc44850338e8> /usr/lib/system/libsystem_product_info_filter.dylib
       0x1f0b30000 -        0x1f0b3bfff  libsystem_pthread.dylib arm64e  <adc41700002e3a2bb4a1eb5fbf575770> /usr/lib/system/libsystem_pthread.dylib
       0x1f0b3c000 -        0x1f0b3ffff  libsystem_sandbox.dylib arm64e  <a648fc31f7b03993ae7befaba87ed048> /usr/lib/system/libsystem_sandbox.dylib
       0x1f0b40000 -        0x1f0b4afff  libunwind.dylib arm64e  <4b9098f0bfe831068b175c79694a1ea0> /usr/lib/system/libunwind.dylib
       0x1f0b4b000 -        0x1f0b87fff  libxpc.dylib arm64e  <b183213379dc3e42b704ef71f75a577e> /usr/lib/system/libxpc.dylib
       0x1f0c15000 -        0x1f0c35fff  AccessibilitySettingsLoader arm64e  <e3a7197f6620341e8f16e426049a2ec5> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
       0x1f0d1e000 -        0x1f0d32fff  QuickSpeak arm64e  <e1ef4a8a77c13a8ca71a8d973725591b> /System/Library/AccessibilityBundles/QuickSpeak.bundle/QuickSpeak
       0x1f12a9000 -        0x1f17d9fff  AGXMetal13_3 arm64e  <7c39f4c1290d37a8b542955b6432a67f> /System/Library/Extensions/AGXMetal13_3.bundle/AGXMetal13_3
       0x1f1d0b000 -        0x1f1e34fff  AVFAudio arm64e  <6b91be4f1a90337789070cd9120548e4> /System/Library/Frameworks/AVFAudio.framework/AVFAudio
       0x1f374b000 -        0x1f374dfff  DataDetection arm64e  <01cd4e1f0eda3fd488e7e5842908a9cc> /System/Library/Frameworks/DataDetection.framework/DataDetection
       0x1f37a0000 -        0x1f3873fff  GroupActivities arm64e  <20ec31df5530326aa88f8161a1d3b43c> /System/Library/Frameworks/GroupActivities.framework/GroupActivities
       0x1f38d0000 -        0x1f38e3fff  MPSFunctions arm64e  <5e5c61c2b96737078d8dae3a0a32ec6e> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSFunctions.framework/MPSFunctions
       0x1f4941000 -        0x1f494bfff  AAAFoundation arm64e  <19610fecb89138409376819e20170495> /System/Library/PrivateFrameworks/AAAFoundation.framework/AAAFoundation
       0x1f494c000 -        0x1f4973fff  AAAFoundationSwift arm64e  <8597c6b8815b39269d49dc7dd75ffdb9> /System/Library/PrivateFrameworks/AAAFoundationSwift.framework/AAAFoundationSwift
       0x1f568c000 -        0x1f5707fff  AuthenticationServicesCore arm64e  <69e5aeda762d307e8516683197bd4eab> /System/Library/PrivateFrameworks/AuthenticationServicesCore.framework/AuthenticationServicesCore
       0x1f576a000 -        0x1f577ffff  BiomeDSL arm64e  <f5ed63a0bce732f98a1c3dd442d3b230> /System/Library/PrivateFrameworks/BiomeDSL.framework/BiomeDSL
       0x1f5780000 -        0x1f579afff  BiomeFlexibleStorage arm64e  <e9acac02e83e3696bac7bfb25b097de7> /System/Library/PrivateFrameworks/BiomeFlexibleStorage.framework/BiomeFlexibleStorage
       0x1f579d000 -        0x1f5829fff  BookLibraryCore arm64e  <67bfcc49c7283e78b603fa5a279a7a29> /System/Library/PrivateFrameworks/BookLibraryCore.framework/BookLibraryCore
       0x1f587e000 -        0x1f58b0fff  CBORLibrary arm64e  <dfd19a41045d3ac29234c73142eeff32> /System/Library/PrivateFrameworks/CBORLibrary.framework/CBORLibrary
       0x1f5a1d000 -        0x1f5a50fff  CMImaging arm64e  <bd57f9d959443c17889032d56cebae83> /System/Library/PrivateFrameworks/CMImaging.framework/CMImaging
       0x1f5a51000 -        0x1f5b08fff  CMPhoto arm64e  <9c7faf20e3da3e3cbc6bb8d60cd58c5d> /System/Library/PrivateFrameworks/CMPhoto.framework/CMPhoto
       0x1f5cbe000 -        0x1f5ce0fff  Chirp arm64e  <0ca40237d1043c44877bba6ed0bfb72d> /System/Library/PrivateFrameworks/Chirp.framework/Chirp
       0x1f5ce1000 -        0x1f5cfefff  CinematicFraming arm64e  <1327031de1fc3f52b7347c830f97828c> /System/Library/PrivateFrameworks/CinematicFraming.framework/CinematicFraming
       0x1f5cff000 -        0x1f5e31fff  CloudKitDistributedSync arm64e  <5d840637b77f3e29a13593de67adaf59> /System/Library/PrivateFrameworks/CloudKitDistributedSync.framework/CloudKitDistributedSync
       0x1f5e32000 -        0x1f5e82fff  CloudSubscriptionFeatures arm64e  <1ac17b9c30b038cb80d5d005157cd6c5> /System/Library/PrivateFrameworks/CloudSubscriptionFeatures.framework/CloudSubscriptionFeatures
       0x1f5f52000 -        0x1f5f55fff  ContactsMetrics arm64e  <1760ce459bdd3a54a7523ebfdf751550> /System/Library/PrivateFrameworks/ContactsMetrics.framework/ContactsMetrics
       0x1f5f56000 -        0x1f5f5afff  ContextKitCore arm64e  <51e963242c013c90afd53c259c46ee51> /System/Library/PrivateFrameworks/ContextKitCore.framework/ContextKitCore
       0x1f6064000 -        0x1f6214fff  CopresenceCore arm64e  <3b372e2794ca34a3aaa71ee4fffca435> /System/Library/PrivateFrameworks/CopresenceCore.framework/CopresenceCore
       0x1f65cd000 -        0x1f65e2fff  CoreGlyphs arm64e  <59b17669145b3beba537df3bff2cdc24> /System/Library/PrivateFrameworks/CoreGlyphs.framework/CoreGlyphs
       0x1f65e3000 -        0x1f6602fff  CoreIDCred arm64e  <e44d17e55c243593bb6823bd7cbb65b0> /System/Library/PrivateFrameworks/CoreIDCred.framework/CoreIDCred
       0x1f67bd000 -        0x1f67e8fff  CoreODI arm64e  <275e4d26a74f37ddb781558b2782d9e4> /System/Library/PrivateFrameworks/CoreODI.framework/CoreODI
       0x1f67e9000 -        0x1f693afff  CoreODIEssentials arm64e  <73afe4c99f623a6cbc8ba94225beb891> /System/Library/PrivateFrameworks/CoreODIEssentials.framework/CoreODIEssentials
       0x1f693b000 -        0x1f696bfff  CorePommes arm64e  <c331c2d01dd032dc90c923578246be95> /System/Library/PrivateFrameworks/CorePommes.framework/CorePommes
       0x1f6ff5000 -        0x1f7012fff  CoreUtilsExtras arm64e  <100826cb69d032bfa3ffd4b6dcf50ea1> /System/Library/PrivateFrameworks/CoreUtilsExtras.framework/CoreUtilsExtras
       0x1f7072000 -        0x1f70a8fff  DMCUtilities arm64e  <ce39d9abd1853c85a446b04cfae2280a> /System/Library/PrivateFrameworks/DMCUtilities.framework/DMCUtilities
       0x1f77d9000 -        0x1f7821fff  FusionTracker arm64e  <6772a717036732fe9cc6f416d7b2adbb> /System/Library/PrivateFrameworks/FusionTracker.framework/FusionTracker
       0x1f7822000 -        0x1f7826fff  libGPUCompilerUtils.dylib arm64e  <7c0f9ada4a653611a2bc5b0463e3ad5f> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libGPUCompilerUtils.dylib
       0x1f7827000 -        0x1f782bfff  GeoServicesCore arm64e  <78cd513793d93e6caf68be261c9c0068> /System/Library/PrivateFrameworks/GeoServicesCore.framework/GeoServicesCore
       0x1f881d000 -        0x1f8832fff  IconFoundation arm64e  <67a08a171b8f3681af178c32e63df9df> /System/Library/PrivateFrameworks/IconFoundation.framework/IconFoundation
       0x1f8a94000 -        0x1f8a95fff  LowPowerMode arm64e  <d0c679426d953a1f8815e78f743ea62a> /System/Library/PrivateFrameworks/LowPowerMode.framework/LowPowerMode
       0x1f8a96000 -        0x1f8ab5fff  MDMClientLibrary arm64e  <cdcc2fbaaf8f3c4a9106e46993d3d0c7> /System/Library/PrivateFrameworks/MDMClientLibrary.framework/MDMClientLibrary
       0x1f8ab6000 -        0x1f8c44fff  MIL arm64e  <7fe8aa4e40463210909e89a16e60427d> /System/Library/PrivateFrameworks/MIL.framework/MIL
       0x1f8c45000 -        0x1f8d82fff  MLAssetIO arm64e  <766901cce9aa37dca0132e2ccad146a7> /System/Library/PrivateFrameworks/MLAssetIO.framework/MLAssetIO
       0x1f8ed7000 -        0x1f8ef8fff  MailKit arm64e  <51129608987936b3a204c8d90e4abaff> /System/Library/PrivateFrameworks/MailKit.framework/MailKit
       0x1f9071000 -        0x1f9378fff  MediaAnalysis arm64e  <c5442e8d6a763150a374275755e7ef83> /System/Library/PrivateFrameworks/MediaAnalysis.framework/MediaAnalysis
       0x1f9379000 -        0x1f938ffff  MediaAnalysisServices arm64e  <37b7a024bef33d95b75fd178347bfe44> /System/Library/PrivateFrameworks/MediaAnalysisServices.framework/MediaAnalysisServices
       0x1f940a000 -        0x1f941cfff  MessagesSupport arm64e  <317ee66fef623e238734f0e819adbef2> /System/Library/PrivateFrameworks/MessagesSupport.framework/MessagesSupport
       0x1f9481000 -        0x1f958afff  MobileSafari arm64e  <705f2bde976636ed921b3bfe6d9b83d3> /System/Library/PrivateFrameworks/MobileSafari.framework/MobileSafari
       0x1f9b1e000 -        0x1f9b74fff  NotesSupport arm64e  <c7af7b685db3305eb6e1bcd89db59bd1> /System/Library/PrivateFrameworks/NotesSupport.framework/NotesSupport
       0x1f9f00000 -        0x1fa493fff  PegasusAPI arm64e  <b39ba983772336a4a8085ab4aed69283> /System/Library/PrivateFrameworks/PegasusAPI.framework/PegasusAPI
       0x1fa494000 -        0x1fa4cbfff  PegasusConfiguration arm64e  <c9c10487613439ada4f324aeb0f00643> /System/Library/PrivateFrameworks/PegasusConfiguration.framework/PegasusConfiguration
       0x1fa4cc000 -        0x1fa4fbfff  PegasusKit arm64e  <d624251f0cfc3f3d9d7f95b8f368ad57> /System/Library/PrivateFrameworks/PegasusKit.framework/PegasusKit
       0x1fa63e000 -        0x1fa72cfff  PhotoLibraryServicesCore arm64e  <1b4890d92dfe397db43b6419a9cad828> /System/Library/PrivateFrameworks/PhotoLibraryServicesCore.framework/PhotoLibraryServicesCore
       0x1fa72d000 -        0x1fa7c8fff  Portrait arm64e  <e04b6a5f73a935b3b741cd929bda9437> /System/Library/PrivateFrameworks/Portrait.framework/Portrait
       0x1faade000 -        0x1faafdfff  PrivacyAccounting arm64e  <22afc04a269534e291e49bdc34a464de> /System/Library/PrivateFrameworks/PrivacyAccounting.framework/PrivacyAccounting
       0x1fafb9000 -        0x1fafcefff  STSXPCHelperClient arm64e  <31e9b4c09527326f9567f756c6e87447> /System/Library/PrivateFrameworks/STSXPCHelperClient.framework/STSXPCHelperClient
       0x1fb00e000 -        0x1fb022fff  Seeding arm64e  <d35fe6f373e8367d8c5e28d953eb4f30> /System/Library/PrivateFrameworks/Seeding.framework/Seeding
       0x1fb0ad000 -        0x1fb0c5fff  SiriAnalytics arm64e  <5d3347cbc4a532ba9fb5c8c9993cd2cf> /System/Library/PrivateFrameworks/SiriAnalytics.framework/SiriAnalytics
       0x1fc825000 -        0x1fc89afff  SocialLayer arm64e  <9a5bb42006dc38ecb22d00b91a60f139> /System/Library/PrivateFrameworks/SocialLayer.framework/SocialLayer
       0x1fd44f000 -        0x1fd479fff  StorageData arm64e  <c9f984cbeb7e33289b675a97c76963f3> /System/Library/PrivateFrameworks/StorageData.framework/StorageData
       0x1fd802000 -        0x1fd836fff  Synapse arm64e  <bd4c19ba877d354188d801a7f113d9b0> /System/Library/PrivateFrameworks/Synapse.framework/Synapse
       0x1fd847000 -        0x1fd89cfff  TTSAsset arm64e  <7215d5feac383fadbcab3acb5e46532b> /System/Library/PrivateFrameworks/TTSAsset.framework/TTSAsset
       0x1fd90b000 -        0x1fd911fff  TranslationUIServices arm64e  <512774e7cc71386198854c86a77fe515> /System/Library/PrivateFrameworks/TranslationUIServices.framework/TranslationUIServices
       0x1fe86d000 -        0x1fe936fff  VisionKitCore arm64e  <0b632f67080f347ba40de115e62b14a3> /System/Library/PrivateFrameworks/VisionKitCore.framework/VisionKitCore
       0x1fe937000 -        0x1feaa5fff  VisualIntelligence arm64e  <84af038927af3bcaa85cfbc4df772f03> /System/Library/PrivateFrameworks/VisualIntelligence.framework/VisualIntelligence
       0x1feaa6000 -        0x1fef74fff  VisualLogger arm64e  <3addc23a961c3e3cbae17de176514f2e> /System/Library/PrivateFrameworks/VisualLogger.framework/VisualLogger
       0x1ffa8a000 -        0x1ffa91fff  libCoreEntitlements.dylib arm64e  <c1a3285ddfe2348490527e827c1b95d6> /usr/lib/libCoreEntitlements.dylib
       0x1ffe3d000 -        0x1ffe3dfff  libswiftDataDetection.dylib arm64e  <620281307d90324f97c59c7744e8da86> /usr/lib/swift/libswiftDataDetection.dylib
       0x1ffe3e000 -        0x1ffe84fff  libswiftDemangle.dylib arm64e  <2e4e32d10946378783bdb9c6f28c70c7> /usr/lib/swift/libswiftDemangle.dylib
       0x1ffe8e000 -        0x1ffe8efff  libswiftFileProvider.dylib arm64e  <ce00f38845da3889857e5d883ee55eb1> /usr/lib/swift/libswiftFileProvider.dylib
       0x1ffec9000 -        0x1ffecafff  libswiftOSLog.dylib arm64e  <b646580f131333b8a072557113799676> /usr/lib/swift/libswiftOSLog.dylib
       0x1ffecc000 -        0x1ffed7fff  libswiftPrivate_BiomePubSub.dylib arm64e  <ee0f6b8bfc82396ea8457135c714d883> /usr/lib/swift/libswiftPrivate_BiomePubSub.dylib
       0x1ffed8000 -        0x1ffedafff  libswiftPrivate_BiomeStreams.dylib arm64e  <2f8bb10545003c61822a1234e168d92e> /usr/lib/swift/libswiftPrivate_BiomeStreams.dylib
       0x1ffedb000 -        0x1ffeddfff  libswiftQuickLook.dylib arm64e  <ee01b5a4b75838e181d1ee373e368c0b> /usr/lib/swift/libswiftQuickLook.dylib
       0x1ffee3000 -        0x1fff33fff  libswift_Concurrency.dylib arm64e  <35c5da9cf2703e90adb29c965b99d147> /usr/lib/swift/libswift_Concurrency.dylib

Any idea how the database gets corrupted like this?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants