Skip to content

Instantly share code, notes, and snippets.

@nevyn
Last active January 4, 2016 16:59
Show Gist options
  • Save nevyn/8651201 to your computer and use it in GitHub Desktop.
Save nevyn/8651201 to your computer and use it in GitHub Desktop.
Both "about to register" and "registered" are printed, and shortly after Springboard crashes :( This is the entirety of the source in this dylib.
{
title = "Lookback Anywhere Settings";
description = "Reveals UI to start/stop Lookback recording";
}
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Filter</key>
<dict>
<key>Bundles</key>
<array>
<string>com.apple.springboard</string>
</array>
</dict>
</dict>
</plist>
//
// LookbackActivator.m
// LookbackActivator
//
// Created by Joachim Bengtsson on 2014-01-23.
// Copyright (c) 2014 __MyCompanyName__. All rights reserved.
//
// LibActivator by Ryan Petrich
// See https://github.com/rpetrich/libactivator
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <libactivator/libactivator.h>
@interface LookbackActivator : NSObject<LAListener, UIAlertViewDelegate> {
@private
UIAlertView *av;
}
@end
@implementation LookbackActivator
#if 1
- (BOOL)dismiss
{
if (av)
{
[av dismissWithClickedButtonIndex:[av cancelButtonIndex] animated:YES];
return YES;
}
return NO;
}
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
{
}
- (void)activator:(LAActivator *)activator receiveEvent:(LAEvent *)event
{
if (![self dismiss])
{
NSLog(@"LBA Activator activated");
av = [[UIAlertView alloc] initWithTitle:@"LookbackActivator" message:[event name] delegate:self cancelButtonTitle:@"Ok" otherButtonTitles:nil];
[av show];
[event setHandled:YES];
}
}
- (void)activator:(LAActivator *)activator abortEvent:(LAEvent *)event
{
// Called when event is escalated to higher event
[self dismiss];
}
- (void)activator:(LAActivator *)activator otherListenerDidHandleEvent:(LAEvent *)event
{
// Called when other listener receives an event
[self dismiss];
}
- (void)activator:(LAActivator *)activator receiveDeactivateEvent:(LAEvent *)event
{
// Called when the home button is pressed.
// If showing UI, then dismiss it and call setHandled:.
if ([self dismiss])
[event setHandled:YES];
}
+ (void)load
{
@autoreleasepool
{
NSLog(@"LBA Activator about to register");
[[LAActivator sharedInstance] registerListener:[self new] forName:@"io.lookback.lookback-anywhere-listener"];
NSLog(@"LBA Activator registered");
}
}
@end
Incident Identifier: B653F225-68E6-4B28-AF18-47C3862FD050
CrashReporter Key: 5f4c27195eda8c58de1bf8c87353491845086779
Hardware Model: iPhone6,2
Process: SpringBoard [21367]
Path: /System/Library/CoreServices/SpringBoard.app/SpringBoard
Identifier: com.apple.springboard
Version: 50 (1.0)
Code Type: ARM-64 (Native)
Parent Process: launchd [1]
Date/Time: 2014-01-28 10:28:06.704 +0100
OS Version: iOS 7.0.4 (11B554a)
Report Version: 104
Exception Type: EXC_CRASH (SIGSEGV)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Triggered by Thread: 1
Thread 0:
0 libobjc.A.dylib 0x00000001965139d0 objc_msgSend + 16
1 CoreFoundation 0x000000018a54f6d8 __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 16
2 CoreFoundation 0x000000018a49c018 _CFXNotificationPost + 2060
3 Foundation 0x000000018b026a14 -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
4 SpringBoard 0x00000001003389a0 0x1000c0000 + 2591136
5 SpringBoard 0x0000000100321498 0x1000c0000 + 2495640
6 SpringBoard 0x0000000100264820 0x1000c0000 + 1722400
7 SpringBoard 0x0000000100263780 0x1000c0000 + 1718144
8 SpringBoard 0x000000010029f050 0x1000c0000 + 1962064
9 SpringBoard 0x000000010029f890 0x1000c0000 + 1964176
10 SpringBoard 0x00000001000eb0e8 0x1000c0000 + 176360
11 SpringBoard 0x00000001000e4c34 0x1000c0000 + 150580
12 SpringBoard 0x00000001002a770c 0x1000c0000 + 1996556
13 SpringBoard 0x00000001002a7068 0x1000c0000 + 1994856
14 SpringBoard 0x00000001000e4abc 0x1000c0000 + 150204
15 SpringBoard 0x000000010033a91c 0x1000c0000 + 2599196
16 SpringBoard 0x000000010033a388 0x1000c0000 + 2597768
17 SpringBoard 0x00000001000c7a80 0x1000c0000 + 31360
18 iWhiteBoard.dylib 0x00000001020229b8 0x102020000 + 10680
19 UIKit 0x000000018d4e5614 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 388
20 UIKit 0x000000018d4e5004 -[UIApplication _callInitializationDelegatesForURL:payload:suspended:] + 1560
21 UIKit 0x000000018d4de99c -[UIApplication _runWithURL:payload:launchOrientation:statusBarStyle:statusBarHidden:] + 768
22 UIKit 0x000000018d4dd22c -[UIApplication _run] + 616
23 UIKit 0x000000018d4d80e4 UIApplicationMain + 1152
24 SpringBoard 0x00000001000c5308 0x1000c0000 + 21256
25 libdyld.dylib 0x0000000196b03a9c start + 0
Thread 1 Crashed:
0 libsystem_kernel.dylib 0x0000000196be5ac8 kevent64 + 8
1 libdispatch.dylib 0x0000000196ae9d74 _dispatch_mgr_thread + 48
Thread 2:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 3:
0 libsystem_kernel.dylib 0x0000000196be5d14 semaphore_timedwait_trap + 8
1 SpringBoardServices 0x0000000192643648 +[NSObject(SBS) sbs_synchronousWrapper:dispatchTimeout:] + 120
2 SpringBoardServices 0x00000001926434b0 +[NSObject(SBS) sbs_synchronousWrapper:timeout:] + 92
3 SpringBoardServices 0x000000019264bcd8 SBSLaunchApplicationWithIdentifierAndURLAndLaunchOptions + 496
4 MailServices 0x00000001904a21f8 -[MSMailDefaultService _handleMessageSendFailure:message:messageIndex:context:] + 628
5 MailServices 0x00000001904a8014 __52-[MSService _callServicesMethod:arguments:callback:]_block_invoke + 1080
6 libdispatch.dylib 0x0000000196ae841c _dispatch_call_block_and_release + 20
7 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
8 libdispatch.dylib 0x0000000196aee6ec _dispatch_queue_drain + 540
9 libdispatch.dylib 0x0000000196aea880 _dispatch_queue_invoke + 64
10 libdispatch.dylib 0x0000000196aef3a4 _dispatch_root_queue_drain + 312
11 libdispatch.dylib 0x0000000196aef634 _dispatch_worker_thread2 + 72
12 libsystem_pthread.dylib 0x0000000196c7d914 _pthread_wqthread + 352
13 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 4:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 5:
0 libsystem_kernel.dylib 0x0000000196be5cc0 mach_msg_trap + 8
1 CoreFoundation 0x000000018a55aca8 __CFRunLoopServiceMachPort + 180
2 CoreFoundation 0x000000018a558e38 __CFRunLoopRun + 832
3 CoreFoundation 0x000000018a499b34 CFRunLoopRunSpecific + 448
4 Foundation 0x000000018b02d590 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 292
5 Foundation 0x000000018b08b148 -[NSRunLoop(NSRunLoop) run] + 92
6 UIKit 0x000000018d8f96f4 -[UIStatusBarServerThread main] + 708
7 Foundation 0x000000018b11476c __NSThread__main__ + 996
8 libsystem_pthread.dylib 0x0000000196c801ac _pthread_body + 164
9 libsystem_pthread.dylib 0x0000000196c80104 _pthread_start + 136
10 libsystem_pthread.dylib 0x0000000196c7d7ac thread_start + 0
Thread 6 name: com.apple.coremedia.player.async
Thread 6:
0 libsystem_kernel.dylib 0x0000000196be5cfc semaphore_wait_trap + 8
1 MediaToolbox 0x000000018bd48e14 fpa_AsyncMovieControlThread + 1828
2 CoreMedia 0x000000018aba8538 figThreadMain + 252
3 libsystem_pthread.dylib 0x0000000196c801ac _pthread_body + 164
4 libsystem_pthread.dylib 0x0000000196c80104 _pthread_start + 136
5 libsystem_pthread.dylib 0x0000000196c7d7ac thread_start + 0
Thread 7:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 8:
0 libsystem_kernel.dylib 0x0000000196be5cc0 mach_msg_trap + 8
1 CoreFoundation 0x000000018a55aca8 __CFRunLoopServiceMachPort + 180
2 CoreFoundation 0x000000018a558e38 __CFRunLoopRun + 832
3 CoreFoundation 0x000000018a499b34 CFRunLoopRunSpecific + 448
4 CoreFoundation 0x000000018a4ef1e0 CFRunLoopRun + 108
5 CoreMotion 0x000000018ac4a020 ___lldb_unnamed_function1423$$CoreMotion + 640
6 libsystem_pthread.dylib 0x0000000196c801ac _pthread_body + 164
7 libsystem_pthread.dylib 0x0000000196c80104 _pthread_start + 136
8 libsystem_pthread.dylib 0x0000000196c7d7ac thread_start + 0
Thread 9:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 10:
0 libsystem_kernel.dylib 0x0000000196be5cc0 mach_msg_trap + 8
1 CoreFoundation 0x000000018a55aca8 __CFRunLoopServiceMachPort + 180
2 CoreFoundation 0x000000018a558e38 __CFRunLoopRun + 832
3 CoreFoundation 0x000000018a499b34 CFRunLoopRunSpecific + 448
4 SpringBoard 0x0000000100123ce8 0x1000c0000 + 408808
5 libsystem_pthread.dylib 0x0000000196c801ac _pthread_body + 164
6 libsystem_pthread.dylib 0x0000000196c80104 _pthread_start + 136
7 libsystem_pthread.dylib 0x0000000196c7d7ac thread_start + 0
Thread 11 name: com.apple.springboard.icongeneration
Thread 11:
0 libsystem_kernel.dylib 0x0000000196be5cc0 mach_msg_trap + 8
1 CoreFoundation 0x000000018a55aca8 __CFRunLoopServiceMachPort + 180
2 CoreFoundation 0x000000018a558e38 __CFRunLoopRun + 832
3 CoreFoundation 0x000000018a499b34 CFRunLoopRunSpecific + 448
4 SpringBoard 0x0000000100123e4c 0x1000c0000 + 409164
5 libsystem_pthread.dylib 0x0000000196c801ac _pthread_body + 164
6 libsystem_pthread.dylib 0x0000000196c80104 _pthread_start + 136
7 libsystem_pthread.dylib 0x0000000196c7d7ac thread_start + 0
Thread 12:
0 libsystem_kernel.dylib 0x0000000196be5cfc semaphore_wait_trap + 8
1 libdispatch.dylib 0x0000000196ae9324 dispatch_once_f + 216
2 EventKit 0x000000018ae821a8 +[_EKAlarmEngine sharedInstance] + 60
3 CalendarProvider 0x0000000105409200 0x1053f8000 + 70144
4 CalendarProvider 0x0000000105405560 0x1053f8000 + 54624
5 libdispatch.dylib 0x0000000196ae841c _dispatch_call_block_and_release + 20
6 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
7 libdispatch.dylib 0x0000000196aee6ec _dispatch_queue_drain + 540
8 libdispatch.dylib 0x0000000196aea880 _dispatch_queue_invoke + 64
9 libdispatch.dylib 0x0000000196aef3a4 _dispatch_root_queue_drain + 312
10 libdispatch.dylib 0x0000000196aef634 _dispatch_worker_thread2 + 72
11 libsystem_pthread.dylib 0x0000000196c7d914 _pthread_wqthread + 352
12 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 13:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 14:
0 libsystem_kernel.dylib 0x0000000196be5cfc semaphore_wait_trap + 8
1 MailServices 0x00000001904a40c4 -[MSNotificationObserver activeAccountsHadLoadError:] + 220
2 MailDataProvider 0x0000000105519c28 0x105518000 + 7208
3 MailDataProvider 0x000000010551b0f0 0x105518000 + 12528
4 BulletinBoard 0x000000018ea126b0 -[BBDataProviderIdentity initForDataProvider:] + 1568
5 BulletinBoard 0x000000018ea12074 +[BBDataProviderIdentity identityForDataProvider:] + 48
6 BulletinBoard 0x000000018ea13c44 __92-[BBLocalDataProvider _initWithDataProvider:sectionID:serverQueue:initializationCompletion:]_block_invoke + 40
7 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
8 libdispatch.dylib 0x0000000196aedf28 _dispatch_barrier_sync_f_invoke + 44
9 BulletinBoard 0x000000018ea13bf8 -[BBLocalDataProvider _initWithDataProvider:sectionID:serverQueue:initializationCompletion:] + 688
10 BulletinBoard 0x000000018ea14328 __83-[BBLocalDataProvider initWithPrincipalClass:serverQueue:initializationCompletion:]_block_invoke + 160
11 libdispatch.dylib 0x0000000196ae841c _dispatch_call_block_and_release + 20
12 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
13 libdispatch.dylib 0x0000000196aef3f8 _dispatch_root_queue_drain + 396
14 libdispatch.dylib 0x0000000196aef634 _dispatch_worker_thread2 + 72
15 libsystem_pthread.dylib 0x0000000196c7d914 _pthread_wqthread + 352
16 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 15:
0 libsystem_kernel.dylib 0x0000000196be5cfc semaphore_wait_trap + 8
1 libdispatch.dylib 0x0000000196aedd10 _dispatch_barrier_sync_f_slow + 232
2 EventKit 0x000000018ae8251c -[_EKAlarmEngine start] + 572
3 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
4 libdispatch.dylib 0x0000000196ae9284 dispatch_once_f + 56
5 EventKit 0x000000018ae821a8 +[_EKAlarmEngine sharedInstance] + 60
6 CalendarProvider 0x0000000105409200 0x1053f8000 + 70144
7 CalendarProvider 0x00000001053ff4c4 0x1053f8000 + 29892
8 libdispatch.dylib 0x0000000196ae841c _dispatch_call_block_and_release + 20
9 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
10 libdispatch.dylib 0x0000000196aee6ec _dispatch_queue_drain + 540
11 libdispatch.dylib 0x0000000196aea880 _dispatch_queue_invoke + 64
12 libdispatch.dylib 0x0000000196aef3a4 _dispatch_root_queue_drain + 312
13 libdispatch.dylib 0x0000000196aef634 _dispatch_worker_thread2 + 72
14 libsystem_pthread.dylib 0x0000000196c7d914 _pthread_wqthread + 352
15 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 16:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 17:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 18:
0 libsystem_kernel.dylib 0x0000000196be5d14 semaphore_timedwait_trap + 8
1 BulletinBoard 0x000000018ea14038 -[BBLocalDataProvider initWithPrincipalClass:serverQueue:initializationCompletion:] + 452
2 BulletinBoard 0x000000018ea138d4 +[BBLocalDataProvider dataProviderWithPrincipalClass:serverQueue:initializationCompletion:] + 68
3 BulletinBoard 0x000000018ea20528 -[BBDataProviderManager _addDataProviderClass:] + 52
4 BulletinBoard 0x000000018ea1fe58 -[BBDataProviderManager _loadDataProviderPluginBundle:] + 564
5 BulletinBoard 0x000000018ea1fb78 -[BBDataProviderManager _loadAllDataProviderPluginBundles] + 600
6 BulletinBoard 0x000000018ea1f730 -[BBDataProviderManager loadAllDataProviders] + 264
7 BulletinBoard 0x000000018e9fc24c -[BBServer _loadDataProvidersAndSettings] + 288
8 BulletinBoard 0x000000018e9ffff0 __BBAllowPublication_block_invoke_2 + 44
9 libdispatch.dylib 0x0000000196ae841c _dispatch_call_block_and_release + 20
10 libdispatch.dylib 0x0000000196ae83dc _dispatch_client_callout + 12
11 libdispatch.dylib 0x0000000196aee6ec _dispatch_queue_drain + 540
12 libdispatch.dylib 0x0000000196aea880 _dispatch_queue_invoke + 64
13 libdispatch.dylib 0x0000000196aef3a4 _dispatch_root_queue_drain + 312
14 libdispatch.dylib 0x0000000196aef634 _dispatch_worker_thread2 + 72
15 libsystem_pthread.dylib 0x0000000196c7d914 _pthread_wqthread + 352
16 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 19:
0 libsystem_kernel.dylib 0x0000000196bfee74 __workq_kernreturn + 8
1 libsystem_pthread.dylib 0x0000000196c7d7a4 start_wqthread + 0
Thread 1 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000004 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x00000001007235f0
x4: 0x0000000000000001 x5: 0x0000000000000000 x6: 0x0000000000000000 x7: 0x0000000000000000
x8: 0x0000000000000000 x9: 0x0000000000000000 x10: 0x0000000000000000 x11: 0x00000001997a7380
x12: 0x00000001997a69c0 x13: 0x0000000000000001 x14: 0x0000000000000000 x15: 0x00000bda2a8211c7
x16: 0x0000000000000171 x17: 0x000000003f223270 x18: 0x0000000000000000 x19: 0x00000001997a69c0
x20: 0x00000001997a6540 x21: 0x0000000196afe6a8 x22: 0x00000001997a65c0 x23: 0x0000000006010021
x24: 0x00000001007240e0 x25: 0xffffffffffffffff x26: 0x00000001007240e0 x27: 0x0000000000000001
x28: 0x0000000000000000 fp: 0x0000000100723650 lr: 0x0000000196af13e0
sp: 0x00000001007235f0 pc: 0x0000000196be5ac8 cpsr: 0x60000000
Binary Images:
0x1000c0000 - 0x10041ffff SpringBoard arm64 <fe632b47e4ee342baf4b3701cd11b242> /System/Library/CoreServices/SpringBoard.app/SpringBoard
0x100598000 - 0x10059bfff MobileSubstrate.dylib arm64 <7a11427ada163b92b02390176f85acb6> /Library/MobileSubstrate/MobileSubstrate.dylib
0x100678000 - 0x10067bfff SubstrateLoader.dylib arm64 <5d3503b2409a329794ddef1f609cc37b> /Library/Frameworks/CydiaSubstrate.framework/Libraries/SubstrateLoader.dylib
0x1006a8000 - 0x1006b7fff Activator.dylib arm64 <1c515597e7693d758f21638cbf412f20> /Library/MobileSubstrate/DynamicLibraries/Activator.dylib
0x100730000 - 0x100763fff ActivatorSpringBoard arm64 <1d394e6c86f53d1ea0b0f77484802039> /Library/Activator/ActivatorSpringBoard.bundle/ActivatorSpringBoard
0x100814000 - 0x100817fff librocketbootstrap.dylib arm64 <47ddc13c59703ed187bbe0c141136bba> /usr/lib/librocketbootstrap.dylib
0x100820000 - 0x100827fff libsubstrate.dylib arm64 <c7f1efdb98f73a8ca8edaf149e9e338c> /usr/lib/libsubstrate.dylib
0x102004000 - 0x10200bfff Flipswitch.dylib arm64 <8f0d07572c943f89aa740a0371b945f2> /Library/MobileSubstrate/DynamicLibraries/Flipswitch.dylib
0x102014000 - 0x102017fff Lookback Anywhere.dylib arm64 <1d99e634f3fd323b8af7580c1135218e> /Library/MobileSubstrate/DynamicLibraries/Lookback Anywhere.dylib
0x102020000 - 0x10202bfff iWhiteBoard.dylib arm64 <f83e0b0213d83dd2a8d6592c232f15fa> /Library/MobileSubstrate/DynamicLibraries/iWhiteBoard.dylib
0x1033ec000 - 0x103407fff ProceduralWallpapers arm64 <2fa5f0bbb1b13c8b8393c8c09930feb0> /System/Library/ProceduralWallpaper/ProceduralWallpapers.bundle/ProceduralWallpapers
0x104444000 - 0x104453fff Assistant arm64 <404772ea243e3a9b88fb8fa229848ca8> /System/Library/SpringBoardPlugins/Assistant.uibundle/Assistant
0x104528000 - 0x10452bfff GameKitDataProvider arm64 <979679705d253ebb9ce60ce86f6cfdb0> /System/Library/BulletinBoardPlugins/GameKitDataProvider.bundle/GameKitDataProvider
0x1053f8000 - 0x105413fff CalendarProvider arm64 <350c9d3686253e7abf4d97f36263e663> /System/Library/BulletinBoardPlugins/CalendarProvider.bundle/CalendarProvider
0x1054bc000 - 0x1054c7fff MPDataProvider arm64 <40d8603f56fb3b478673318506dc1fb9> /System/Library/BulletinBoardPlugins/MPDataProvider.bundle/MPDataProvider
0x105518000 - 0x10551ffff MailDataProvider arm64 <b6e04d0840bb3c06b6afdd1d22a0eb36> /System/Library/BulletinBoardPlugins/MailDataProvider.bundle/MailDataProvider
0x120054000 - 0x12007bfff dyld arm64 <b9f4cfd5259d389887ae4f252ac88b71> /usr/lib/dyld
0x188fa0000 - 0x188fa7fff AccessibilitySettingsLoader arm64 <cbaaa334ce5f39bebcff678bc5bf793e> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x188fa8000 - 0x188fc7fff SBAXServer arm64 <92518169df8e34fab3ce0fe2d1b839ec> /System/Library/AccessibilityBundles/SBAXServer.bundle/SBAXServer
0x188fc8000 - 0x188fcbfff CMASBBPlugin arm64 <f936d30e10c33bdd93ab0dba700ae090> /System/Library/BulletinBoardPlugins/CMASBBPlugin.bundle/CMASBBPlugin
0x189030000 - 0x189053fff libKoreanConverter.dylib arm64 <ee4dd0e949b7399fa51b4f05c8754f28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
0x1891a0000 - 0x1891fbfff AGXGLDriver arm64 <bb538794e81736e3adf44d72ed7b9508> /System/Library/Extensions/AGXGLDriver.bundle/AGXGLDriver
0x189210000 - 0x18932ffff AVFoundation arm64 <589f261d685d374aa9847bd9188cbd97> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x189330000 - 0x18935bfff libAVFAudio.dylib arm64 <68a3e3243c8c3e3a9985eeee7a935d51> /System/Library/Frameworks/AVFoundation.framework/libAVFAudio.dylib
0x18935c000 - 0x18935ffff Accelerate arm64 <b6ed249ac075366ab36f1751b26bc97b> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x189360000 - 0x18936bfff libCGInterfaces.dylib arm64 <0049f29945f8361380ba56052e7c6bd0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Resources/libCGInterfaces.dylib
0x18936c000 - 0x18953ffff vImage arm64 <2d33bede6c813e2da933fbca2385614e> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x189540000 - 0x1895dffff libBLAS.dylib arm64 <768246f821d63497a1edb840af38bd5b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1895e0000 - 0x189947fff libLAPACK.dylib arm64 <36d3ff7c4b5b3cd2876872e8d3e44908> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x189948000 - 0x18999ffff libvDSP.dylib arm64 <b22a81d86bb83c95af3b9931d35db7b7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1899a0000 - 0x1899bffff libvMisc.dylib arm64 <00f129650d1a3697bc5182632320d91c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1899c0000 - 0x1899c3fff vecLib arm64 <6afbebd473fa3d2b948dc87e0cbfc86c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1899c4000 - 0x1899ebfff Accounts arm64 <4802ba35478d308fb05a36112be92ca2> /System/Library/Frameworks/Accounts.framework/Accounts
0x1899f0000 - 0x189a67fff AddressBook arm64 <a04c222f039d3e648fab625b1bd7d5c7> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x189a68000 - 0x189ba7fff AddressBookUI arm64 <bdfdf73cd0fa3bc3a0854b8a7914d950> /System/Library/Frameworks/AddressBookUI.framework/AddressBookUI
0x189ba8000 - 0x189bbbfff AssetsLibrary arm64 <9acb4844da4037b2a8fc4f3c4db31cd1> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x189d0c000 - 0x18a083fff AudioToolbox arm64 <29a63861fe783c20b6628ee4ec962b07> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x18a084000 - 0x18a1effff CFNetwork arm64 <a611ae9cee9d31248c1c09d099c77eed> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x18a1f0000 - 0x18a253fff CoreAudio arm64 <369f52992ea13a37a63c75374fb9183a> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x18a254000 - 0x18a26ffff CoreBluetooth arm64 <bac2d78f5612357ab6a75fe2ff02acb4> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x18a270000 - 0x18a48ffff CoreData arm64 <71980cd5398438a1af7f8e7d88b21e92> /System/Library/Frameworks/CoreData.framework/CoreData
0x18a490000 - 0x18a61bff7 CoreFoundation arm64 <da5c56450a6632b3b4349eb9de5f1091> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x18a61c000 - 0x18a77bfff CoreGraphics arm64 <f1f94337421e32fba1528b67c8d80b1a> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x18a780000 - 0x18a7cbfff libCGFreetype.A.dylib arm64 <e4dee8458a553478a5b608ba7d178dcc> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCGFreetype.A.dylib
0x18a7d0000 - 0x18a7dbfff libCMSBuiltin.A.dylib arm64 <adc1761b968d378db059aaaebae0b313> /System/Library/Frameworks/CoreGraphics.framework/Resources/libCMSBuiltin.A.dylib
0x18a9d0000 - 0x18a9effff libRIP.A.dylib arm64 <ea8b666eff763fa1b354de30ad22fc42> /System/Library/Frameworks/CoreGraphics.framework/Resources/libRIP.A.dylib
0x18a9f0000 - 0x18aae7fff CoreImage arm64 <b031c8067f043b98b3e49c8cc2cfbf9c> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x18aae8000 - 0x18ab3bfff CoreLocation arm64 <cdbd1d2376393e3897d2a7797d1ebc41> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x18ab78000 - 0x18ac0bfff CoreMedia arm64 <3256bb75df4d31c9a6a593811dc3f1d6> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x18ac0c000 - 0x18acc3fff CoreMotion arm64 <25ad0b8737b531499897be132457101a> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x18acc4000 - 0x18ad33fff CoreTelephony arm64 <eb4192eb2fb13205ab0376605f2fb137> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x18ad34000 - 0x18adeffff CoreText arm64 <4f01989631143315aa9efaad5bd73a56> /System/Library/Frameworks/CoreText.framework/CoreText
0x18adf0000 - 0x18ae07fff CoreVideo arm64 <cd5b2a4b1a3234498384a7d31bbb2510> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x18ae08000 - 0x18aeeffff EventKit arm64 <98ce81ea3b173963a00fe3968380747f> /System/Library/Frameworks/EventKit.framework/EventKit
0x18aef0000 - 0x18b007fff EventKitUI arm64 <b9dae41ef619334d811ae039f9bce419> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x18b01c000 - 0x18b25bfff Foundation arm64 <b899c77034783549a78bf3a52730f20f> /System/Library/Frameworks/Foundation.framework/Foundation
0x18b25c000 - 0x18b287fff GLKit arm64 <4651a70b5c9d3c78b747f698d600e174> /System/Library/Frameworks/GLKit.framework/GLKit
0x18b2c4000 - 0x18b353fff GameCenterFoundation arm64 <23fcb24873d93533bd5d00463544fd01> /System/Library/Frameworks/GameKit.framework/Frameworks/GameCenterFoundation.framework/GameCenterFoundation
0x18b354000 - 0x18b473fff GameCenterUI arm64 <7c3b5497c84132308b548b8c7b28baac> /System/Library/Frameworks/GameKit.framework/Frameworks/GameCenterUI.framework/GameCenterUI
0x18b474000 - 0x18b483fff LegacyGameKit arm64 <65090b0e78fc3e7ba5952f8faa392138> /System/Library/Frameworks/GameKit.framework/Frameworks/LegacyGameKit.framework/LegacyGameKit
0x18b484000 - 0x18b487fff GameKit arm64 <f7efbafeb5d73c8ab6c24ab92acc8ca4> /System/Library/Frameworks/GameKit.framework/GameKit
0x18b488000 - 0x18b4f3fff IOKit arm64 <a4cac747f7bd35d1b4f034b403acba86> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x18b4f4000 - 0x18b757fff ImageIO arm64 <f9733403c35f375b817af86d57e5b842> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x18b758000 - 0x18ba67fff JavaScriptCore arm64 <2f30c0128a7e39f591943c5e5d98c4d3> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x18ba68000 - 0x18bb17fff MapKit arm64 <53392635cd1f3e7e91f38ff67022709e> /System/Library/Frameworks/MapKit.framework/MapKit
0x18bb18000 - 0x18bb1ffff MediaAccessibility arm64 <fcc28bc7a18e354b9fd480b26e138d72> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x18bb20000 - 0x18bd43fff MediaPlayer arm64 <a97d7d844e40328e8db2c95348c2f8f0> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x18bd44000 - 0x18c073fff MediaToolbox arm64 <e5ef4d7ba7dd35e0b5f4c92dadf0f1ba> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x18c074000 - 0x18c123fff MessageUI arm64 <41cfb5747ea537cc8e8ef9e818b81338> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x18c124000 - 0x18c19ffff MobileCoreServices arm64 <8f7311cade8a3cc1b0d33fafcc70e04c> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x18c208000 - 0x18c23ffff OpenAL arm64 <9cfdd034d53f3580b1074086f9163722> /System/Library/Frameworks/OpenAL.framework/OpenAL
0x18c240000 - 0x18cd1ffff libLLVMContainer.dylib arm64 <180ca249959535d0aa0b01c44d587cde> /System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
0x18cd20000 - 0x18cdfbfff GLEngine arm64 <8eed473df1323f60b4c86dcfa24d06a0> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
0x18cdfc000 - 0x18ce07fff OpenGLES arm64 <1f76e6f36c943bfa9420cdf91faed689> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x18ce0c000 - 0x18ce0ffff libCVMSPluginSupport.dylib arm64 <c178baa2b6c63835aeab0392af659321> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x18ce10000 - 0x18ce13fff libCoreFSCache.dylib arm64 <95d7ed79eef13f3cb2e9455168b5cf4f> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x18ce14000 - 0x18ce1bfff libCoreVMClient.dylib arm64 <368eb790f43533d783086a8b66fdca5f> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x18ce1c000 - 0x18ce27fff libGFXShared.dylib arm64 <7ccf2bc4bd863a8480e873be2cc6f5af> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x18ce28000 - 0x18ce73fff libGLImage.dylib arm64 <92ef6ad816183776a7b1269511342f4d> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x18ce74000 - 0x18cfe7fff libGLProgrammability.dylib arm64 <e3e390aa3c3b30ceb75bea76d4a7a526> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib
0x18d008000 - 0x18d057fff PassKit arm64 <8c1c6c02522b35149389df66f821e176> /System/Library/Frameworks/PassKit.framework/PassKit
0x18d058000 - 0x18d1cffff QuartzCore arm64 <6971da012b86393aa9e1d311ab5a4db2> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18d1d0000 - 0x18d22ffff QuickLook arm64 <733c29c090a438c6acd5a480543a1f17> /System/Library/Frameworks/QuickLook.framework/QuickLook
0x18d234000 - 0x18d28bfff Security arm64 <1e4c353ee514375eaf470779401fd9e9> /System/Library/Frameworks/Security.framework/Security
0x18d28c000 - 0x18d313fff Social arm64 <22b1618eecfe33e8bf70f2c281bf6fd7> /System/Library/Frameworks/Social.framework/Social
0x18d314000 - 0x18d3d7fff SpriteKit arm64 <ad2ecf1e53b633eb998199dfe9443224> /System/Library/Frameworks/SpriteKit.framework/SpriteKit
0x18d3d8000 - 0x18d3effff StoreKit arm64 <bc3ce73732663f38a05c8cb1dd6b9d0f> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x18d3f0000 - 0x18d457fff SystemConfiguration arm64 <30e7f8e4046434ea98e9cab777771c4e> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x18d45c000 - 0x18dc37fff UIKit arm64 <f7ddfd26f3513a4b9266cbd849b1ce6e> /System/Library/Frameworks/UIKit.framework/UIKit
0x18dc38000 - 0x18dc93fff VideoToolbox arm64 <0d9db85ef6113e2db8d2e9a2d524a899> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x18df38000 - 0x18df63fff ACTFramework arm64 <cc34440f954c3ecfa4b4e6d096f7b63a> /System/Library/PrivateFrameworks/ACTFramework.framework/ACTFramework
0x18df64000 - 0x18df67fff AGXCompilerConnection arm64 <7025478cff3138f39ba95b481c8d8199> /System/Library/PrivateFrameworks/AGXCompilerConnection.framework/AGXCompilerConnection
0x18df68000 - 0x18dfb3fff AGXCompilerCore arm64 <5461c25f62c83c59a38171ef0961a0b3> /System/Library/PrivateFrameworks/AGXCompilerCore.framework/AGXCompilerCore
0x18dfb4000 - 0x18dfbbfff AITTarget arm64 <bea48a296ff0351c9363de33e98d0445> /System/Library/PrivateFrameworks/AITTarget.framework/AITTarget
0x18dfc0000 - 0x18dfcbfff AOSNotification arm64 <b9bf3a4020cf34e38de6255ffd99a741> /System/Library/PrivateFrameworks/AOSNotification.framework/AOSNotification
0x18dfcc000 - 0x18dff7fff AXHearingAidSupport arm64 <59c19f8a2c2b318183371fc359f7a9bb> /System/Library/PrivateFrameworks/AXHearingAidSupport.framework/AXHearingAidSupport
0x18dff8000 - 0x18e01ffff AXRuntime arm64 <e44c79cefa953799987c457bc07bc791> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x18e020000 - 0x18e027fff AccessibilityUI arm64 <a956baf95c1c31da91276d7cb8a01e05> /System/Library/PrivateFrameworks/AccessibilityUI.framework/AccessibilityUI
0x18e03c000 - 0x18e093fff AccessibilityUtilities arm64 <aace1d6b60153a1e945e09d1806a1393> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x18e0f8000 - 0x18e11ffff AccountsUI arm64 <472a4b89668d338e8337ee2926c63119> /System/Library/PrivateFrameworks/AccountsUI.framework/AccountsUI
0x18e120000 - 0x18e127fff AggregateDictionary arm64 <44c08389ffdd3fbabb09b3e72e90a012> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x18e354000 - 0x18e36bfff AirTraffic arm64 <5d81e4f0a775318cbd0c14979e46276b> /System/Library/PrivateFrameworks/AirTraffic.framework/AirTraffic
0x18e36c000 - 0x18e73bfff Altitude arm64 <6fde8bf9aedb3f18b2b2364aa7d45bc3> /System/Library/PrivateFrameworks/Altitude.framework/Altitude
0x18e73c000 - 0x18e773fff AppLaunchStats arm64 <d7fe754cda0e3d06b85dac7cef1a4a13> /System/Library/PrivateFrameworks/AppLaunchStats.framework/AppLaunchStats
0x18e778000 - 0x18e7c3fff AppSupport arm64 <a556e2bcbb2835e0b76c24cdc0a47efd> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x18e7c4000 - 0x18e807fff AppleAccount arm64 <4e72a973ea3132d59ff6c827b40a1ac2> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18e808000 - 0x18e80ffff AppleAccountUI arm64 <bd3c5e51d1463c77919b258e3ce31488> /System/Library/PrivateFrameworks/AppleAccountUI.framework/AppleAccountUI
0x18e8bc000 - 0x18e8cffff ApplePushService arm64 <96ebb49138de333a848946bd001739e1> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18e8e4000 - 0x18e8f3fff AssetsLibraryServices arm64 <0231391794523f4190fe2cf6ed68f30f> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x18e8f4000 - 0x18e913fff AssistantServices arm64 <6334e5679c6d36aeb92a9a47fd4f83a2> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x18e914000 - 0x18e93bfff AssistantUI arm64 <94fa4d343eb333f0b789d6e99ef38cba> /System/Library/PrivateFrameworks/AssistantUI.framework/AssistantUI
0x18e93c000 - 0x18e943fff BTLEAudioController arm64 <1382e17d16733bbd980a1cbed6e37950> /System/Library/PrivateFrameworks/BTLEAudioController.framework/BTLEAudioController
0x18e944000 - 0x18e96ffff BackBoardServices arm64 <194530090fe9305c872734aed0d8e1e3> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x18e974000 - 0x18e98bfff BiometricKit arm64 <6504f367e670355abf72468f2096b695> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x18e990000 - 0x18e997fff BluetoothManager arm64 <0d6f7fcfa6ea35c2a216b2eb7de836cb> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x18e998000 - 0x18e9c7fff Bom arm64 <af2397effb0134448891de86518e570f> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x18e9e0000 - 0x18ea37fff BulletinBoard arm64 <30ccf368d317378c8785f464218c1a70> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x18ea88000 - 0x18ea93fff CaptiveNetwork arm64 <e070c8fb896437dea4cf8e9e93b27a64> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x18ea94000 - 0x18eba3fff Celestial arm64 <25b4ed6f2c3f3530a9763af09f983fcb> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x18eba4000 - 0x18ebb3fff CertInfo arm64 <8a6ab38794ac36319101d43767cd4f96> /System/Library/PrivateFrameworks/CertInfo.framework/CertInfo
0x18ebb4000 - 0x18ebbbfff CertUI arm64 <ef6bd31ca0e038b7b835a90529c3275c> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x18ebbc000 - 0x18ec9bfff ChatKit arm64 <a252a5b5b83b3f0c8871499f61e34484> /System/Library/PrivateFrameworks/ChatKit.framework/ChatKit
0x18ec9c000 - 0x18ecbffff ChunkingLibrary arm64 <5fddfe45db4739148f5af50d10359d0d> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x18ecc0000 - 0x18eccbfff CloudServices arm64 <4f36641db01d32beb1eac358dea2db6a> /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x18eccc000 - 0x18ed17fff ColorSync arm64 <fe9f9f33ec663a5c9c95b21fc1fd2c82> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x18ed1c000 - 0x18ed2bfff CommonUtilities arm64 <62219a9993de3e09a9a994c02ed32146> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x18ed2c000 - 0x18ed33fff CommunicationsFilter arm64 <c3ca25979eaa3d90af26cd8348384719> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x18ed34000 - 0x18ed9bfff CommunicationsSetupUI arm64 <3921302374a439caa87cc79ba6aa9392> /System/Library/PrivateFrameworks/CommunicationsSetupUI.framework/CommunicationsSetupUI
0x18edac000 - 0x18eddbfff Conference arm64 <59ee4c787b5a3d0c87956edb6c683b5f> /System/Library/PrivateFrameworks/Conference.framework/Conference
0x18ede4000 - 0x18ee1bfff ContentIndex arm64 <792ec8c009243e13a3b2e8f76f2ff778> /System/Library/PrivateFrameworks/ContentIndex.framework/ContentIndex
0x18ee1c000 - 0x18ee1ffff CoreAUC arm64 <5f09a3fc3fe53febba03d12ad9b50ba3> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x18ee30000 - 0x18ee93fff CoreDAV arm64 <ae779a8b62163a1aae1f69ec074769b2> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x18eee0000 - 0x18f017fff CoreMediaStream arm64 <8db849d0c4db3670bd6cd3da2dbfc42d> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x18f0c8000 - 0x18f0d3fff CoreRecents arm64 <d1a48ea5a92f3d5da2db06c917273fc7> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x18f0d4000 - 0x18f10ffff CoreRecognition arm64 <1e7e45ec070d3a2d925f6ecd36bfcc5f> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x18f120000 - 0x18f12ffff CoreSDB arm64 <db563ca2d84f3b46af21c7191d813049> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x18f130000 - 0x18f157fff CoreServicesInternal arm64 <f92da44a6e213ffd8e945e8e78e7ef0a> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x18f158000 - 0x18f15bfff CoreSurface arm64 <7558827d755e3de68b6c82a94dcd6bf7> /System/Library/PrivateFrameworks/CoreSurface.framework/CoreSurface
0x18f15c000 - 0x18f1d3fff CoreSymbolication arm64 <75b951c3f6413f20a298323eca923a33> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x18f21c000 - 0x18f223fff CoreTime arm64 <569138701a6e3ed1beb34abdf462d0f3> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x18f224000 - 0x18f28bfff CoreUI arm64 <9b326c828ac030f4bf88050b273d5613> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x18f28c000 - 0x18f2e7fff CoreUtils arm64 <6251335569ea381a8cfd6b95cd95a095> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x18f2e8000 - 0x18f2effff CrashReporterSupport arm64 <3b8919f4e8be3e4c81bee57d903f4d58> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x18f2f0000 - 0x18f32bfff DataAccess arm64 <8d60efe861e0392e99b0ec48b49b7d42> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x18f500000 - 0x18f517fff DataAccessExpress arm64 <7d5ae8c8280f3607b4d9454386bd25b8> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x18f524000 - 0x18f53ffff DataDetectorsCore arm64 <03f2b3882e0838bda29c70bf35affc02> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x18f544000 - 0x18f55ffff DataDetectorsUI arm64 <7310ba5b7cf83a8d81821e5df4a2308c> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x18f560000 - 0x18f567fff DataMigration arm64 <517d233de5643a2dbe9a9458cd4869ea> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x18f570000 - 0x18f573fff DiagnosticLogCollection arm64 <6cb4bbf9a75e3de48a018f7bef80c11d> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x18f574000 - 0x18f597fff DictionaryServices arm64 <c8b40995ed5d391cb2dc6dc4ac62a92e> /System/Library/PrivateFrameworks/DictionaryServices.framework/DictionaryServices
0x18f598000 - 0x18f59bfff Duet arm64 <1bd34ba6abea3a25ae8159e2ce2f41eb> /System/Library/PrivateFrameworks/Duet.framework/Duet
0x18f5a0000 - 0x18f5affff DuetPLLConfigLogger arm64 <703fa0693a463a7184a3e738e44a969d> /System/Library/PrivateFrameworks/DuetPLLConfigLogger.framework/DuetPLLConfigLogger
0x18f5b8000 - 0x18f5dffff EAP8021X arm64 <31421ada64f43c21b9ddcb431c7f8b8d> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x18f5e8000 - 0x18f5f7fff ExFAT arm64 <de4388c222053d898dae38f6d54e76df> /System/Library/PrivateFrameworks/ExFAT.framework/ExFAT
0x18f5f8000 - 0x18f60bfff FTAWD arm64 <ade3a1a3525039faa97f5924bbf18118> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x18f60c000 - 0x18f60ffff FTClientServices arm64 <cd60b892b70d356eaddcdeca28394114> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x18f610000 - 0x18f63bfff FTServices arm64 <d4053a154a7936d9bd96ab9795089800> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x18f63c000 - 0x18fa5ffff FaceCore arm64 <9b13667c0bff3d87a35cd46c2a7c3336> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x18faa0000 - 0x18faabfff libGPUSupportMercury.dylib arm64 <4ae7872834e9353491976f837b61850a> /System/Library/PrivateFrameworks/GPUSupport.framework/libGPUSupportMercury.dylib
0x18faac000 - 0x18fbeffff AVConference arm64 <b25102598be83d5e88718aab8dc6a7a8> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/AVConference.framework/AVConference
0x18fbfc000 - 0x18fc23fff ICE arm64 <790a7d2662bb38cab477da1819f1388e> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ICE.framework/ICE
0x18fc24000 - 0x18fc27fff LegacyHandle arm64 <dc0d0999700b30b4a3ad81190d100e42> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/LegacyHandle.framework/LegacyHandle
0x18fc28000 - 0x18fc33fff SimpleKeyExchange arm64 <0a7f934aa3873f90a235573b730c1e4f> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
0x18fc34000 - 0x18fc4bfff ViceroyTrace arm64 <6e459e3d28f032f185322008571042c2> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
0x18fc4c000 - 0x18fc4ffff snatmap arm64 <fe3f9cecadf43020a403b539137a9c08> /System/Library/PrivateFrameworks/GameKitServices.framework/Frameworks/snatmap.framework/snatmap
0x18fc50000 - 0x18fcd7fff GameKitServices arm64 <d11c3ef14c9e3b6dac58394be0b28258> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices
0x18fcd8000 - 0x18fce7fff GenerationalStorage arm64 <3e370a7e22a63717b818f21c88d03ef3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x18fce8000 - 0x18feb3fff GeoServices arm64 <781f1eacc24a32cc87141f5a7c8e8cf7> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x18feb4000 - 0x18fec7fff GraphicsServices arm64 <8961e9deecaf3e4391974d509a888956> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x18ff70000 - 0x18fffffff HomeSharing arm64 <d2586c5304e83f07b16b19c3ec589ad2> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x190000000 - 0x19000ffff IAP arm64 <1cdd6c1745c43129bc2104a39b55127b> /System/Library/PrivateFrameworks/IAP.framework/IAP
0x190080000 - 0x1900bffff IDS arm64 <1daed20ba30733b7ab0878500a4ceeb2> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x190138000 - 0x19014bfff IDSFoundation arm64 <8fab4303aaea3adc91c7a4c5f6a977d7> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x19014c000 - 0x1901b7fff IMAVCore arm64 <1793228afb283954b6a09c4fbf64c2e2> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore
0x1901b8000 - 0x190253fff IMCore arm64 <e250d38138403317bf6debf32d201129> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x190258000 - 0x19029bfff IMDPersistence arm64 <c9bfaa3006223a25a5661208034fc73c> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1902e8000 - 0x19034ffff IMFoundation arm64 <5d2af9b3bf8532c5ba06fd57341eb85d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x190358000 - 0x19035bfff IOAccelerator arm64 <6d059ad4bfeb3ef78815a82802c7e6a6> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x19035c000 - 0x190367fff IOMobileFramebuffer arm64 <ba594ee89f1f335dba048677f95f24b4> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x190368000 - 0x19036ffff IOSurface arm64 <9c0ffccd139138679656601ad9967d62> /System/Library/PrivateFrameworks/IOSurface.framework/IOSurface
0x190370000 - 0x1903c7fff ImageCapture arm64 <d8712bd0e49d371eb26a51bdcb9759fe> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x1903c8000 - 0x1903cffff IncomingCallFilter arm64 <08416b235cda37118d9536cf1af6939a> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1903f4000 - 0x190403fff Librarian arm64 <a5c8701c804e3a4b8bef85aef12a18a8> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
0x190404000 - 0x19044bfff MIME arm64 <237ed7d0822031688661eed91c9c5552> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x19044c000 - 0x190493fff MMCS arm64 <7d8d0a7d7aec360f83d30085f26a5a60> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x19049c000 - 0x1904abfff MailServices arm64 <a330c9ead947354f97da27133c1be901> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1904ec000 - 0x19057bfff ManagedConfiguration arm64 <0b107f286e8c33d3a8e0e17976f00208> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x19057c000 - 0x19057ffff Marco arm64 <a4ca45a73ff03753887bf92768ea2d27> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x190580000 - 0x190607fff MediaControlSender arm64 <7e7dd85c9b6b39409235562f07deef54> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender
0x190608000 - 0x190647fff MediaPlayerUI arm64 <80c657cde9513b8d9d093ebc73e7f1bb> /System/Library/PrivateFrameworks/MediaPlayerUI.framework/MediaPlayerUI
0x190648000 - 0x190653fff MediaRemote arm64 <c4e82de4049936e295e3e7743879beb7> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x190654000 - 0x190673fff MediaStream arm64 <880d3d85fdbf3763a34a11aaba7414bd> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1906ec000 - 0x1907dffff Message arm64 <daeb0c97dc0c32cdb26607656b38868d> /System/Library/PrivateFrameworks/Message.framework/Message
0x1907e8000 - 0x1907ebfff MessageSupport arm64 <3e383a3f114f33bea0771729afb31210> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x1907f8000 - 0x190807fff MobileAsset arm64 <d0514e7514363bfdbe7a84fc241065b8> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x19080c000 - 0x19082ffff MobileBackup arm64 <461685607ac43aedbb70810210d73f88> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x190830000 - 0x19083bfff MobileBluetooth arm64 <4d7b06231bd936b19540df18c2da5972> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x190840000 - 0x190853fff MobileDeviceLink arm64 <cc81faff7a973374a9604c65afb26db3> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x190854000 - 0x19085ffff MobileIcons arm64 <5bfa63d6dd753323ae04d10b5181eac0> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x190860000 - 0x190867fff MobileInstallation arm64 <4d2668a343ff37e38c4a22f685f14249> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x190868000 - 0x190873fff MobileKeyBag arm64 <4244010012a83d20bec7579fe581b8ad> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x190878000 - 0x19087ffff MobileSoftwareUpdate arm64 <3b1c281829db3b25958c8e615ed90fd1> /System/Library/PrivateFrameworks/MobileSoftwareUpdate.framework/MobileSoftwareUpdate
0x1908a8000 - 0x1908abfff MobileSystemServices arm64 <5394860558733f208f527a73100982b3> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1908ac000 - 0x1908cffff MobileTimer arm64 <72448977f9693ca799bfb3b3e3e7e1ee> /System/Library/PrivateFrameworks/MobileTimer.framework/MobileTimer
0x1908d0000 - 0x1908dffff MobileWiFi arm64 <589e17c429613ad4bdfd91609d2ef296> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1908e0000 - 0x1908f3fff MultitouchSupport arm64 <554a5acc1b9635d9a5e7fd61329b3545> /System/Library/PrivateFrameworks/MultitouchSupport.framework/MultitouchSupport
0x190920000 - 0x190abffff MusicLibrary arm64 <330f26077f5e3ebca8bebdf0bcabc90e> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x190b90000 - 0x190b97fff Netrb arm64 <1cd4448a4ab4394b8f3685da15b67ec5> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x190b98000 - 0x190b9ffff NetworkStatistics arm64 <42559bf63c0c300e9f5c2ef03d0b132e> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x190ba0000 - 0x190bc3fff Notes arm64 <24f0cede50cc37eebac9cf2bd09d91f6> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x190bc4000 - 0x190bc7fff OAuth arm64 <9c24b311c14337588b9cb77061f4b7bd> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x19138c000 - 0x1913dbfff OpenCL arm64 <991646710f803e388732578053de4621> /System/Library/PrivateFrameworks/OpenCL.framework/OpenCL
0x191ae4000 - 0x191b17fff PassKitCore arm64 <b6455c3d9a2738c49b2d478b9af63dfe> /System/Library/PrivateFrameworks/PassKitCore.framework/PassKitCore
0x191b18000 - 0x191b43fff PersistentConnection arm64 <2b186d4386b533a6beb3520f7e932bdc> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x191b50000 - 0x191ccffff PhotoLibrary arm64 <d7ff2d485e3f39fab95236e3ef06d94a> /System/Library/PrivateFrameworks/PhotoLibrary.framework/PhotoLibrary
0x191cd0000 - 0x191e7ffff PhotoLibraryServices arm64 <d42ffabcb8b13dfea263f5f23bd1f6ae> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x191e80000 - 0x191feffff PhotosUI arm64 <0270080e65093b9a9b4aaaa846d1129b> /System/Library/PrivateFrameworks/PhotosUI.framework/PhotosUI
0x191ff0000 - 0x19201ffff PhysicsKit arm64 <de6ad4c1a3c23279a8c0d18acd09f1c9> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x192020000 - 0x192023fff PowerLog arm64 <4b258638b13c324690a69a2cdbfdf634> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1920b0000 - 0x19212ffff Preferences arm64 <019905e5043b310db9e675017967adf4> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x192130000 - 0x192173fff PrintKit arm64 <61e9c7577307302690cd9dbbfd7527ef> /System/Library/PrivateFrameworks/PrintKit.framework/PrintKit
0x192174000 - 0x192177fff ProgressUI arm64 <15985ff50475324fbb8365d22da1d1bc> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI
0x192178000 - 0x19222bfff ProofReader arm64 <37aa7ffe7173354f97342f55599c83a2> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x19222c000 - 0x19223bfff ProtocolBuffer arm64 <91e2bc532ae7364e804b98fa5564aeb5> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x19223c000 - 0x192273fff PrototypeTools arm64 <588b83735d953df0a763c2fbd30a4b5a> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x192274000 - 0x1922f7fff Quagga arm64 <1f7f9b674b8c31d5a28882d894b632d5> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1922f8000 - 0x1923a3fff Radio arm64 <2e60e69027d13869ad45d1da9062ffa2> /System/Library/PrivateFrameworks/Radio.framework/Radio
0x192418000 - 0x192443fff RemoteUI arm64 <587c0a3273af3ea8b80f49f6d3221c80> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x192444000 - 0x1924d7fff SAObjects arm64 <90d7d3a6d59c321e933ab7ef16987fe3> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1924e8000 - 0x19250bfff ScreenReaderCore arm64 <0b32f724bfb737969a2a7a2f318a8363> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x19254c000 - 0x19256bfff Search arm64 <69c1ddfa90ff3ad0afda259b81d043a2> /System/Library/PrivateFrameworks/Search.framework/Search
0x19257c000 - 0x1925affff Sharing arm64 <01bae449693a35acaec323c706b1235e> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1925b0000 - 0x1925e7fff SiriUI arm64 <21cdf5edefcc3f5c9e929153b8706d3e> /System/Library/PrivateFrameworks/SiriUI.framework/SiriUI
0x1925f0000 - 0x19260bfff SoftwareUpdateServices arm64 <18029beb333e34f89d7bcaa9891aacb1> /System/Library/PrivateFrameworks/SoftwareUpdateServices.framework/SoftwareUpdateServices
0x192610000 - 0x19263ffff SpringBoardFoundation arm64 <476ad1468e6838dc9efc546d6705bd55> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
0x192640000 - 0x19265bfff SpringBoardServices arm64 <adfa7fccb3543f7bb88c451f5a569f99> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x19265c000 - 0x19267bfff SpringBoardUI arm64 <ee8b0ed86c673ef99b685b20eda02222> /System/Library/PrivateFrameworks/SpringBoardUI.framework/SpringBoardUI
0x19267c000 - 0x192697fff SpringBoardUIServices arm64 <ec4f91a4698b3ce5b808b3ddddf3f8ed> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices
0x192708000 - 0x1928cffff StoreKitUI arm64 <986bffeec8613f7c814841a9932a6141> /System/Library/PrivateFrameworks/StoreKitUI.framework/StoreKitUI
0x1928d0000 - 0x192a0bfff StoreServices arm64 <386da9aeaabf34b48172c3718f664571> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x192a0c000 - 0x192a1ffff StreamingZip arm64 <75ba95b446cd37c9970d9cf5521a2b6a> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x192ad8000 - 0x192adbfff TCC arm64 <24f3e902f88c3be3a999c86f8ad3622e> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x192adc000 - 0x192b2ffff TelephonyUI arm64 <79dbe7c4c4a130438b37c3762dc0bc8e> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
0x192b30000 - 0x192b57fff TelephonyUtilities arm64 <5a9c4400d38d3d9b9775401603794985> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x192b58000 - 0x192f4bfff KBLayouts_iPhone.dylib arm64 <67f7d0993ccb315aa9b94589e06b57f6> /System/Library/PrivateFrameworks/TextInput.framework/KBLayouts_iPhone.dylib
0x192f4c000 - 0x192f77fff TextInput arm64 <84ff20d4cc5d3ce4bd97c92e6273ba97> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x192f78000 - 0x1931bffff TextToSpeech arm64 <9d0497edd04c363a8f57308e3df8c7d3> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1931ec000 - 0x193203fff ToneLibrary arm64 <421795ed6aea37d58f8cfbc224f60e45> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x193234000 - 0x193263fff UIAccessibility arm64 <4f8bc100db22372e830d85c05256b598> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
0x193264000 - 0x19333ffff UIFoundation arm64 <462005835c5d3a528e09339ac944c574> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x193340000 - 0x19335bfff Ubiquity arm64 <64f87df5324433db8b1748e6bdff601f> /System/Library/PrivateFrameworks/Ubiquity.framework/Ubiquity
0x19335c000 - 0x19335ffff UserFS arm64 <d1654bdcc7003d31b33ee53a78cf86ea> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x19337c000 - 0x1935e3fff VectorKit arm64 <18199cfd74023d25a78373077d95a1b7> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1935e4000 - 0x1936fffff VideoProcessing arm64 <82c801c75a1239c194fb24d90ab6b3d7> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
0x19374c000 - 0x19376bfff VisualVoicemail arm64 <b03b6d6b61463cc8bd9bac44daa418dd> /System/Library/PrivateFrameworks/VisualVoicemail.framework/VisualVoicemail
0x19376c000 - 0x1937c3fff VoiceMemos arm64 <d090e5c359633971a7e092800763b303> /System/Library/PrivateFrameworks/VoiceMemos.framework/VoiceMemos
0x1937c4000 - 0x1937e7fff VoiceServices arm64 <a0a36b119f0730a2853f3443749cb2db> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1937e8000 - 0x1937effff VoicemailStore arm64 <9b957a4fa43b3a32a1e80bf764a4c35d> /System/Library/PrivateFrameworks/VoicemailStore.framework/VoicemailStore
0x193810000 - 0x19383bfff WebBookmarks arm64 <bf000220d8bd3231ae480158c4d3c234> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x193854000 - 0x19466bfff WebCore arm64 <66ddd09eb2da35e29038d6719a4c63ea> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x19466c000 - 0x194743fff WebKit arm64 <9c98a57c8ca038b084202e5d49fd477f> /System/Library/PrivateFrameworks/WebKit.framework/WebKit
0x1947e0000 - 0x1947e3fff WirelessCoexManager arm64 <4875522386e93093ad530f0c4f0b0429> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager
0x1947e4000 - 0x19489ffff WirelessDiagnostics arm64 <f1814c2995ff35f4904a2f99e8dab7f7> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1948b0000 - 0x1948b7fff XPCKit arm64 <f0d8106c375a3a31b0c723345fee0b46> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x1948b8000 - 0x1948c3fff XPCObjects arm64 <f9c20f3bd0563beaa8bb15e6b519a8ff> /System/Library/PrivateFrameworks/XPCObjects.framework/XPCObjects
0x194a90000 - 0x194abbfff iCalendar arm64 <086125dcc3ae380baa099a3eeee7d41c> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x194ac4000 - 0x194b0ffff iTunesStore arm64 <c07ed8c4e07c3ac5b70e1177b3f7dbe9> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x194b10000 - 0x194ce3fff iTunesStoreUI arm64 <4b0b2ae77e5e345eb7215cdd69498656> /System/Library/PrivateFrameworks/iTunesStoreUI.framework/iTunesStoreUI
0x195430000 - 0x19545bfff libAWDProtobufFacetimeiMessage.dylib arm64 <1aca30d63fad3952bad8e3ddccb55c2a> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
0x195478000 - 0x1954a3fff libAWDProtobufMMCS.dylib arm64 <1698cc90743c33c4a200f30fa4c76e8d> /usr/lib/libAWDProtobufMMCS.dylib
0x1956dc000 - 0x1956e3fff libAWDProtobufVPN.dylib arm64 <027d87be60693ec4a88b1d5f02044f8b> /usr/lib/libAWDProtobufVPN.dylib
0x1956e4000 - 0x195717fff libAWDProtobufWifi.dylib arm64 <3c1ce2e5ddcc3c42bf17835c11c525b8> /usr/lib/libAWDProtobufWifi.dylib
0x195864000 - 0x195867fff libAXSafeCategoryBundle.dylib arm64 <2dbc8cd25fe934a78c5e283efdbcd43e> /usr/lib/libAXSafeCategoryBundle.dylib
0x195868000 - 0x19586ffff libAXSpeechManager.dylib arm64 <9c6ecdbd0830352bb8e372ff572f7995> /usr/lib/libAXSpeechManager.dylib
0x195870000 - 0x195877fff libAccessibility.dylib arm64 <bd5252e1a3e5313a89db7f3f14f97c0d> /usr/lib/libAccessibility.dylib
0x195a9c000 - 0x195ab7fff libCRFSuite.dylib arm64 <7fcd5659cad938d8a2b313ae3d2869f8> /usr/lib/libCRFSuite.dylib
0x195ac8000 - 0x195acbfff libIOAccessoryManager.dylib arm64 <0fbf1d2a08d6363f948fd6856efa4669> /usr/lib/libIOAccessoryManager.dylib
0x195ad8000 - 0x195adbfff libMobileCheckpoint.dylib arm64 <f8a8a73a6fc33e52ad25a3abff7f52c7> /usr/lib/libMobileCheckpoint.dylib
0x195adc000 - 0x195af7fff libMobileGestalt.dylib arm64 <f9532e83118b34ae93b26fc83c1aa025> /usr/lib/libMobileGestalt.dylib
0x195af8000 - 0x195afffff libMobileGestaltExtensions.dylib arm64 <5d844fd8121e3a2d8c5c8b90d8af5778> /usr/lib/libMobileGestaltExtensions.dylib
0x195b1c000 - 0x195b1ffff libSystem.B.dylib arm64 <97b4e1a18d813d80b19542f744b66d3a> /usr/lib/libSystem.B.dylib
0x195b98000 - 0x195bcbfff libTelephonyUtilDynamic.dylib arm64 <cc02a3516565329bb9d32a800e797221> /usr/lib/libTelephonyUtilDynamic.dylib
0x195cdc000 - 0x195d07fff libarchive.2.dylib arm64 <fb9dc90b485c3fe0a64cb97850b805c3> /usr/lib/libarchive.2.dylib
0x195d08000 - 0x195d3bfff libauthinstall.dylib arm64 <8bc6eabafbff327584815033b161f0c8> /usr/lib/libauthinstall.dylib
0x195d3c000 - 0x195d4ffff libbsm.0.dylib arm64 <0d1329085a4034a391c91a1a26f0edeb> /usr/lib/libbsm.0.dylib
0x195d50000 - 0x195d5ffff libbz2.1.0.dylib arm64 <b36b43728509368e88ec6b6ee84d908f> /usr/lib/libbz2.1.0.dylib
0x195d60000 - 0x195db7fff libc++.1.dylib arm64 <d3503ec58f423704ba80272da35040cc> /usr/lib/libc++.1.dylib
0x195db8000 - 0x195dd7fff libc++abi.dylib arm64 <8961fed30cb53617aceeb468f1008b47> /usr/lib/libc++abi.dylib
0x195df0000 - 0x195dfbfff libcupolicy.dylib arm64 <6193dc29dcfe3842b70e41b8b53e6556> /usr/lib/libcupolicy.dylib
0x195e64000 - 0x195f57fff libiconv.2.dylib arm64 <f8cb8b81c9823b1b8be4a37c42176e77> /usr/lib/libiconv.2.dylib
0x195f58000 - 0x196117fff libicucore.A.dylib arm64 <aaaa6ebe88a23c5db4f817fbacedfb1e> /usr/lib/libicucore.A.dylib
0x196124000 - 0x196127fff liblangid.dylib arm64 <e99668aaa98e3996bbf3853add95c62c> /usr/lib/liblangid.dylib
0x196128000 - 0x196137fff liblockdown.dylib arm64 <388524b0b6de31c4b7b095f28b47ebf3> /usr/lib/liblockdown.dylib
0x196138000 - 0x196153fff liblzma.5.dylib arm64 <210058165fb73893a77ec5d06807e28d> /usr/lib/liblzma.5.dylib
0x1964c0000 - 0x1964d7fff libmis.dylib arm64 <498a5f54dfa3370faf0ee38ec2ca901c> /usr/lib/libmis.dylib
0x19650c000 - 0x1966c3fff libobjc.A.dylib arm64 <524f9ce80c9436e6a922142294f5115f> /usr/lib/libobjc.A.dylib
0x19673c000 - 0x1967bbfff libprotobuf.dylib arm64 <f20e007fad2832f28647c079f9d58bec> /usr/lib/libprotobuf.dylib
0x1967bc000 - 0x1967dbfff libresolv.9.dylib arm64 <b0a3240055c936cd82ff002c2350591a> /usr/lib/libresolv.9.dylib
0x196808000 - 0x19680bfff libsp.dylib arm64 <ca83f3114ce1389cb97ae99f3f0cf337> /usr/lib/libsp.dylib
0x19680c000 - 0x1968cbfff libsqlite3.dylib arm64 <9868c31f5c073eebb4ecc17726b49b5d> /usr/lib/libsqlite3.dylib
0x1968cc000 - 0x19691ffff libstdc++.6.dylib arm64 <c2ff3ca5ae1230ccb77b558fd94d30fb> /usr/lib/libstdc++.6.dylib
0x196920000 - 0x196953fff libtidy.A.dylib arm64 <beba6903cf443197ad16493d875f8cad> /usr/lib/libtidy.A.dylib
0x196954000 - 0x196957fff libutil.dylib arm64 <a2c88cce912634dda45c8fa596c9ef0c> /usr/lib/libutil.dylib
0x196958000 - 0x196a43fff libxml2.2.dylib arm64 <ccaabe2877c03d398b42e629a2767e94> /usr/lib/libxml2.2.dylib
0x196a44000 - 0x196a6ffff libxslt.1.dylib arm64 <f933fe6721723f6299945927a9ad0d5e> /usr/lib/libxslt.1.dylib
0x196a70000 - 0x196a83fff libz.1.dylib arm64 <28f48666a0f03dc697c756d142dee0f4> /usr/lib/libz.1.dylib
0x196a84000 - 0x196a8bfff libcache.dylib arm64 <c5466acb826f3995b8187283aa160a83> /usr/lib/system/libcache.dylib
0x196a8c000 - 0x196a97fff libcommonCrypto.dylib arm64 <5b75c92c15f23510afe75f4c8feddbf9> /usr/lib/system/libcommonCrypto.dylib
0x196a98000 - 0x196a9bfff libcompiler_rt.dylib arm64 <b5dda2d4c149348db49512fa47680b75> /usr/lib/system/libcompiler_rt.dylib
0x196a9c000 - 0x196aa3fff libcopyfile.dylib arm64 <c574439b8aac3da494851dd4d2ae045d> /usr/lib/system/libcopyfile.dylib
0x196aa4000 - 0x196ae3fff libcorecrypto.dylib arm64 <87d86047d77c3ec7ad24cdfbc8a2f1f8> /usr/lib/system/libcorecrypto.dylib
0x196ae4000 - 0x196afffff libdispatch.dylib arm64 <eee84c83cd283590bbac8f50e57c0321> /usr/lib/system/libdispatch.dylib
0x196b00000 - 0x196b03fff libdyld.dylib arm64 <315864e397783fed95e9a5c1654c5e80> /usr/lib/system/libdyld.dylib
0x196b04000 - 0x196b0bfff liblaunch.dylib arm64 <59c667773cc23fa598d6bf8fece69849> /usr/lib/system/liblaunch.dylib
0x196b0c000 - 0x196b13fff libmacho.dylib arm64 <9fc1c4398fcf324fb6271ce5ec374477> /usr/lib/system/libmacho.dylib
0x196b14000 - 0x196b17fff libremovefile.dylib arm64 <bbdfda68a5a53ee5947f473e2a5536d5> /usr/lib/system/libremovefile.dylib
0x196b18000 - 0x196b2bfff libsystem_asl.dylib arm64 <f0493c144ac830e1b4c7019639bcd43d> /usr/lib/system/libsystem_asl.dylib
0x196b2c000 - 0x196b2ffff libsystem_blocks.dylib arm64 <d3accf6da8613827a79b0857a16121cb> /usr/lib/system/libsystem_blocks.dylib
0x196b30000 - 0x196baffff libsystem_c.dylib arm64 <1128ed21281a3953b8ee4d3fcf08843a> /usr/lib/system/libsystem_c.dylib
0x196bb0000 - 0x196bb3fff libsystem_configuration.dylib arm64 <b63245076dee36188b5f5bd1c831ca95> /usr/lib/system/libsystem_configuration.dylib
0x196bb4000 - 0x196bbffff libsystem_dnssd.dylib arm64 <6a7623fd683a3492a313690b30a6b5f3> /usr/lib/system/libsystem_dnssd.dylib
0x196bc0000 - 0x196be3fff libsystem_info.dylib arm64 <f694e5a5e3973b049b5447363aaa1834> /usr/lib/system/libsystem_info.dylib
0x196be4000 - 0x196c03fff libsystem_kernel.dylib arm64 <62e992db941432b19fb88aef8a3cf46c> /usr/lib/system/libsystem_kernel.dylib
0x196c04000 - 0x196c23fff libsystem_m.dylib arm64 <5d8cff5e9593327a8d12b9591f8bfc59> /usr/lib/system/libsystem_m.dylib
0x196c24000 - 0x196c3ffff libsystem_malloc.dylib arm64 <37c94c4c394237e8985f39d8d4340339> /usr/lib/system/libsystem_malloc.dylib
0x196c40000 - 0x196c67fff libsystem_network.dylib arm64 <a6f939169447323da521525a78ba818c> /usr/lib/system/libsystem_network.dylib
0x196c68000 - 0x196c73fff libsystem_notify.dylib arm64 <207be190e81f378f886b0c7fc2654336> /usr/lib/system/libsystem_notify.dylib
0x196c74000 - 0x196c7bfff libsystem_platform.dylib arm64 <6049676e1a743e169a0b1b32300250ac> /usr/lib/system/libsystem_platform.dylib
0x196c7c000 - 0x196c83fff libsystem_pthread.dylib arm64 <6309e01b424732428c06f7b268a329ca> /usr/lib/system/libsystem_pthread.dylib
0x196c84000 - 0x196c87fff libsystem_sandbox.dylib arm64 <abfbb3d224523ce6b5b4e4ecdce797c8> /usr/lib/system/libsystem_sandbox.dylib
0x196c88000 - 0x196c8bfff libsystem_stats.dylib arm64 <b84d5ea525fb37baa8c31a5b2b7c3abf> /usr/lib/system/libsystem_stats.dylib
0x196c8c000 - 0x196c93fff libunwind.dylib arm64 <e625b58c79813068b48c43ca6c406263> /usr/lib/system/libunwind.dylib
0x196c94000 - 0x196cb7fff libxpc.dylib arm64 <c8da27197ba23857be7494c6d41e4481> /usr/lib/system/libxpc.dylib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment