uh sure, ill upload the .m file for the delegate, the Xcode version is Xcode 11 and running on iOS 13.0, 13.1, and, iOS 12.2.4
//
// AppDelegate.m
// Score
//
// Created by James Biser on 7/10/19.
// Copyright (c) 2019 James Biser. All rights reserved.
//
#import "AppDelegate.h"
#import "InfoView.h"
#define SYSTEM_VERSION_GRATERTHAN_OR_EQUALTO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
//#define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending)
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
BOOL shouldPerformAdditionalDelegateHandling = YES;
if([[UIApplicationShortcutItem class] respondsToSelector:@selector(new)]){
[self configDynamicShortcutItems];
// If a shortcut was launched, display its information and take the appropriate action
UIApplicationShortcutItem *shortcutItem = [launchOptions objectForKeyedSubscript:UIApplicationLaunchOptionsShortcutItemKey];
if(shortcutItem)
{
// When the app launch at first time, this block can not called.
[self handleShortCutItem:shortcutItem];
// This will block "performActionForShortcutItem:completionHandler" from being called.
shouldPerformAdditionalDelegateHandling = NO;
}else{
// normal app launch process without quick action
[self launchWithoutQuickAction];
}
}else{
// Less than iOS9 or later
[self launchWithoutQuickAction];
}
#pragma mark - done with 3D Touch Support
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
// Override point for customization after application launch.
self.window.backgroundColor = [UIColor blackColor];
//
// if (@available(iOS 13.0, *)) {
// self.window.backgroundColor = [UIColor systemBackgroundColor];
// } else {
// self.window.backgroundColor = [UIColor blackColor];
//
// }
//
// [self.window makeKeyAndVisible];
// MainViewController *mainView = [[MainViewController alloc] initWithNibName:@"MainViewController" bundle:nil];
//
//
// UINavigationController *mainNavController = [[UINavigationController alloc] initWithRootViewController:mainView];
// [self.window setRootViewController:mainNavController];
return shouldPerformAdditionalDelegateHandling;
}
-(void)launchWithoutQuickAction{
MainViewController *vc = [[MainViewController alloc] initWithNibName:@"MainViewController" bundle:nil];
self.window.rootViewController = vc;
[self.window makeKeyAndVisible];
}
- (void)applicationWillResignActive:(UIApplication *)application
{
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
// Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}
- (void)applicationDidEnterBackground:(UIApplication *)application
{
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
// Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}
- (void)applicationDidBecomeActive:(UIApplication *)application
{
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}
- (void)applicationWillTerminate:(UIApplication *)application
{
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}
//- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler{
//
//
//}
- (void)configDynamicShortcutItems {
// config image shortcut items
// if you want to use custom image in app bundles, use iconWithTemplateImageName method
UIApplicationShortcutIcon *shortcutSearchIcon = [UIApplicationShortcutIcon iconWithType:UIApplicationShortcutIconTypeSearch];
UIApplicationShortcutIcon *shortcutFavoriteIcon = [UIApplicationShortcutIcon iconWithType:UIApplicationShortcutIconTypeFavorite];
UIApplicationShortcutItem *shortcutSearch = [[UIApplicationShortcutItem alloc]
initWithType:@"com.jamesbiser.Score.Favorite"
localizedTitle:@"Scout"
localizedSubtitle:nil
icon:shortcutSearchIcon
userInfo:nil];
UIApplicationShortcutItem *shortcutFavorite = [[UIApplicationShortcutItem alloc]
initWithType:@"com.jamesbiser.Score.Favorite"
localizedTitle:@"Timer"
localizedSubtitle:nil
icon:shortcutFavoriteIcon
userInfo:nil];
// add all items to an array
NSArray *items = @[shortcutSearch, shortcutFavorite];
// add the array to our app
[UIApplication sharedApplication].shortcutItems = items;
}
- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler{
BOOL handledShortCutItem = [self handleShortCutItem:shortcutItem];
completionHandler(handledShortCutItem);
}
- (BOOL)handleShortCutItem : (UIApplicationShortcutItem *)shortcutItem{
BOOL handled = NO;
NSString *bundleId = [NSBundle mainBundle].bundleIdentifier;
NSString *shortcutSearch = [NSString stringWithFormat:@"%@.Favorite", bundleId];
NSString *shortcutFavorite = [NSString stringWithFormat:@"%@.Favorite", bundleId];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
if ([shortcutItem.type isEqualToString:shortcutSearch]) {
handled = YES;
ScoutView *vcq = [[ScoutView alloc] initWithNibName:@"ScoutView" bundle:nil];
self.window.rootViewController = vcq;
[self.window makeKeyAndVisible];
}
else if ([shortcutItem.type isEqualToString:shortcutFavorite]) {
handled = YES;
Incident Identifier: 822D2AFD-CFF3-41F4-90DA-89FFAE7259B3
Beta Identifier: 8CAD133E-5E18-417E-A7C0-397941376503
Hardware Model: iPhone8,4
Process: Score [1652]
Path: /private/var/containers/Bundle/Application/E955DB03-4FAE-4955-B1DC-E6CC1C029FBE/Score.app/Score
Identifier: com.jamesbiser.Score
Version: 47 (3.0)
AppStoreTools: 11A1002b
Beta: YES
Code Type: ARM-64 (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.jamesbiser.Score [1114]
Date/Time: 2019-09-22 20:44:34.4063 -0400
Launch Time: 2019-09-22 20:44:34.2810 -0400
OS Version: iPhone OS 13.1 (17A5821e)
Release Type: Beta
Baseband Version: 9.00.00
Report Version: 104
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 0
Last Exception Backtrace:
0 CoreFoundation 0x187dd3b64 __exceptionPreprocess + 220 (NSException.m:199)
1 libobjc.A.dylib 0x187afc0a4 objc_exception_throw + 56 (objc-exception.mm:565)
2 UIKitCore 0x18bf267d4 +[UIStoryboard storyboardWithName:bundle:] + 776 (UIStoryboard.m:0)
3 Score 0x102fe5608 -[AppDelegate handleShortCutItem:] + 228 (AppDelegate.m:171)
4 Score 0x102fe4fc4 -[AppDelegate application:didFinishLaunchingWithOptions:] + 168 (AppDelegate.m:32)
5 UIKitCore 0x18bdcdb48 -[UIApplication _handleDelegateCallbacksWithOptions:isSuspended:restoreState:] + 340 (UIApplication.m:2246)
6 UIKitCore 0x18bdcf918 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 5076 (UIApplication.m:2633)
7 UIKitCore 0x18bdd4ee0 -[UIApplication _runWithMainScene:transitionContext:completion:] + 1304 (UIApplication.m:4176)
8 UIKitCore 0x18b5b44cc -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 148 (_UISceneLifecycleMultiplexer.m:386)
9 UIKitCore 0x18ba43194 _UIScenePerformActionsWithLifecycleActionMask + 100 (_UISceneLifecycleState.m:109)
10 UIKitCore 0x18b5b4fb0 __101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransiti... + 196 (_UISceneLifecycleMultiplexer.m:499)
11 UIKitCore 0x18b5b4a0c -[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] + 296 (_UISceneLifecycleMultiplexer.m:448)
12 UIKitCore 0x18b5b4dd8 -[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionSto... + 728 (_UISceneLifecycleMultiplexer.m:498)
13 UIKitCore 0x18b5b469c -[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] + 336 (_UISceneLifecycleMultiplexer.m:404)
14 UIKitCore 0x18b5b896c __186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsFo... + 160 (_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction.m:98)
15 UIKitCore 0x18b976608 +[BSAnimationSettings(UIKit) tryAnimatingWithSettings:actions:completion:] + 824 (BSAnimationSettings+UIKit.m:50)
16 UIKitCore 0x18ba5c354 _UISceneSettingsDiffActionPerformChangesWithTransitionContext + 244 (_UISceneSettingsDiffAction.m:43)
17 UIKitCore 0x18b5b86c0 __186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsFo... + 136 (_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction.m:87)
18 UIKitCore 0x18ba5c250 _UISceneSettingsDiffActionPerformActionsWithDelayForTransitionContext + 100 (_UISceneSettingsDiffAction.m:35)
19 UIKitCore 0x18b5b852c -[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUISc... + 376 (_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction.m:85)
20 UIKitCore 0x18b42f1f0 __64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke + 636 (UIScene.m:1426)
21 UIKitCore 0x18b42dd58 -[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] + 248 (UIScene.m:1159)
22 UIKitCore 0x18b42ef28 -[UIScene scene:didUpdateWithDiff:transitionContext:completion:] + 220 (UIScene.m:1403)
23 UIKitCore 0x18bdd3260 -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 548 (UIApplication.m:3725)
24 UIKitCore 0x18b996c74 -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 360 (UIApplicationSceneClientAgent.m:45)
25 FrontBoardServices 0x18ce55900 -[FBSSceneImpl _callOutQueue_agent_didCreateWithTransitionContext:completion:] + 436 (FBSSceneImpl.m:444)
26 FrontBoardServices 0x18ce7a984 __86-[FBSWorkspaceScenesClient sceneID:createWithParameters:transitionContext:completion:]_block_... + 100 (FBSWorkspaceScenesClient.m:318)
27 FrontBoardServices 0x18ce6011c -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 232 (FBSWorkspace.m:357)
28 FrontBoardServices 0x18ce7a640 __86-[FBSWorkspaceScenesClient sceneID:createWithParameters:transitionContext:completion:]_block_... + 312 (FBSWorkspaceScenesClient.m:317)
29 libdispatch.dylib 0x187aa1184 _dispatch_client_callout + 16 (object.m:495)
30 libdispatch.dylib 0x187a4a038 _dispatch_block_invoke_direct$VARIANT$mp + 224 (queue.c:463)
31 FrontBoardServices 0x18ce9f564 __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 40 (FBSSerialQueue.m:173)
32 FrontBoardServices 0x18ce9f230 -[FBSSerialQueue _queue_performNextIfPossible] + 404 (FBSSerialQueue.m:216)
33 FrontBoardServices 0x18ce9f758 -[FBSSerialQueue _performNextFromRunLoopSource] + 28 (FBSSerialQueue.m:247)
34 CoreFoundation 0x187d519b8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24 (CFRunLoop.c:1922)
35 CoreFoundation 0x187d51910 __CFRunLoopDoSource0 + 80 (CFRunLoop.c:1956)
36 CoreFoundation 0x187d510a8 __CFRunLoopDoSources0 + 180 (CFRunLoop.c:1992)
37 CoreFoundation 0x187d4c1f4 __CFRunLoopRun + 1080 (CFRunLoop.c:2882)
38 CoreFoundation 0x187d4ba94 CFRunLoopRunSpecific + 464 (CFRunLoop.c:3192)
39 GraphicsServices 0x191b8f328 GSEventRunModal + 104 (GSEvent.c:2246)
40 UIKitCore 0x18bdd70f4 UIApplicationMain + 1936 (UIApplication.m:4719)
41 Score 0x102fea2b0 main + 88 (main.m:16)
42 libdyld.dylib 0x187bd63f4 start + 4
Thread 0 name:
Thread 0 Crashed:
0 libsystem_kernel.dylib 0x0000000187bcbebc __pthread_kill + 8
1 libsystem_pthread.dylib 0x0000000187ae7790 pthread_kill$VARIANT$mp + 112 (pthread.c:1456)
2 libsystem_c.dylib 0x0000000187a3b824 abort + 100 (abort.c:110)
3 libc++abi.dylib 0x0000000187b947d4 abort_message + 128 (abort_message.cpp:76)
4 libc++abi.dylib 0x0000000187b949c4 demangling_terminate_handler() + 296 (cxa_default_handlers.cpp:66)
5 libobjc.A.dylib 0x0000000187afc358 _objc_terminate() + 124 (objc-exception.mm:701)
6 libc++abi.dylib 0x0000000187ba1304 std::__terminate(void (*)()) + 16 (cxa_handlers.cpp:59)
7 libc++abi.dylib 0x0000000187ba129c std::terminate() + 44 (cxa_handlers.cpp:87)
8 libdispatch.dylib 0x0000000187aa1198 _dispatch_client_callout + 36 (object.m:498)
9 libdispatch.dylib 0x0000000187a4a038 _dispatch_block_invoke_direct$VARIANT$mp + 224 (queue.c:463)
10 FrontBoardServices 0x000000018ce9f564 __FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 40 (FBSSerialQueue.m:173)
11 FrontBoardServices 0x000000018ce9f230 -[FBSSerialQueue _queue_performNextIfPossible] + 404 (FBSSerialQueue.m:216)
12 FrontBoardServices 0x000000018ce9f758 -[FBSSerialQueue _performNextFromRunLoopSource] + 28 (FBSSerialQueue.m:247)
13 CoreFoundation 0x0000000187d519b8 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24 (CFRunLoop.c:1922)
14 CoreFoundation 0x0000000187d51910 __CFRunLoopDoSource0 + 80 (CFRunLoop.c:1956)
15 CoreFoundation 0x0000000187d510a8 __CFRunLoopDoSources0 + 180 (CFRunLoop.c:1992)
16 CoreFoundation 0x0000000187d4c1f4 __CFRunLoopRun + 1080 (CFRunLoop.c:2882)
17 CoreFoundation 0x0000000187d4ba94 CFRunLoopRunSpecific + 464 (CFRunLoop.c:3192)
18 GraphicsServices 0x0000000191b8f328 GSEventRunModal + 104 (GSEvent.c:2246)
19 UIKitCore 0x000000018bdd70f4 UIApplicationMain + 1936 (UIApplication.m:4719)
20 Score 0x0000000102fea2b0 main + 88 (main.m:16)
21 libdyld.dylib 0x0000000187bd63f4 start + 4
Thread 1:
0 libsystem_pthread.dylib 0x0000000187af3ad8 start_wqthread + 0
Thread 2:
0 libsystem_pthread.dylib 0x0000000187af3ad8 start_wqthread + 0
Thread 3:
0 libsystem_pthread.dylib 0x0000000187af3ad8 start_wqthread + 0
Thread 4:
0 libsystem_pthread.dylib 0x0000000187af3ad8 start_wqthread + 0
Thread 5 name:
Thread 5:
0 libsystem_kernel.dylib 0x0000000187baa5f0 mach_msg_trap + 8
1 libsystem_kernel.dylib 0x0000000187ba9a5c mach_msg + 72 (mach_msg.c:103)
2 CoreFoundation 0x0000000187d51240 __CFRunLoopServiceMachPort + 216 (CFRunLoop.c:2575)
3 CoreFoundation 0x0000000187d4c360 __CFRunLoopRun + 1444 (CFRunLoop.c:2931)
4 CoreFoundation 0x0000000187d4ba94 CFRunLoopRunSpecific + 464 (CFRunLoop.c:3192)
5 Foundation 0x000000018808ba04 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228 (NSRunLoop.m:374)
6 Foundation 0x000000018808b8e4 -[NSRunLoop(NSRunLoop) runUntilDate:] + 88 (NSRunLoop.m:421)
7 UIKitCore 0x000000018be6e27c -[UIEventFetcher threadMain] + 152 (UIEventFetcher.m:636)
8 Foundation 0x00000001881bc0f0 __NSThread__start__ + 848 (NSThread.m:724)
9 libsystem_pthread.dylib 0x0000000187af01ec _pthread_start + 124 (pthread.c:895)
10 libsystem_pthread.dylib 0x0000000187af3aec thread_start + 8
Thread 0 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000
x4: 0x0000000187ba45d8 x5: 0x000000016ce224e0 x6: 0x000000000000006e x7: 0xffffffffffffffec
x8: 0x00000001030c5800 x9: 0x0000000187aebb5c x10: 0x0000000187ae7720 x11: 0x000000000000000b
x12: 0x00000001be314080 x13: 0x0000000000000001 x14: 0x0000000000000010 x15: 0x0000000000000034
x16: 0x0000000000000148 x17: 0x0000000000000000 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x0000000000000407 x21: 0x000000016ce224e0 x22: 0x00000001030c58e0 x23: 0x00000001030c58e0
x24: 0x0000000000001a03 x25: 0x0000000000000001 x26: 0x00000002815d4508 x27: 0x000000016ce22cb0
x28: 0x000000016ce23b18 fp: 0x000000016ce22440 lr: 0x0000000187ae7790
sp: 0x000000016ce22420 pc: 0x0000000187bcbebc cpsr: 0x40000000
esr: 0x56000080 Address size fault
Binary Images:
0x102fdc000 - 0x102feffff Score arm64 /var/containers/Bundle/Application/E955DB03-4FAE-4955-B1DC-E6CC1C029FBE/Score.app/Score
0x10305c000 - 0x1030bffff dyld arm64 <124dae2ba6da3f9d875f6cf8f574a05b> /usr/lib/dyld
0x1031a4000 - 0x1031affff libobjc-trampolines.dylib arm64 <3b7044910ddf354a9a7f5c045bafae92> /usr/lib/libobjc-trampolines.dylib
0x18797e000 - 0x187994fff libsystem_trace.dylib arm64 <76d6ae97a71836029396b8d111a9af42> /usr/lib/system/libsystem_trace.dylib
0x187995000 - 0x1879c6fff libxpc.dylib arm64 /usr/lib/system/libxpc.dylib
0x1879c7000 - 0x1879c7fff libsystem_blocks.dylib arm64 /usr/lib/system/libsystem_blocks.dylib
0x1879c8000 - 0x187a44fff libsystem_c.dylib arm64 <4a45ac78c3c13b7b9c97d337525f6c57> /usr/lib/system/libsystem_c.dylib
0x187a45000 - 0x187ab9fff libdispatch.dylib arm64 <53532d998f643828bbc55afcf14882d9> /usr/lib/system/libdispatch.dylib
0x187aba000 - 0x187ad9fff libsystem_malloc.dylib arm64 <10a2b0664fcb36a080442145ee1bb274> /usr/lib/system/libsystem_malloc.dylib
0x187ada000 - 0x187ae4fff libsystem_platform.dylib arm64 /usr/lib/system/libsystem_platform.dylib
0x187ae5000 - 0x187af5fff libsystem_pthread.dylib arm64 /usr/lib/system/libsystem_pthread.dylib
0x187af6000 - 0x187b26fff libobjc.A.dylib arm64 /usr/lib/libobjc.A.dylib
0x187b27000 - 0x187b92fff libcorecrypto.dylib arm64 <577bbaccf554377bbcf9ec5503693f37> /usr/lib/system/libcorecrypto.dylib
0x187b93000 - 0x187ba6fff libc++abi.dylib arm64 <8aee48f5079a3ba8a1d519f752c2aa1d> /usr/lib/libc++abi.dylib
0x187ba7000 - 0x187bd4fff libsystem_kernel.dylib arm64 <11952250fe8537bfbfa6a51053cd105b> /usr/lib/system/libsystem_kernel.dylib
0x187bd5000 - 0x187c06fff libdyld.dylib arm64 <34199ecbc11a386f9aa312ea7cd5e78d> /usr/lib/system/libdyld.dylib
0x187c07000 - 0x187c0efff libsystem_darwin.dylib arm64 <20f959dda0a331d2afd40ec83ec34f99> /usr/lib/system/libsystem_darwin.dylib
0x187c0f000 - 0x187c65fff libc++.1.dylib arm64 /usr/lib/libc++.1.dylib
0x187c66000 - 0x187ca7fff libsystem_info.dylib arm64 /usr/lib/system/libsystem_info.dylib
0x187ca8000 - 0x18801cfff CoreFoundation arm64 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x18801d000 - 0x188083fff SystemConfiguration arm64 <6e93db7c77e23237b0a609640538d2ce> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x188084000 - 0x18833dfff Foundation arm64 <32c04a3cd431351aae6a1d87ee3cffb6> /System/Library/Frameworks/Foundation.framework/Foundation
0x18833e000 - 0x188370fff libCRFSuite.dylib arm64 <21284ad93df13511992c1f3270cf74f2> /usr/lib/libCRFSuite.dylib
0x188371000 - 0x1884e9fff CoreServices arm64 <2a67d63b98723640a34ab62ddbc11ba8> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1884ea000 - 0x18854bfff libSparse.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x18854c000 - 0x188a39fff ImageIO arm64 /System/Library/Frameworks/ImageIO.framework/ImageIO
0x188a3a000 - 0x188a3cfff ConstantClasses arm64 <5cdeafa5d7923e6bbeb9e7eb2f18dc75> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x188a3d000 - 0x188bd9fff CoreText arm64 /System/Library/Frameworks/CoreText.framework/CoreText
0x188bda000 - 0x188d04fff Security arm64 <29b54c0618bf35a9b4a9d4ee31aebb79> /System/Library/Frameworks/Security.framework/Security
0x188d05000 - 0x188da7fff IOKit arm64 <5a9da7eef4fa31a194ce43e5d8bd1c9f> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x188da8000 - 0x188dddfff libMobileGestalt.dylib arm64 /usr/lib/libMobileGestalt.dylib
0x188dde000 - 0x188e3afff libprotobuf.dylib arm64 <744f36bc681d386aae23ef4c21c78c94> /usr/lib/libprotobuf.dylib
0x188e3b000 - 0x188e4cfff libprotobuf-lite.dylib arm64 /usr/lib/libprotobuf-lite.dylib
0x188e4d000 - 0x18909efff libicucore.A.dylib arm64 <019f89e0c0403a04a89d0aef43d42263> /usr/lib/libicucore.A.dylib
0x1890c9000 - 0x189111fff WirelessDiagnostics arm64 <7ef30d71670c360d9467623e6af2bc36> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x189112000 - 0x18914bfff libAWDSupport.dylib arm64 <5191b02af81e3a31ab0b6acb855cd9cb> /usr/lib/libAWDSupport.dylib
0x18914c000 - 0x1895d2fff CoreAudio arm64 /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1895d3000 - 0x18989dfff CoreImage arm64 <44e52cad54433f0082c0546c33fdfa47> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x18989e000 - 0x18998cfff LanguageModeling arm64 <4d3c797d3f903e13acfb2418819e99dc> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x18998d000 - 0x1899d3fff Lexicon arm64 <4b47d5bb56c33d148ee0301d200cc4a0> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1899d4000 - 0x189b57fff libsqlite3.dylib arm64 <8fec96748db037f8ae1a7afff5589427> /usr/lib/libsqlite3.dylib
0x189b58000 - 0x189b87fff MobileKeyBag arm64 /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x189b88000 - 0x189b91fff libsystem_notify.dylib arm64 <8ace58d502a93a50b63c5f0b52b18364> /usr/lib/system/libsystem_notify.dylib
0x189b92000 - 0x189d5bfff CoreDuet arm64 /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x189d5c000 - 0x189e9dfff Montreal arm64 /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x189e9e000 - 0x189f85fff NLP arm64 <2bd0242404153e93a4da4aaf45eeeaa1> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x189f86000 - 0x189fa2fff CellularPlanManager arm64 /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x189fa3000 - 0x189fdffff AppSupport arm64 <28c0cfb7964637bb8d307dfc8e6e26c9> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x189fe0000 - 0x18a4acfff libnetwork.dylib arm64 /usr/lib/libnetwork.dylib
0x18a4ad000 - 0x18a5b6fff ManagedConfiguration arm64 /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x18a5b7000 - 0x18a5e1fff CoreServicesStore arm64 <1a5fffe4d2a03efe858a163b68783b23> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x18a5e2000 - 0x18a602fff UserManagement arm64 <20438ec040963b1189171f745c2ce9a2> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x18a603000 - 0x18a8bafff CoreML arm64 <1e10e3334772324387d1b1aab7773d0d> /System/Library/Frameworks/CoreML.framework/CoreML
0x18a8bb000 - 0x18a8d1fff ProtocolBuffer arm64 /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x18a8d2000 - 0x18a8ecfff CommonUtilities arm64 <88b52314a62037ca80f4c30922c33935> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x18a8ed000 - 0x18a8edfff libenergytrace.dylib arm64 /usr/lib/libenergytrace.dylib
0x18a8ee000 - 0x18a924fff RunningBoardServices arm64 <6851a95a013b307a946b9c5c7f704d08> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x18a925000 - 0x18a998fff BaseBoard arm64 /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x18a999000 - 0x18aedefff SiriTTS arm64 <1f22b738329e3a808aca52f819318c80> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x18aedf000 - 0x18af4dfff CoreLocation arm64 <264c72e5c4ce334b9ce19712c2ab382a> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x18af5b000 - 0x18afaefff Accounts arm64 <5499c98f4f72338c8bebafa6c8145ac5> /System/Library/Frameworks/Accounts.framework/Accounts
0x18afc0000 - 0x18b30afff CFNetwork arm64 <253b5b7482203d9090f033cdfa947aed> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x18b30b000 - 0x18b3eafff UIFoundation arm64 /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x18b3eb000 - 0x18c482fff UIKitCore arm64 <16f60e0542df3842a58e287b8b9c4db3> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x18c483000 - 0x18c490fff AssertionServices arm64 <5e950f0429f63a4eab88ff0257ec4f2e> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x18c491000 - 0x18c562fff CoreTelephony arm64 /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x18c563000 - 0x18c568fff AggregateDictionary arm64 <0ec454e99c54394e983dff0d0e795271> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x18c569000 - 0x18c57ffff libsystem_asl.dylib arm64 <19bb37afcd6a34bbb554f966c55cb5c8> /usr/lib/system/libsystem_asl.dylib
0x18c580000 - 0x18c5f7fff CloudDocs arm64 <4ecef51225583d32bd2b41fe0be720c7> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x18c5f8000 - 0x18c912fff CoreData arm64 /System/Library/Frameworks/CoreData.framework/CoreData
0x18c913000 - 0x18cb3bfff Vision arm64 <0880c45b7a263bdf83fb2101224331c9> /System/Library/Frameworks/Vision.framework/Vision
0x18cb3c000 - 0x18cb7ffff PhotoFoundation arm64 <1940c9024cbb3307a4cd4cc6a8c95597> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x18cb80000 - 0x18cbabfff BoardServices arm64 <81acf54130e93b5eaec39374a0cc2308> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x18cc5b000 - 0x18cc69fff libsystem_networkextension.dylib arm64 <132f6d28836831e9875a08eee60b82d4> /usr/lib/system/libsystem_networkextension.dylib
0x18cc6a000 - 0x18cc8afff CoreAnalytics arm64 /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x18cc8b000 - 0x18cdfbfff CloudKit arm64 /System/Library/Frameworks/CloudKit.framework/CloudKit
0x18cdfc000 - 0x18ce48fff SpringBoardServices arm64 <84c84d1418673da190d4f2791501f51e> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x18ce49000 - 0x18cebcfff FrontBoardServices arm64 /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x18cebd000 - 0x18cfd4fff Network arm64 /System/Library/Frameworks/Network.framework/Network
0x18d032000 - 0x18d039fff libsystem_symptoms.dylib arm64 <2523dc64462434508be596df49eec43b> /usr/lib/system/libsystem_symptoms.dylib
0x18d03a000 - 0x18debcfff GeoServices arm64 <32cb18bdf2f73033b81d7c69615ca70c> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x18debd000 - 0x18dec5fff TCC arm64 <40e26549f2f839b6894ff7f67f94fcf0> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x18dec6000 - 0x18df1ffff IMFoundation arm64 <8b68680891b13d5bb185254a8289920d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x18df20000 - 0x18e07efff CoreUtils arm64 /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x18e127000 - 0x18e174fff ImageCaptureCore arm64 /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x18e175000 - 0x18e17efff libsystem_containermanager.dylib arm64 /usr/lib/system/libsystem_containermanager.dylib
0x18e17f000 - 0x18e1f9fff AppleAccount arm64 <9dae58bd5c103132817fa2de9aeb45a9> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18e1fa000 - 0x18e215fff ApplePushService arm64 <4b76f5660a76317f8eb63bcd9ff484d0> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18e216000 - 0x18e2fffff IDS arm64 <7868952a677f3cf896cddd5cb3ebc282> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x18e300000 - 0x18e42cfff IDSFoundation arm64 /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x18e42d000 - 0x18e42efff libCTGreenTeaLogger.dylib arm64 <662172d8e02b3e4abe979014a98bce57> /usr/lib/libCTGreenTeaLogger.dylib
0x18e48f000 - 0x18e58cfff CoreMedia arm64 /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x18e58d000 - 0x18e59cfff UIKitServices arm64 <2ae585d95fd835eaaa9bd00c40b97cdc> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x18e59d000 - 0x18e5eefff BackBoardServices arm64 <85e95c5d62f53e779b360fd9959ee0e1> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x18e5ef000 - 0x18e837fff QuartzCore arm64 <13c18d8126f13ea38c5abe9ab9314c23> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x18e838000 - 0x18e9f5fff ColorSync arm64 <990172ef525c3910b1d48fc764298fdd> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x18e9f6000 - 0x18ef63fff CoreGraphics arm64 <7528e22df2583b598cfbf2daddb2b33a> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x18ef64000 - 0x18f094fff Contacts arm64 /System/Library/Frameworks/Contacts.framework/Contacts
0x18f095000 - 0x18f0c4fff UserNotifications arm64 /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x18f0c5000 - 0x18f0e8fff LocationSupport arm64 <471e5f50cabe333591b0adba0a1785f2> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x18f0e9000 - 0x18f238fff Sharing arm64 <61f385e901a43bb8b042a96ddad39b96> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x18f239000 - 0x18f7f2fff WebKit arm64 /System/Library/Frameworks/WebKit.framework/WebKit
0x18f7f3000 - 0x1913d6fff WebCore arm64 /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1913d7000 - 0x1913eefff libAccessibility.dylib arm64 /usr/lib/libAccessibility.dylib
0x1913ef000 - 0x1913fafff AXCoreUtilities arm64 <339d07db1bc030d5957623a156e0e3dc> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1913fb000 - 0x19146ffff ContactsFoundation arm64 /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x191470000 - 0x191484fff PowerLog arm64 <5920ad4f64b632bfb1d2aa4aae0b24eb> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x191485000 - 0x191496fff IOSurface arm64 /System/Library/Frameworks/IOSurface.framework/IOSurface
0x191497000 - 0x191b8bfff MediaToolbox arm64 /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x191b8c000 - 0x191b94fff GraphicsServices arm64 <4e2a4dd8fee93b979335d30a296ab931> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x191b95000 - 0x191c76fff AccessibilityUtilities arm64 /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x191c77000 - 0x191e4ffff AVFoundation arm64 /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x191e87000 - 0x191ed4fff MobileWiFi arm64 <4680b8f9f0193487a3dc717bf35b0f25> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x191ed5000 - 0x191eedfff MobileAsset arm64 <0e25726ff0343677a4abe0bbf377c375> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x191eee000 - 0x191efbfff libGSFont.dylib arm64 <50725d838dde3cdfb5363153e8723fde> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x191efc000 - 0x191f05fff FontServices arm64 <19ec319d14d23c569c715872ff24767d> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x191f06000 - 0x19204ffff libFontParser.dylib arm64 <8c014c31eb6e39f69d100a39fb395a09> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x192050000 - 0x192099fff AXRuntime arm64 /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x19209a000 - 0x19209cfff libAXSafeCategoryBundle.dylib arm64 <182c12f5108c3fdb934c471dd43e6e86> /usr/lib/libAXSafeCategoryBundle.dylib
0x19209d000 - 0x1921ddfff SearchFoundation arm64 <89d9f4d05604314893ded9c2f8eec553> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1921de000 - 0x1922fdfff Preferences arm64 <468bcf37a8c2329db056237bf9532cde> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1922fe000 - 0x19292afff PhotoLibraryServices arm64 <85e42dd662c53b0f89982f8b85024cdc> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x19292b000 - 0x192b8efff vImage arm64 <6213d129db8236b28a37a5c7a49b751c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x192b8f000 - 0x192d7bfff AudioToolbox arm64 <8c6d94dd09c937019ad5eb28ec40b88b> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x192d7c000 - 0x192db1fff libAudioToolboxUtility.dylib arm64 <8e261fad32a63ae49e9340f20f36e345> /usr/lib/libAudioToolboxUtility.dylib
0x192fca000 - 0x1931c4fff Photos arm64 <31824f0bea903c518cb2489b01ad84cd> /System/Library/Frameworks/Photos.framework/Photos
0x1931c5000 - 0x193255fff ShareSheet arm64 /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x19326a000 - 0x19331cfff PDFKit arm64 <3efe076d15fa304e99c241b765fe9fc1> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x19339a000 - 0x1933c6fff DocumentManager arm64 <6325facc3edd349688d1d9c5d8f291e8> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x19361f000 - 0x193691fff AuthKit arm64 <01b1406134a53448b8133b8d9ef9a60d> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x193692000 - 0x193a9ffff Intents arm64 <261bdb04df7a3a3c9b893d588e0b4474> /System/Library/Frameworks/Intents.framework/Intents
0x193ab5000 - 0x193c01fff WebKitLegacy arm64 /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x193c02000 - 0x193c6afff TextInput arm64 <9a18f0ed580d31be8b7a543701ac52e6> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x193c6b000 - 0x193ce7fff AXMediaUtilities arm64 <307233b150a737aa81fee097209a4c10> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
0x193ce8000 - 0x193cebfff XCTTargetBootstrap arm64 /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x193cec000 - 0x193da1fff CorePDF arm64 <029a0d2d1a1730f58211fd0e04741bd7> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x194195000 - 0x19449dfff AppleMediaServices arm64 <7fb4bf39712b3ace91448e9eed96f6d4> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x19449e000 - 0x1944c4fff CacheDelete arm64 /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1944c5000 - 0x194685fff CoreMotion arm64 <5a3835114c2b3e4f979df3fa280317af> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x194686000 - 0x194773fff AVFAudio arm64 <22f9485c895a3653aa09c284ab729b39> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x194992000 - 0x194a48fff CoreUI arm64 /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x194a6e000 - 0x194aa3fff CoreVideo arm64 <0554379d9857342f89a40597e34fa4c0> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x194aa4000 - 0x194cd0fff AudioToolboxCore arm64 <98e9143a6df532489e79b88b9108ae9d> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x194cd1000 - 0x194d15fff CoreDuetContext arm64 <051bce3e900738739a2fd7319303fb4a> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x194d16000 - 0x194d4ffff SetupAssistant arm64 <8fe8769701d43180ae18e3e5db3c7b46> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x194d50000 - 0x194e09fff TelephonyUtilities arm64 <5f6d16e1a4bb374e849b47d270f8aa11> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x194e0a000 - 0x194e34fff PlugInKit arm64 <3e2599a25fc23ff38f2d80cbca264ceb> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x19517c000 - 0x1952aafff AssistantServices arm64 /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1952ab000 - 0x19530bfff ProactiveSupport arm64 <0446070c96dd38fe9cb1a0652779917d> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x195545000 - 0x19555cfff PrototypeTools arm64 /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x19555d000 - 0x19564afff MediaExperience arm64 /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x19564b000 - 0x1958affff ********* arm64 /System/Library/PrivateFrameworks/*********.framework/*********
0x1961c7000 - 0x196295fff AVKit arm64 <85fecb163e123dbab692fb1a8a16b8be> /System/Library/Frameworks/AVKit.framework/AVKit
0x196296000 - 0x1962c4fff Pegasus arm64 /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1962c5000 - 0x1962c7fff libapp_launch_measurement.dylib arm64 <303d0a9b1fb8327b8a451455f97c98a7> /usr/lib/libapp_launch_measurement.dylib
0x1963a2000 - 0x196403fff CoreSpotlight arm64 <422dcede32773736b06b777f2a2e6553> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x196404000 - 0x196497fff AddressBookLegacy arm64 /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x196498000 - 0x1964a7fff CrashReporterSupport arm64 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1964a8000 - 0x1964bafff MobileBluetooth arm64 <143e09ce43ec331ca456883dafc69966> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1964bb000 - 0x196575fff LinkPresentation arm64 <47ac63bda1303880a5e9810e4b2d3678> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1965ab000 - 0x1965affff libsystem_configuration.dylib arm64 /usr/lib/system/libsystem_configuration.dylib
0x19678e000 - 0x19679cfff HangTracer arm64 <4de3d266e38a3ccfa426eec0da244677> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x19679d000 - 0x196802fff CoreNLP arm64 <96baf8adb6b63183b87433d5b2ac4d7c> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x196803000 - 0x196804fff liblangid.dylib arm64 /usr/lib/liblangid.dylib
0x196805000 - 0x197565fff JavaScriptCore arm64 /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x197566000 - 0x1975f3fff libTelephonyUtilDynamic.dylib arm64 <8059a275ddbf32699d6c4338d504e396> /usr/lib/libTelephonyUtilDynamic.dylib
0x197882000 - 0x19788bfff IOMobileFramebuffer arm64 <2e6b149b73e43a0ba6b775145476b4b7> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x197bd1000 - 0x197bebfff CoreMaterial arm64 /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x197bec000 - 0x197cd2fff libxml2.2.dylib arm64 /usr/lib/libxml2.2.dylib
0x199330000 - 0x19933afff SymptomAnalytics arm64 /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x19933b000 - 0x199383fff MetadataUtilities arm64 /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x199d12000 - 0x199f2cfff NetworkExtension arm64 /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x199f2d000 - 0x199f63fff DataDetectorsCore arm64 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x199f64000 - 0x199fc4fff CalendarFoundation arm64 <0302d81c801f3de08e901783ed1af0c1> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x199fc5000 - 0x19a0b7fff EventKit arm64 /System/Library/Frameworks/EventKit.framework/EventKit
0x19a0b8000 - 0x19a0ecfff MediaServices arm64 /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x19a52f000 - 0x19a56efff BiometricKit arm64 <0b7ca27dc96437c5a237bad69e422004> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x19a56f000 - 0x19a59afff PersistentConnection arm64 /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x19a59b000 - 0x19a5eefff CalendarDaemon arm64 <4e38d7d45f5e3a2880ef047780639d38> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x19a5ef000 - 0x19a685fff CalendarDatabase arm64 /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x19a686000 - 0x19a85bfff MediaRemote arm64 /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x19a85c000 - 0x19a864fff CorePhoneNumbers arm64 /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x19a875000 - 0x19a89afff DuetActivityScheduler arm64 <164a55ad33253c64a963f19e0464191b> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x19a99a000 - 0x19a9bcfff CoreSVG arm64 <66360f199f613dfb94ee6fa16611e46c> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x19a9bd000 - 0x19a9d6fff SymptomPresentationFeed arm64 <4d3e28474f3130b583a4cdff1865a41f> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x19a9d7000 - 0x19a9f4fff ProactiveEventTracker arm64 <0b3f2b8d405e3307ab54c4b59846b6bc> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x19a9f5000 - 0x19a9fffff MallocStackLogging arm64 /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x19aa00000 - 0x19aa94fff CoreSuggestions arm64 <929c0ae754ba3f3a9dea915e9a6cd1ab> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x19b467000 - 0x19b473fff BluetoothManager arm64 /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x19b474000 - 0x19b4a9fff CoreBluetooth arm64 <41ab9a592c843d16be8e1e56496f9607> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x19b4aa000 - 0x19b4acfff libsystem_sandbox.dylib arm64 <958f6ea382d63205831a5ec04317e987> /usr/lib/system/libsystem_sandbox.dylib
0x19b60b000 - 0x19b672fff Rapport arm64 /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x19b673000 - 0x19b69ffff OSAnalytics arm64 <3720718b2dab3a028fc230ce11aafb49> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x19b6a0000 - 0x19b6cdfff MobileInstallation arm64 <65bfa92a4a6a3da686cd99a0245f9290> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x19b6ce000 - 0x19b765fff Metal arm64 <13a2f96a9f0c31658dee426c670377e8> /System/Library/Frameworks/Metal.framework/Metal
0x19b766000 - 0x19b76cfff IOAccelerator arm64 <0ae3e07d068c30c090fd8ef0e35b0e2a> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x19b76d000 - 0x19b778fff MediaAccessibility arm64 <3b42f65cfdb53129855937cbc0264819> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x19b796000 - 0x19b79dfff libsystem_dnssd.dylib arm64 <4481e22160c33c6ca223b3f7f5117f95> /usr/lib/system/libsystem_dnssd.dylib
0x19b79e000 - 0x19b7a4fff PushKit arm64 <77918c49552e350daa1c5014fad5cac6> /System/Library/Frameworks/PushKit.framework/PushKit
0x19b7a5000 - 0x19b8a8fff FileProvider arm64 /System/Library/Frameworks/FileProvider.framework/FileProvider
0x19b8bc000 - 0x19b8bdfff BackgroundTaskAgent arm64 <8146b9ec07ba33b3914a04962e88cfc7> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
0x19b8be000 - 0x19b8c2fff LinguisticData arm64 /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x19b907000 - 0x19b9c2fff ************ arm64 <10b348f120523f55bb9aa218dc583d04> /System/Library/Frameworks/************.framework/************
0x19bf1c000 - 0x19bf24fff SymptomDiagnosticReporter arm64 /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x19bf25000 - 0x19bf27fff IOSurfaceAccelerator arm64 <53a406e1c38f3356b70590514753e67d> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x19bf28000 - 0x19bfd3fff AssetsLibraryServices arm64 <5326b05969793ea983374d71fdc63b97> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x19bfd4000 - 0x19c003fff DataAccessExpress arm64 /System/Library/PrivateFrameworks/DataAccessExpress.framewoAccessExpress
0x19c072000 - 0x19c087fff CoreFollowUp arm64 /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x19c091000 - 0x19c0a6fff libcoretls.dylib arm64 <5a07bd72b66e3c2c835273aeb989e13c> /usr/lib/libcoretls.dylib
0x19c0fc000 - 0x19c18bfff libate.dylib arm64 <02734cd986523e429c57174eeb941f45> /usr/lib/libate.dylib
0x19d443000 - 0x19d491fff FTServices arm64 <68c026ee76b63e73b64d37d979d530e1> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x19d542000 - 0x19d57bfff SAObjects arm64 <007c5ab2e8ff36fd9d7f26df542ccafb> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x19d62f000 - 0x19d63cfff DataMigration arm64 /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x19d7e1000 - 0x19d805fff IconServices arm64 <84188caedaa43f9d97706202e10300f5> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x19dc4e000 - 0x19dc4ffff WatchdogClient arm64 /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x19dc50000 - 0x19dc61fff libprequelite.dylib arm64 /usr/lib/libprequelite.dylib
0x19dc86000 - 0x19dc96fff CoreEmoji arm64 <84d3a1f7ade63c87811f8e8f0fc9834f> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x19dd28000 - 0x19dd75fff ClassKit arm64 /System/Library/Frameworks/ClassKit.framework/ClassKit
0x19dde2000 - 0x19ddecfff CPMS arm64 <3c3a5a2948633a4ea1aa2d281220df26> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x19dded000 - 0x19ddf5fff RTCReporting arm64 /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x19df4d000 - 0x19df99fff MobileBackup arm64 <092ad550b3a63cf0a16f8ce7603619ad> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x19e049000 - 0x19e050fff CoreTime arm64 <6c43bad18bec3dae91181150885641f1> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x19e236000 - 0x19e25ffff DistributedEvaluation arm64 <3b9e158feb0035968146164b679edfd2> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x19e5dd000 - 0x19e631fff ToneLibrary arm64 /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x19e8f4000 - 0x19e912fff AppConduit arm64 <3dd44f142aa13455a21699e68f9778cc> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x19e913000 - 0x19e92bfff IntlPreferences arm64 <46cdb61c69cf363eba98831820bc84c0> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x19ec8a000 - 0x19ed5bfff CoreBrightness arm64 <0eb43f8940d83b45897e6283a636558a> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x19ed5c000 - 0x19ed63fff libIOReport.dylib arm64 <389fc65cdcf33faebd4265b45fac04fa> /usr/lib/libIOReport.dylib
0x19eeef000 - 0x19f097fff libBNNS.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x19f098000 - 0x19f09efff StudyLog arm64 <5812ae2ccbc2328cafabde803362e4e4> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1a026f000 - 0x1a0293fff RTTUtilities arm64 /System/Library/PrivateFrameworks/RTTUtilities.framework/RTTUtilities
0x1a0294000 - 0x1a029bfff HearingCore arm64 <1c450a255ad136509ae419d32fffa523> /System/Library/PrivateFrameworks/HearingCore.framework/HearingCore
0x1a029c000 - 0x1a02affff LocalAuthentication arm64 /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1a02b0000 - 0x1a02b4fff CommunicationsFilter arm64 /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1a02d8000 - 0x1a02e3fff CaptiveNetwork arm64 <24e78df448653e6da8d7e2ab2fe8720d> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1a041f000 - 0x1a04d1fff libBLAS.dylib arm6
4 <11c48f9ade4f386e857187a58b741ec0> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1a04d2000 - 0x1a09a23cabb8be95553d9cb0f6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1ac244000 - 0x1ac257fff Engram arm64 <8e1a29b8307f3586b7d3e5471f675155> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1ac2cf000 - 0x1ac309fff DataDetectorsNaturalLanguage arm64 <3d57fad0768134d3ae6a6d61205c96be> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1ac5eb000 - 0x1ac5f3fff FSEvents arm64 /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1ac603000 - 0x1ac681fff CoreDAV arm64 <00db8df90f7b3ceea7ae2602ac6c8bab> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1acfc2000 - 0x1acfd2fff RemoteTextInput arm64 /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1acffb000 - 0x1ad02afff iCalendar arm64 <5d8c1264f5523ab8bd3622f55ca4333b> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1ad047000 - 0x1ad050fff CloudPhotoServices arm64 <1541d04b21ef301cb5a1ebbc5e4168ea> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1ad08f000 - 0x1ad0a3fff libLinearAlgebra.dylib arm64 <2d0a74ae23a83a6a9f72476a34249fb1> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1ad340000 - 0x1ad34efff CoreAUC arm64 /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1add40000 - 0x1add87fff PhysicsKit arm64 <0f34e316f24131b1a81f7b3c388e1fac> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1add88000 - 0x1addd9fff CorePrediction arm64 /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1ae20c000 - 0x1ae257fff SafariSafeBrowsing arm64 <9acd56260f873b37babc56a1ed93f0b6> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1ae6f3000 - 0x1ae711fff GenerationalStorage arm64 <39b863fda4af3147ba53392ee501d637> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1ae775000 - 0x1ae780fff PersonaKit arm64 <54761b45cd9e3d49998a9cfa6671cb38> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1aeb8e000 - 0x1aeb93fff kperf arm64 /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1aed5b000 - 0x1aed8bfff libpcap.A.dylib arm64 <5accf8de49c73eb6ad9857664587cc85> /usr/lib/libpcap.A.dylib
0x1af0b8000 - 0x1af152fff libvDSP.dylib arm64 <17cedcd634703db1947605912da5c153> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1af153000 - 0x1af17efff vCard arm64 <7e9f16bb3d323804b86f830d1373ae58> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1af1bf000 - 0x1af24afff SampleAnalysis arm64 <14ffe31954ed33c6aa0f8124d50a52ff> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1af24b000 - 0x1af255fff IntentsFoundation arm64 <1bd2f6d29cf4386080a32e221a628b48> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1af838000 - 0x1af870fff PhotosImagingFoundation arm64 <7139262cef5f3169a7a3027d1b0e2b30> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1af871000 - 0x1af893fff MediaConversionService arm64 <893619d031b43e8380a7046fc2603331> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1af894000 - 0x1af8b1fff MediaStream arm64 <3be6dc11c822338e87bd8d6cd514fb05> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1af8b2000 - 0x1af9adfff CoreMediaStream arm64 <65772544fb61370eaff94f3811e08192> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1afac4000 - 0x1afac4fff Accelerate arm64 <6e2f0eb242eb3d698c49d7b8937ce681> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1afac6000 - 0x1afde1fff libLAPACK.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1afde2000 - 0x1afde6fff libQuadrature.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1afde7000 - 0x1afe40fff libvMisc.dylib arm64 <21d14babf110318288e31fe54dcf2e51> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1afe41000 - 0x1afe41fff vecLib arm64 <2cf4dce3a72b3ddf9c1cc5a73120b032> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1affa7000 - 0x1afff7fff CoreMIDI arm64 <08e97050884a3de295fd8ccef56980c3> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1b01ff000 - 0x1b022cfff GSS arm64 /System/Library/Frameworks/GSS.framework/GSS
0x1b0240000 - 0x1b0271fff MPSCore arm64 <17e06095aa5a36b4b48f17aa7184388e> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1b0272000 - 0x1b02ebfff MPSImage arm64 <246e055e02803ae8b2cd9cf1e9a0ca94> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1b02ec000 - 0x1b030efff MPSMatrix arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1b030f000 - 0x1b0322fff MPSNDArray arm64 <5766c8a86ced3967adb71afabcb92186> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1b0323000 - 0x1b04b3fff MPSNeuralNetwork arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1b04b4000 - 0x1b04f9fff MPSRayIntersector arm64 <6c918c4ad7993fb0b79fb400dadea6de> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1b04fa000 - 0x1b04fafff MetalPerformanceShaders arm64 <2b3500489e1d39a99bfd5a78768635ba> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1b0507000 - 0x1b0507fff MobileCoreServices arm64 /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1b0512000 - 0x1b0513fff libCVMSPluginSupport.dylib arm64 <09df31518bc532f6b93e3293ebbecc6e> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1b0514000 - 0x1b051afff libCoreFSCache.dylib arm64 <9124822dde6736d39372b4000c4e0a50> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1b051b000 - 0x1b0520fff libCoreVMClient.dylib arm64 /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1b0554000 - 0x1b0588fff QuickLookThumbnailing arm64 /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1b08da000 - 0x1b09dafff SoundAnalysis arm64 <6457cbf5aed73826be39df54dc7456af> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1b09dd000 - 0x1b09ddfff UIKit arm64 /System/Library/Frameworks/UIKit.framework/UIKit
0x1b0c24000 - 0x1b0d6cfff ANECompiler arm64 /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1b0d6d000 - 0x1b0d7dfff ANEServices arm64 /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1b0e35000 - 0x1b0e96fff ICE arm64 <22a4b0f2dddd306d996bfea8b225386f> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework/ICE
0x1b0e97000 - 0x1b0e97fff LegacyHandle arm64 <35e6d6b06efd31cf91dc09e0a780f9c2> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework/LegacyHandle
0x1b0e98000 - 0x1b0e9efff SimpleKeyExchange arm64 /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
0x1b0e9f000 - 0x1b0e9ffff snatmap arm64 <3af54f43c97630b386cafe6baa4b92a3> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework/snatmap
0x1b0f1a000 - 0x1b0f52fff AccessibilitySharedSupport arm64 <4fc5808429d9343a92c2b8491736ff13> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x1b0fae000 - 0x1b0fb9fff AccountSettings arm64 <9ce956225b603653b9fddf8a2d8c7342> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x1b1733000 - 0x1b18e4fff AppleCVA arm64 /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1b1957000 - 0x1b1965fff AppleFSCompression arm64 <22cc9916c7783153a3560dee264f88b2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1b1966000 - 0x1b1970fff AppleIDAuthSupport arm64 /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1b1971000 - 0x1b19b2fff AppleJPEG arm64 <7af1e729e422352cb2b8807631fd1249> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1b19ce000 - 0x1b19dffff AppleNeuralEngine arm64 <7bfd7e562a7b305180f96abe65dc8f9f> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1b19e6000 - 0x1b1a09fff AppleSauce arm64 <3b68ccd2848f3a4794f2c82a40c84602> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1b1b3e000 - 0x1b1b92fff AutoLoop arm64 <806bfc8e6b923552b92878ea66c044f0> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop
0x1b1c00000 - 0x1b1c30fff Bom arm64 /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1b2683000 - 0x1b268afff CommonAuth arm64 /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1b2828000 - 0x1b2911fff CoreAppleCVA arm64 /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1b2a70000 - 0x1b2a74fff CoreOptimization arm64 /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1b2b8b000 - 0x1b2b96fff DeviceIdentity arm64 /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1b2d21000 - 0x1b2d3bfff DocumentManagerCore arm64 <204b15dbd9243767954f545d7dbd77a3> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1b2df0000 - 0x1b343afff Espresso arm64 /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1b36fd000 - 0x1b3b0ffff FaceCore arm64 <4801375de2883496b94b6b502b883b71> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1b3be0000 - 0x1b3bf4fff libGSFontCache.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1b3c58000 - 0x1b3c64fff libhvf.dylib arm64 <4a75f7bdd38d328c81226497327ea96d> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1b3c7a000 - 0x1b3c8efff Futhark arm64 /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1b494c000 - 0x1b4958fff GraphVisualizer arm64 /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1b526c000 - 0x1b52dbfff Heimdal arm64 <15565b0fe7c53d2aaeecbcf8933e6f98> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1b5748000 - 0x1b57b2fff InertiaCam arm64 <2e604dedc293336aa97873fc796621cf> /System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam
0x1b57f8000 - 0x1b57fefff InternationalSupport arm64 <43c29c2565ab31cabf0ec20f173d83b9> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b5ab5000 - 0x1b5ab5fff Marco arm64 <36912836d89a3e1793ff5e89d66b5de1> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1b5f9a000 - 0x1b5facfff MobileDeviceLink arm64 <946575ab2b933758ace22ddb4486f60d> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1b5fbe000 - 0x1b5fc7fff MobileStorage arm64 <231734da06543f73a43d8c51f15ab071> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x1b625d000 - 0x1b629cfff OTSVG arm64 <4a41770543393ddd9cd1287b59e170ea> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1b68ea000 - 0x1b68eafff PhoneNumbers arm64 /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1b8197000 - 0x1b81a3fff RemoteServiceDiscovery arm64 <07cf3451c73b3a67ac94f18e6899c98c> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery
0x1b81fc000 - 0x1b8200fff RevealCore arm64 <4500810ac5e93f8ab014c7698dbe4b91> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1b8384000 - 0x1b8390fff SetupAssistantSupport arm64 /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1b83ab000 - 0x1b83abfff SignpostMetrics arm64 <2e194e7399673e8f9d9f3c6921be5ecf> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1b83d9000 - 0x1b83f5fff SiriInstrumentation arm64 <11c9cdad831e37fdb25a59f0ded85b72> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1b8b62000 - 0x1b8c7ffff TextRecognition arm64 <7453a45746363a1b88723c658221eaed> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1b8c80000 - 0x1b8d22fff TextureIO arm64 /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1b9b40000 - 0x1ba024fff libwebrtc.dylib arm64 <02efe34e5758375abbe03f39af4c26bb> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1ba0ec000 - 0x1ba0f9fff WirelessCoexManager arm64 <034410dbe9d83d80893292d88273a7c8> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager
0x1ba1ab000 - 0x1ba1b3fff kperfdata arm64 <8fb109ffb2d4306cb6e4167a1ba6d372> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1ba1b4000 - 0x1ba1fbfff ktrace arm64 <9502d018d4a5321ea2fb3f63d22911a2> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1ba214000 - 0x1ba220fff perfdata arm64 /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1ba221000 - 0x1ba22ffff zudp arm64 /System/Library/PrivateFrameworks/zudp.framework/zudp
0x1ba489000 - 0x1ba489fff libAWDProtobufFacetimeiMessage.dylib arm64 <0fd647ba2cbc3962b5ed26fd484c1a41> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
0x1ba4ff000 - 0x1ba7f8fff libAWDSupportFramework.dylib arm64 <117fe6734b6a3d8bb504e70da7a73503> /usr/lib/libAWDSupportFramework.dylib
0x1ba9a7000 - 0x1ba9b1fff libChineseTokenizer.dylib arm64 /usr/lib/libChineseTokenizer.dylib
0x1ba9d6000 - 0x1bab89fff libFosl_dynamic.dylib arm64 /usr/lib/libFosl_dynamic.dylib
0x1bac06000 - 0x1bac0cfff libMatch.1.dylib arm64 <92e29ab79b0032fe85ddbf63d471f401> /usr/lib/libMatch.1.dylib
0x1baca4000 - 0x1baca5fff libSystem.B.dylib arm64 <5f4abf846c8e38118449cf730c90efa3> /usr/lib/libSystem.B.dylib
0x1bacae000 - 0x1bacb0fff libThaiTokenizer.dylib arm64 /usr/lib/libThaiTokenizer.dylib
0x1bada5000 - 0x1badbafff libapple_nghttp2.dylib arm64 <908df0a2e8273fa3a06b17be2d15df8a> /usr/lib/libapple_nghttp2.dylib
0x1bae22000 - 0x1bae32fff libbsm.0.dylib arm64 <228e747ea31d310e93b44442f6418271> /usr/lib/libbsm.0.dylib
0x1bae33000 - 0x1bae3ffff libbz2.1.0.dylib arm64 /usr/lib/libbz2.1.0.dylib
0x1bae40000 - 0x1bae40fff libcharset.1.dylib arm64 <02518ff5dc233fbdba25dd5b7d30af90> /usr/lib/libcharset.1.dylib
0x1bae41000 - 0x1bae52fff libcmph.dylib arm64 <9fd98eb70b4531299913c5582ecaf51f> /usr/lib/libcmph.dylib
0x1bae53000 - 0x1bae6afff libcompression.dylib arm64 /usr/lib/libcompression.dylib
0x1bae6b000 - 0x1bae6cfff libcoretls_cfhelpers.dylib arm64 /usr/lib/libcoretls_cfhelpers.dylib
0x1bae6d000 - 0x1bae73fff libcupolicy.dylib arm64 /usr/lib/libcupolicy.dylib
0x1baeb3000 - 0x1baebcfff libdscsym.dylib arm64 <07127d52ed17375e91c1c4985eaa600e> /usr/lib/libdscsym.dylib
0x1baebd000 - 0x1baed9fff libedit.3.dylib arm64 <96e3ecdeeac838bfa4d8f2755876ae11> /usr/lib/libedit.3.dylib
0x1baef3000 - 0x1baef8fff libheimdal-asn1.dylib arm64 <8359908af7c13ffda20aa470b4627a9b> /usr/lib/libheimdal-asn1.dylib
0x1baef9000 - 0x1bafeafff libiconv.2.dylib arm64 <08b87edd867d37849c363433f5315611> /usr/lib/libiconv.2.dylib
0x1bb000000 - 0x1bb00bfff liblockdown.dylib arm64 /usr/lib/liblockdown.dylib
0x1bb025000 - 0x1bb03dfff liblzma.5.dylib arm64 /usr/lib/liblzma.5.dylib
0x1bb3b0000 - 0x1bb3dffff libncurses.5.4.dylib arm64 /usr/lib/libncurses.5.4.dylib
0x1bb3e0000 - 0x1bb3f4fff libnetworkextension.dylib arm64 <81a327c764cb3efbbd01c26f608144e6> /usr/lib/libnetworkextension.dylib
0x1bb77e000 - 0x1bb796fff libresolv.9.dylib arm64 <1ffc9b2c456d385c835d444f5fb2f14b> /usr/lib/libresolv.9.dylib
0x1bb797000 - 0x1bb799fff libsandbox.1.dylib arm64 /usr/lib/libsandbox.1.dylib
0x1bb7a0000 - 0x1bb7d1fff libtidy.A.dylib arm64 <65712b1ec0ef36f29345a012400a9c9e> /usr/lib/libtidy.A.dylib
0x1bb7d9000 - 0x1bb7dcfff libutil.dylib arm64 <660cf35f63ec39d0858d1d96c85bfbc5> /usr/lib/libutil.dylib
0x1bb80a000 - 0x1bb81bfff libz.1.dylib arm64 <2f8d5b67a39f3c9bbfd326b6dab9aa7f> /usr/lib/libz.1.dylib
0x1bbc51000 - 0x1bbc56fff libcache.dylib arm64 /usr/lib/system/libcache.dylib
0x1bbc57000 - 0x1bbc63fff libcommonCrypto.dylib arm64 <4fbeb47423c7346a93b0d622952304e3> /usr/lib/system/libcommonCrypto.dylib
0x1bbc64000 - 0x1bbc68fff libcompiler_rt.dylib arm64 <3cce5296edeb3c4f8b8b0eb192d4f571> /usr/lib/system/libcompiler_rt.dylib
0x1bbd3d000 - 0x1bbd3dfff liblaunch.dylib arm64 <16ae5c93c3403c6d87e53c6f69dd0d75> /usr/lib/system/liblaunch.dylib
0x1bbd3e000 - 0x1bbd43fff libmacho.dylib arm64 <3226fd6639113602a519f21d8de56aa6> /usr/lib/system/libmacho.dylib
0x1bbd44000 - 0x1bbd46fff libremovefile.dylib arm64 /usr/lib/system/libremovefile.dylib
0x1bbd47000 - 0x1bbd48fff libsystem_featureflags.dylib arm64 <6b0f568f943f38ce80412a15b9d91407> /usr/lib/system/libsystem_featureflags.dylib
0x1bbd49000 - 0x1bbd76fff libsystem_m.dylib arm64 <7979bb09f9e434bbbf0e4123a0d9681f> /usr/lib/system/libsystem_m.dylib
0x1bbd77000 - 0x1bbd7cfff libunwind.dylib arm64 /usr/lib/system/libunwind.dylib
0x1bbf00000 - 0x1bbf11fff AccessibilitySettingsLoader arm64 /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x1bc030000 - 0x1bc097fff NanoRegistry arm64 <7781ea664e60349d9b19ead6cbe8e033> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1bc098000 - 0x1bc0a5fff NanoPreferencesSync arm64 <1f589512697e37b790b3a020f940f5ce> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
EOF
InfoView *vc = [storyboard instantiateViewControllerWithIdentifier:@"info"];
self.window.rootViewController = vc;
[self.window makeKeyAndVisible];
}
return handled;
}
@end