dpa99c / cordova-plugin-firebasex

Cordova plugin for Google Firebase
MIT License
571 stars 462 forks source link

iOS Crash Reports #385

Closed EinfachHans closed 4 years ago

EinfachHans commented 4 years ago

Bug report

We just released our iOS App yesterday and received some Crashes, which seems to be related to this Plugin.

Current behavior:

Crash 1

-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m, line 389

SIGBUS

MAIN THREAD - CRASHED

libobjc.A.dylib
objc_getAssociatedObject
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] AppDelegate+FirebasePlugin.m:389

Crash 2

-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m, line 455

SIGBUS

MAIN THREAD - CRASHED

WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:455
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460
WayGuard
-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] AppDelegate+FirebasePlugin.m:460

As the second Crash happened to my Chef, i can told you what he told me: A Push appeared, he clicked on it -> App Crash.

The "Stack Traces" doesn't seem to be very helpful, so if i can give you any more information, please told me which.

Environment information

Runtime issue

dpa99c commented 4 years ago

Crash #1 stacktrace indicates the crash arises here when calling willPresentNotification on the delegate. Interesting that it results in a native crash as it's wrapped in a try/catch block - maybe the crash is happening on a different thread?

Similarly Crash #2 seems to arise here which is a similar call to didReceiveNotificationResponse.

Does it seem to be a specific notification message that caused the crash? If so, are are able to provide the content of the notification message? I'm wondering if it's something in the notification payload which is causing the crash.

EinfachHans commented 4 years ago

I have like 5 "Background" Threads per Crash that are included in the Crash Report. Should i post them here as well?

Our Push Notifications are all very similar, where the body is a JSON that includes a pushCode and a title, which the App handles. I know on which Push the App crashed at my chef, but i don't think it is very different from the others. It's JSON with these Keys:

{
    code: number;
    title: string;
    name: string;
    photoUrl: string;
    phonenumber: string;
    userId;
    companionshipId: string;
}
dpa99c commented 4 years ago

Your notification structure doesn't make sense to me - is this the data section of the message? I was expecting a JSON structure like this or this?

EinfachHans commented 4 years ago

Oh yeah, so this JSON i mentioned is the data Section i think.

In the onMessageReceived().subscribe(payload) {} i access it via payload.message.

dpa99c commented 4 years ago

The data section of the message is not related to the cause of the crash, it's the other sections.

For example, if you specified a custom sound file that did not exist within your app, that could lead to a native crash.

So I'd need to see the full FCM message structure in order to investigate further.

How are you sending the notification message? Are you using the FCM v1 API?

If so, try using the built-in messaging client in the example project to send your message as this uses the Firebase Admin SDK which carries out validation on the message structure.

EinfachHans commented 4 years ago

Our Backend is written in Scala currently and uses the normal Java Api: "com.google.firebase" "firebase-admin" "6.11.0"

This specific Push is send two Times (One Notification Push (notificationPush is true) and one Data Push (notificationPush is false)). We set the following "apnsConfig" parameter:

val builder = ApnsConfig
      .builder()
      .putHeader("apns-priority","10")
       // the data JSON i mentioned before
      .putAllCustomData(keyValue.mapValues(_.asInstanceOf[Object]).asJava)
      .setAps(getAps(notificationPush).build())
    builder.build()

// the getAps() does this:
val builder = Aps.builder()
    if (notificationPush) {
      builder.setAlert("") // some string
      builder.setSound("companionship_request_sound.caf")
      builder.setBadge(badge) // some badge value
      builder.setCategory("companionship request")
      builder.setContentAvailable(false)
    } else {
      builder.setContentAvailable(true)
    }

When the App doesn't crash it plays the Sound so the Soundfile is available

dpa99c commented 4 years ago

Without an exact notification message values that can be used to replicate the exact same scenario, it's impossible for me to identify the cause of your crash. I'm using this plugin in numerous production apps with 100k's of users and not encountering such crashes so I would speculate that a bad data value passed to the plugin which it uses to construct a foreground notification can cause such a crash as I've seen this before e.g. #364

My suggestion is to play with your notification generation code (e.g. with/without content-available) to try to reliably reproduce the crash and identify the bad value.

EinfachHans commented 4 years ago

Okay i understand what you're saying, but if the Message is the Problem, shouldn't the App crash every time the Push is received?

dpa99c commented 4 years ago

As demonstrated in the code references above, the code entry points in the plugin are wrapped in try/catch statements to try to catch and handled exceptions to prevent them cascading upwards to cause an app crash. However, due to the multithreaded nature of mobile operating systems, this will only catch exceptions raised on that thread. The native iOS notification center likely opens the notification on a different thread so when bad message data is sent to it, the try/catch is no use as the exception is raised on another thread.

There is an open feature issue to add message payload validation to the plugin to prevent this kind of bad data reaching the native notification center but implementing this will be a fair amount of work. This is free, open-source software so if you have need of such functionality, please consider implementing it yourself and feeding it back via a Pull Request.

Vishwa17 commented 4 years ago

@dpa99c While using this plugin, there is some issue while submitting the app to the App store, the issue is related the 'uiwebview deprecated ios'. Can you suggest

capc0 commented 4 years ago

@dpa99c we are also seeing these crashes since our last app update.

EXC_BAD_ACCESS KERN_PROTECTION_FAILURE 0x000000016d5b7fa0

Crashed: com.apple.main-thread
0  libobjc.A.dylib                0x1ab764f50 objc_getAssociatedObject + 4
1  ADASMA                         0x102819f8c -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 387 (AppDelegate+FirebasePlugin.m:387)
2  ADASMA                         0x102819f8c -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 387 (AppDelegate+FirebasePlugin.m:387)
...

and

Crashed: com.apple.main-thread
0  ADASMA                         0x100d9a704 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 453 (AppDelegate+FirebasePlugin.m:453)
1  ADASMA                         0x100d9a784 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 458 (AppDelegate+FirebasePlugin.m:458

Using firebasex@8.0.1 Our previous app release also used 8.0.1 with no problems.

We transfered the app from one iOS developer team to another - in that process also changed APN keys etc.. Could this be related to the cause of the crash?

dpa99c commented 4 years ago

I've had no reports of such crashes in my production apps using this plugin and been unable to repro it using the example project.

So what's needed is a reliable test case that can reproduce these crashes (ideally within the example project) or more detailed information about the crashes on user devices (e.g. is it limit to specific iOS versions or devices).

Without such information it's not possible to narrow down the cause of the crashes.

capc0 commented 4 years ago

FYI: We updated to 9.1.1 and are still seeing these crashes

I know there is no way for you to fix this without proper reproduction. I will inform you once I know more.

capc0 commented 4 years ago

@dpa99c we are also seeing these crashes since our last app update.

EXC_BAD_ACCESS KERN_PROTECTION_FAILURE 0x000000016d5b7fa0

Crashed: com.apple.main-thread
0  libobjc.A.dylib                0x1ab764f50 objc_getAssociatedObject + 4
1  ADASMA                         0x102819f8c -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 387 (AppDelegate+FirebasePlugin.m:387)
2  ADASMA                         0x102819f8c -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 387 (AppDelegate+FirebasePlugin.m:387)
...

and

Crashed: com.apple.main-thread
0  ADASMA                         0x100d9a704 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 453 (AppDelegate+FirebasePlugin.m:453)
1  ADASMA                         0x100d9a784 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 458 (AppDelegate+FirebasePlugin.m:458

Using firebasex@8.0.1 Our previous app release also used 8.0.1 with no problems.

We transfered the app from one iOS developer team to another - in that process also changed APN keys etc.. Could this be related to the cause of the crash?

I was providing wrong information here. We were using 6.1.0 before without problems. Since 8.0.1 the bug appears.

dpa99c commented 4 years ago

@capc0 thanks for the update. I think it's fairly likely that the crashes are being caused by a particular value being passed into userNotificationCenter:willPresentNotification:withCompletionHandler but I've been unable to produce a test case which causes the crash. So resolve this I really need a sample FCM message payload that can be used to repro the crash reliably.

eun-choi commented 4 years ago

same issue. ios app crash 3case:

-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 389

-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 455

-[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460

capc0 commented 4 years ago

I am still unable to reproduce this issue. All the info I have so far:

Here is some of the code I use:

Sending notifications in my NodeJS backend via firebase-admin

await messaging().sendToTopic(topic, {
            notification: {
                title,
                body,
                sound: 'default',
                badge: `${badgeCount || 0}`
            }
        });

title and body can be dynamic string values.

In my mobile app project I log the messages via and do not do anything else with them

this.firebase.onMessageReceived().subscribe(async(msg) => {
            this.loggerService.log(`[FCM] received a message in ${(msg && msg.tap) ? 'background' : 'foreground'}`);
        });

the XCode log show the following native log (I changed the message id and sender id numbers)

FirebasePlugin[native] LOG: willPresentNotification: {
    aps =     {
        alert =         {
            body = "example body";
            title = "example title";
        };
        badge = 14;
        sound = default;
    };
    "gcm.message_id" = 159000000000;
    "google.c.a.e" = 1;
    "google.c.sender.id" = 1500000000;
    messageType = notification;
}

possibly related issues from other projects using firebase push notifications

I dont know if this helps at all, but thats all I can get for now.

eun-choi commented 4 years ago

@capc0 thank you for the information. I was reproduced in a similar situation.

App crashes are caused in the following situations:

  1. Launch the app and Firebase subscription. -> .onMessageReceived().subscribe(() => {})
  2. Use the app in foreground for a long time.
  3. Leave the app in background for a long time.
  4. Send push notification.
  5. Click on push notification.
  6. Crash when app goes to foreground state.
dpa99c commented 4 years ago

@eun-choi thanks for the additional info. Sounds like it will be hard to reproduce reliably but I will have a go when I get a bit of time.

samhoogantink commented 4 years ago

Hi! I'm facing the same issue, when I'm sending a push notification via the Firebase console or https://cordova-plugin-fcm.appspot.com/. It's happening to 30% of my users. Here's my crash log:

Crashed: com.apple.main-thread 0 libsystem_blocks.dylib 0x194aa18c8 _Block_copy + 38 1 CoreFoundation 0x194d9344c -[NSMallocBlock retain] + 20 2 {APP NAME} 0x100ffbccc -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 455 (AppDelegate+FirebasePlugin.m:455) 3 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 4 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 5 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 6 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 7 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 8 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 9 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 10 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 11 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 12 {APP NAME} 0x100ffbd04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 460 (AppDelegate+FirebasePlugin.m:460) 13 UIKitCore 0x198f71fb4 -[UIApplication _handleNonLaunchSpecificActions:forScene:withTransitionContext:completion:] + 3892 14 UIKitCore 0x198f56568 -[UIApplication _callInitializationDelegatesWithActions:forCanvas:payload:fromOriginatingProcess:] + 4408 15 UIKitCore 0x198f5c084 -[UIApplication _runWithMainScene:transitionContext:completion:] + 1244 16 UIKitCore 0x19870346c -[_UISceneLifecycleMultiplexer completeApplicationLaunchWithFBSScene:transitionContext:] + 148 17 UIKitCore 0x198bb2a38 _UIScenePerformActionsWithLifecycleActionMask + 100 18 UIKitCore 0x198703f50 __101-[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:]_block_invoke + 196 19 UIKitCore 0x1987039a4 -[_UISceneLifecycleMultiplexer _performBlock:withApplicationOfDeactivationReasons:fromReasons:] + 288 20 UIKitCore 0x198703d7c -[_UISceneLifecycleMultiplexer _evalTransitionToSettings:fromSettings:forceExit:withTransitionStore:] + 740 21 UIKitCore 0x19870363c -[_UISceneLifecycleMultiplexer uiScene:transitionedFromState:withTransitionContext:] + 336 22 UIKitCore 0x198707ad8 186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke_2 + 188 23 UIKitCore 0x198ad6dd4 +[BSAnimationSettings(UIKit) tryAnimatingWithSettings:actions:completion:] + 812 24 UIKitCore 0x198bcbe7c _UISceneSettingsDiffActionPerformChangesWithTransitionContext + 244 25 UIKitCore 0x198707834 186-[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:]_block_invoke + 140 26 UIKitCore 0x198bcbd78 _UISceneSettingsDiffActionPerformActionsWithDelayForTransitionContext + 100 27 UIKitCore 0x19870769c -[_UIWindowSceneFBSSceneTransitionContextDrivenLifecycleSettingsDiffAction _performActionsForUIScene:withUpdatedFBSScene:settingsDiff:fromSettings:transitionContext:lifecycleActionType:] + 376 28 UIKitCore 0x198576f2c 64-[UIScene scene:didUpdateWithDiff:transitionContext:completion:]_block_invoke + 636 29 UIKitCore 0x198575acc -[UIScene _emitSceneSettingsUpdateResponseForCompletion:afterSceneUpdateWork:] + 248 30 UIKitCore 0x198576c64 -[UIScene scene:didUpdateWithDiff:transitionContext:completion:] + 220 31 UIKitCore 0x198f5a2d0 -[UIApplication workspace:didCreateScene:withTransitionContext:completion:] + 540 32 UIKitCore 0x198afc284 -[UIApplicationSceneClientAgent scene:didInitializeWithEvent:completion:] + 360 33 FrontBoardServices 0x19a02d20c -[FBSSceneImpl _callOutQueue_agent_didCreateWithTransitionContext:completion:] + 424 34 FrontBoardServices 0x19a051d84 86-[FBSWorkspaceScenesClient sceneID:createWithParameters:transitionContext:completion:]_block_invoke.154 + 100 35 FrontBoardServices 0x19a0377ec -[FBSWorkspace _calloutQueue_executeCalloutFromSource:withBlock:] + 232 36 FrontBoardServices 0x19a051a40 __86-[FBSWorkspaceScenesClient sceneID:createWithParameters:transitionContext:completion:]_block_invoke + 312 37 libdispatch.dylib 0x194b79524 _dispatch_client_callout + 16 38 libdispatch.dylib 0x194b22434 _dispatch_block_invoke_direct$VARIANT$mp + 224 39 FrontBoardServices 0x19a076440 FBSSERIALQUEUE_IS_CALLING_OUT_TO_A_BLOCK__ + 40 40 FrontBoardServices 0x19a07610c -[FBSSerialQueue _queue_performNextIfPossible] + 404 41 FrontBoardServices 0x19a076634 -[FBSSerialQueue _performNextFromRunLoopSource] + 28 42 CoreFoundation 0x194e31b64 CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION + 24 43 CoreFoundation 0x194e31abc CFRunLoopDoSource0 + 80 44 CoreFoundation 0x194e31244 CFRunLoopDoSources0 + 184 45 CoreFoundation 0x194e2c274 __CFRunLoopRun + 788 46 CoreFoundation 0x194e2bc34 CFRunLoopRunSpecific + 424 47 GraphicsServices 0x19ef7538c GSEventRunModal + 160 48 UIKitCore 0x198f5e22c UIApplicationMain + 1932 49 {APP NAME} 0x100fcd4b0 main + 32 (main.m:32) 50 libdyld.dylib 0x194cb3800 start + 4

Versions

@angular/core 8.2.14 cordova-plugin-firebasex 9.0.1-cli

Just wanted to inform you that more people are having this issue :) Thanks for the awesome plugin!

Crypt0Graphic commented 4 years ago

I thought it's about new versions but i got same errors with downgrade (7.0.1 & 8.0.1). Crash rate is %1.5 due to Firebase.

sengoontoh commented 4 years ago

Any thoughts on how to work-around this issue?

switchstance-devs commented 4 years ago

I never had such issues with cordova-plugin-firebase but after switching to cordova-plugin-firebasex so far single crash occurred (app is still in a test phase). Versions:

cordova-plugin-firebasex 9.1.2-cli cordova-ios 5.1.1

Crash log:

Thread 0 name: Thread 0 Crashed: 0 AppName 0x00000001043e694c -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 52 (AppDelegate+FirebasePlugin.m:387) 1 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 2 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 3 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 4 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 5 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 6 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 7 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 8 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 9 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 10 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 11 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 12 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 13 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 14 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 15 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 16 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 17 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 18 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 19 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 20 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 21 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 22 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392) 23 AppName 0x00000001043e6998 -[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] + 128 (AppDelegate+FirebasePlugin.m:392)

Here is JSON sent to FCM:

{
   "message":{
      "data":{
         "notification_id":"1",
         "notification_type":"1"
      },
      "notification":{
         "title":"Test",
         "body":"Teeeeeeesty test"
      },
      "token":"XXXX"
   }
}
TiBz0u commented 4 years ago

Hi,

Do you have any news about this problem?

We encounter the same error on multiple devices. It happens always at the first notification after app update through TestFlight (crash). After app restart, it works and no crash.

We tested to send notification from our server first (app in foreground only) => Crash We tested basic notification from firebase => Same result.

Tested with FirebaseX 8.0.1 and 10.1.0-cli. (for information, getToken() on this last version don't give a token back on iOS (kind of void function [no callback return]). However, we can get the token if we subscribe to the onTokenRefresh observable).

Thanks in advance.

(Ionic info below)



   Ionic CLI                     : 6.10.1
   Ionic Framework               : @ionic/angular 4.11.10
   @angular-devkit/build-angular : 0.13.9
   @angular-devkit/schematics    : 7.2.4
   @angular/cli                  : 7.3.9
   @ionic/angular-toolkit        : 1.4.1

Cordova:

   Cordova CLI       : 9.0.0 (cordova-lib@9.0.1)
   Cordova Platforms : android, ios 5.1.1
   Cordova Plugins   : cordova-plugin-ionic-keyboard 2.1.3, cordova-plugin-ionic-webview 4.2.1, (and 27 other plugins)

Utility:

   cordova-res : not installed
   native-run  : not installed

System:

   Android SDK Tools : 26.1.1
   ios-deploy        : 1.10.0
   ios-sim           : 8.0.2
   NodeJS            : v10.20.1
   npm               : 6.10.0
   OS                : macOS Catalina
   Xcode             : Xcode 11.4.1 Build version 11E503a
epetre commented 4 years ago

I'm wondering if it could have something to do with: https://github.com/OneSignal/OneSignal-Cordova-SDK/issues/648

For me it started happening when I mixed both plugins together. I'm just not even able to reproduce this myself, but users ~10% on iOS seem to be having this crash upon tapping a push.

Could it be an incompatibility with the OneSignal plugin?

switchstance-devs commented 4 years ago

Could it be an incompatibility with the OneSignal plugin?

@epetre We don't use that plugin and experience same issue.

We encounter the same error on multiple devices. It happens always at the first notification after app update through TestFlight (crash). After app restart, it works and no crash.

@thibaultv I can confirm we can replicate the issue this way. After updating app through TestFlight taping on first notification causes crash. After app restart everything works fine.

EinfachHans commented 4 years ago

@dpa99c I'm getting so many Crash Reports at the Moment: Bildschirmfoto 2020-07-21 um 08 32 26

Please is it possible to investigate in this somehow?

dpa99c commented 4 years ago

@HansKrywaa I still haven't been able to reproduce the crashes.

Since the crash is originating on a different execution thread than that on which the plugin is running, the try/catch is failing to catch the exception hence the crash.

Without a 100% reliable test case in which the crash can be reproduced in a debug build running in Xcode, I can't see a way forward to tracking down the cause of the issue. For example, reproducing the crash by updating a release build via TestFlight is no use because there is no way to debug the exception which caused the crash.

Therefore if anyone is able to reproduce a crash 100% reliably in a debug build, then please share the exact steps so I can repro the exception and investigate the cause.

Bhupendra123 commented 4 years ago

Could it be an incompatibility with the OneSignal plugin?

@epetre We don't use that plugin and experience same issue.

We encounter the same error on multiple devices. It happens always at the first notification after app update through TestFlight (crash). After app restart, it works and no crash.

@thibaultv I can confirm we can replicate the issue this way. After updating app through TestFlight taping on first notification causes crash. After app restart everything works fine.

I have similar issue too. It is very serious issue to fix because we will have to update app and if app will crash like it they will stop using app. Below are logs -

log output ``` Incident Identifier: 52294CDA-66BA-43AE-BC96-E91CD7B3D010 Hardware Model: iPhone10,6 Process: GetEDone [1070] Path: /private/var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/GetEDone Identifier: com.soft-l.getEDone Version: 1.6 (1.1) AppStoreTools: 11E707 AppVariant: 1:iPhone10,6:13 Beta: YES Code Type: ARM-64 (Native) Role: Foreground Parent Process: launchd [1] Coalition: com.soft-l.getEDone [694] Date/Time: 2020-07-19 07:55:50.9679 -0400 Launch Time: 2020-07-19 07:54:13.6822 -0400 OS Version: iPhone OS 13.5.1 (17F80) Release Type: User Baseband Version: 3.05.00 Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016b5dbff0 VM Region Info: 0x16b5dbff0 is in 0x16b5d8000-0x16b5dc000; bytes after start: 16368 bytes before end: 15 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL MALLOC_TINY 0000000118600000-0000000118700000 [ 1024K] rw-/rwx SM=PRV GAP OF 0x52ed8000 BYTES ---> STACK GUARD 000000016b5d8000-000000016b5dc000 [ 16K] ---/rwx SM=NUL ... for thread 0 Stack 000000016b5dc000-000000016b6d8000 [ 1008K] rw-/rwx SM=COW thread 0 Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [1070] Triggered by Thread: 0 Thread 0 name: Thread 0 Crashed: 0 CoreFoundation 0x0000000184a9d4a8 -[__NSArrayM copyWithZone:] + 76 (NSArrayM.m:0) 1 GetEDone 0x000000010474be04 -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 76 (AppDelegate+FirebasePlugin.m:463) 2 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 3 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 4 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 5 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 6 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 7 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 8 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 9 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 10 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 11 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 12 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 13 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 14 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 15 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 16 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 17 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 18 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 19 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 20 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 21 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 22 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 23 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 24 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 25 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 26 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 27 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 28 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 29 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 30 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 31 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 32 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 33 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 34 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 35 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 36 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 37 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 38 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 39 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 40 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 41 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 42 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 43 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 44 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 45 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 46 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 47 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 48 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 49 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 50 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 51 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 52 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 53 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 54 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 55 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 56 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 57 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 58 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 59 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 60 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 61 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 62 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 63 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 64 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 65 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 66 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 67 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 68 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 69 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 70 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 71 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 72 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 73 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 74 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 75 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 76 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 77 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 78 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 79 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 80 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 81 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 82 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 83 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 84 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 85 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 86 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 87 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 88 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 89 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 90 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 91 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 92 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 93 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 94 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 95 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 96 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 97 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 98 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 99 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 100 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 101 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 102 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 103 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 104 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 105 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 106 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 107 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 108 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 109 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 110 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 111 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 112 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 113 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 114 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 115 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 116 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 117 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 118 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 119 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 120 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 121 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 122 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 123 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 124 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 125 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 126 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 127 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 128 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 129 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 130 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 131 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 132 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 133 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 134 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 135 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 136 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 137 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 138 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 139 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 140 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 141 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 142 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 143 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 144 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 145 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 146 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 147 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 148 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 149 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 150 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 151 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 152 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 153 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 154 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 155 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 156 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 157 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 158 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 159 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 160 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 161 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 162 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 163 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 164 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 165 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 166 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 167 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 168 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 169 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 170 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 171 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 172 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 173 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 174 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 175 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 176 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 177 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 178 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 179 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 180 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 181 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 182 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 183 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 184 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 185 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 186 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 187 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 188 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 189 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 190 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 191 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 192 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 193 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 194 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 195 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 196 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 197 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 198 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 199 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 200 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 201 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 202 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 203 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 204 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 205 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 206 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 207 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 208 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 209 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 210 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 211 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 212 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 213 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 214 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 215 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 216 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 217 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 218 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 219 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 220 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 221 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 222 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 223 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 224 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 225 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 226 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 227 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 228 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 229 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 230 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 231 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 232 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 233 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 234 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 235 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 236 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 237 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 238 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 239 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 240 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 241 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 242 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 243 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 244 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 245 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 246 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 247 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 248 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 249 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 250 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 251 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 252 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 253 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 254 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 255 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 256 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 257 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 258 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 259 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 260 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 261 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 262 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 263 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 264 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 265 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 266 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 267 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 268 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 269 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 270 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 271 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 272 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 273 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 274 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 275 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 276 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 277 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 278 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 279 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 280 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 281 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 282 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 283 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 284 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 285 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 286 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 287 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 288 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 289 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 290 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 291 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 292 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 293 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 294 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 295 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 296 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 297 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 298 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 299 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 300 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 301 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 302 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 303 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 304 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 305 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 306 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 307 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 308 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 309 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 310 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 311 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 312 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 313 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 314 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 315 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 316 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 317 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 318 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 319 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 320 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 321 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 322 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 323 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 324 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 325 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 326 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 327 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 328 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 329 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 330 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 331 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 332 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 333 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 334 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 335 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 336 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 337 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 338 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 339 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 340 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 341 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 342 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 343 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 344 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 345 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 346 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 347 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 348 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 349 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 350 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 351 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 352 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 353 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 354 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 355 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 356 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 357 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 358 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 359 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 360 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 361 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 362 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 363 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 364 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 365 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 366 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 367 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 368 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 369 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 370 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 371 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 372 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 373 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 374 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 375 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 376 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 377 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 378 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 379 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 380 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 381 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 382 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 383 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 384 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 385 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 386 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 387 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 388 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 389 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 390 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 391 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 392 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 393 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 394 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 395 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 396 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 397 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 398 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 399 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 400 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 401 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 402 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 403 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 404 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 405 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 406 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 407 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 408 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 409 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 410 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 411 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 412 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 413 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 414 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 415 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 416 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 417 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 418 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 419 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 420 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 421 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 422 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 423 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 424 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 425 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 426 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 427 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 428 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 429 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 430 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 431 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 432 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 433 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 434 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 435 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 436 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 437 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 438 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 439 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 440 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 441 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 442 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 443 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 444 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 445 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 446 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 447 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 448 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 449 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 450 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 451 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 452 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 453 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 454 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 455 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 456 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 457 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 458 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 459 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 460 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 461 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 462 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 463 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 464 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 465 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 466 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 467 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 468 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 469 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 470 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 471 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 472 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 473 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 474 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 475 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 476 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 477 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 478 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 479 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 480 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 481 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 482 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 483 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 484 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 485 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 486 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 487 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 488 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 489 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 490 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 491 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 492 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 493 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 494 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 495 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 496 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 497 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 498 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 499 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 500 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 501 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 502 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 503 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 504 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 505 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 506 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 507 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 508 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 509 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) 510 GetEDone 0x000000010474be3c -[AppDelegate(FirebasePlugin) userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:] + 132 (AppDelegate+FirebasePlugin.m:468) Thread 1 name: Thread 1: 0 libsystem_kernel.dylib 0x0000000184991198 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x000000018499060c mach_msg + 72 (mach_msg.c:103) 2 CoreFoundation 0x0000000184b3b468 __CFRunLoopServiceMachPort + 148 (CFRunLoop.c:2575) 3 CoreFoundation 0x0000000184b3649c __CFRunLoopRun + 1160 (CFRunLoop.c:2931) 4 CoreFoundation 0x0000000184b35ce8 CFRunLoopRunSpecific + 424 (CFRunLoop.c:3192) 5 Foundation 0x0000000184e7901c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228 (NSRunLoop.m:374) 6 Foundation 0x0000000184e78efc -[NSRunLoop(NSRunLoop) runUntilDate:] + 88 (NSRunLoop.m:421) 7 UIKitCore 0x0000000188d075dc -[UIEventFetcher threadMain] + 152 (UIEventFetcher.m:733) 8 Foundation 0x0000000184fa7e20 __NSThread__start__ + 848 (NSThread.m:724) 9 libsystem_pthread.dylib 0x00000001848d3d98 _pthread_start + 156 (pthread.c:896) 10 libsystem_pthread.dylib 0x00000001848d774c thread_start + 8 Thread 2 name: Thread 2: 0 libsystem_kernel.dylib 0x00000001849b2b58 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001848d106c _pthread_cond_wait$VARIANT$armv81 + 672 (pthread_cond.c:591) 2 libc++.1.dylib 0x0000000184a047ac std::__1::condition_variable::wait(std::__1::unique_lock&) + 24 (__threading_support:295) 3 JavaScriptCore 0x0000000193aa8ab8 void std::__1::condition_variable_any::wait >(std::__1::unique_lock&) + 108 (condition_variable:203) 4 JavaScriptCore 0x0000000193aac790 bmalloc::Scavenger::threadRunLoop() + 160 (condition_variable:212) 5 JavaScriptCore 0x0000000193aac4a0 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 12 (Scavenger.cpp:385) 6 JavaScriptCore 0x0000000193aad6e4 void* std::__1::__thread_proxy >, void (*)(bmalloc::Scavenger*), bmalloc::Scaveng... + 40 (type_traits:4425) 7 libsystem_pthread.dylib 0x00000001848d3d98 _pthread_start + 156 (pthread.c:896) 8 libsystem_pthread.dylib 0x00000001848d774c thread_start + 8 Thread 3 name: Thread 3: 0 libsystem_kernel.dylib 0x0000000184991198 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x000000018499060c mach_msg + 72 (mach_msg.c:103) 2 GetEDone 0x0000000104850dfc FIRCLSMachExceptionServer + 884 (FIRCLSMachException.c:260) 3 libsystem_pthread.dylib 0x00000001848d3d98 _pthread_start + 156 (pthread.c:896) 4 libsystem_pthread.dylib 0x00000001848d774c thread_start + 8 Thread 4: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 5 name: Thread 5: 0 libsystem_kernel.dylib 0x0000000184991198 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x000000018499060c mach_msg + 72 (mach_msg.c:103) 2 CoreFoundation 0x0000000184b3b468 __CFRunLoopServiceMachPort + 148 (CFRunLoop.c:2575) 3 CoreFoundation 0x0000000184b3649c __CFRunLoopRun + 1160 (CFRunLoop.c:2931) 4 CoreFoundation 0x0000000184b35ce8 CFRunLoopRunSpecific + 424 (CFRunLoop.c:3192) 5 CFNetwork 0x0000000187df6894 -[__CoreSchedulingSetRunnable runForever] + 192 (CoreSchedulingSet.mm:1372) 6 Foundation 0x0000000184fa7e20 __NSThread__start__ + 848 (NSThread.m:724) 7 libsystem_pthread.dylib 0x00000001848d3d98 _pthread_start + 156 (pthread.c:896) 8 libsystem_pthread.dylib 0x00000001848d774c thread_start + 8 Thread 6: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 7: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 8: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 9: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 10: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 11: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 12: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 13: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 14: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 15: 0 libsystem_pthread.dylib 0x00000001848d7738 start_wqthread + 0 Thread 0 crashed with ARM Thread State (64-bit): x0: 0x00000002812a1aa0 x1: 0x00000001bfff66aa x2: 0x0000000281228420 x3: 0x0000000281240cf0 x4: 0x00000002812a1aa0 x5: 0x0000000000000000 x6: 0x000000011530c6a0 x7: 0x0000000000000000 x8: 0x00000001bfff6000 x9: 0x00000001bfff66aa x10: 0x000000011500f400 x11: 0x001f00011500f400 x12: 0x000000011500f4a0 x13: 0x00000001d1a4a070 x14: 0x0000000000000018 x15: 0x0000000104d7ea80 x16: 0x00000001d1a4a070 x17: 0x0000000184a9d4a8 x18: 0x0000000000000000 x19: 0x00000002812a1aa0 x20: 0x0000000281240cf0 x21: 0x0000000281c7f9a0 x22: 0x00000001c5a91688 x23: 0x00000002812a1aa0 x24: 0x00000001ceb7b000 x25: 0x0000000281228420 x26: 0x0000000281c7f9a0 x27: 0x00000001c60089d0 x28: 0x0000000281240cf0 fp: 0x000000016b5dc090 lr: 0x000000010474be04 sp: 0x000000016b5dc010 pc: 0x0000000184a9d4a8 cpsr: 0x60000000 esr: 0x92000047 (Data Abort) byte write Translation fault Binary Images: 0x104728000 - 0x104d23fff GetEDone arm64 <54ec4f8368963b04a06b87d24027b2c5> /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/GetEDone 0x104f24000 - 0x104f43fff AppAuth arm64 /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/AppAuth.framework/AppAuth 0x104f88000 - 0x104f9bfff FBLPromises arm64 <6650d1f917f43e1db8475e5492b03a6a> /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/FBLPromises.framework/FBLPromises 0x104fc0000 - 0x104fcbfff GTMAppAuth arm64 <43d52189491d3715a7b5dc40b68e8566> /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/GTMAppAuth.framework/GTMAppAuth 0x104fe4000 - 0x10500ffff GTMSessionFetcher arm64 <2675dcf23a8038189b947149a724d0bb> /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher 0x10505c000 - 0x105067fff GoogleToolboxForMac arm64 /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac 0x105080000 - 0x10509ffff GoogleUtilities arm64 /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/GoogleUtilities.framework/GoogleUtilities 0x1050d4000 - 0x105123fff Protobuf arm64 /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/Protobuf.framework/Protobuf 0x1051d4000 - 0x1051dffff nanopb arm64 <3701e8d9548a34d2a1909beb13af3e99> /var/containers/Bundle/Application/EC23D2ED-5B6E-46D4-96EF-DA52BCF893F6/GetEDone.app/Frameworks/nanopb.framework/nanopb 0x105280000 - 0x10528bfff libobjc-trampolines.dylib arm64 <927690b4ce6e3dbb8d54d00bd46e211c> /usr/lib/libobjc-trampolines.dylib 0x1052c0000 - 0x105323fff dyld arm64 /usr/lib/dyld 0x184762000 - 0x184778fff libsystem_trace.dylib arm64 /usr/lib/system/libsystem_trace.dylib 0x184779000 - 0x1847aafff libxpc.dylib arm64 /usr/lib/system/libxpc.dylib 0x1847ab000 - 0x1847abfff libsystem_blocks.dylib arm64 <5ecacf25aea7392db0edea47df03841f> /usr/lib/system/libsystem_blocks.dylib 0x1847ac000 - 0x184827fff libsystem_c.dylib arm64 <7de48f8fc80f3f6582e5438a038914de> /usr/lib/system/libsystem_c.dylib 0x184828000 - 0x18489cfff libdispatch.dylib arm64 <652a10daa0e73b479c95af3dfe45a66c> /usr/lib/system/libdispatch.dylib 0x18489d000 - 0x1848bdfff libsystem_malloc.dylib arm64 <9dfc8592541931188bfd2e39417bb3ea> /usr/lib/system/libsystem_malloc.dylib 0x1848be000 - 0x1848c8fff libsystem_platform.dylib arm64 <3834105b0f623e9ba9f7b9f29a2b7e1b> /usr/lib/system/libsystem_platform.dylib 0x1848c9000 - 0x1848d9fff libsystem_pthread.dylib arm64 <4f339f5eab9c39239a054f32d6361a9f> /usr/lib/system/libsystem_pthread.dylib 0x1848da000 - 0x18490bfff libobjc.A.dylib arm64 <8e7331ccb39b39c3bce21c8fc3fd640c> /usr/lib/libobjc.A.dylib 0x18490c000 - 0x184973fff libcorecrypto.dylib arm64 /usr/lib/system/libcorecrypto.dylib 0x184974000 - 0x18498cfff libc++abi.dylib arm64 <23af4b8a9578339983a8ba171a4a6984> /usr/lib/libc++abi.dylib 0x18498d000 - 0x1849bbfff libsystem_kernel.dylib arm64 <3b6ed4dcb4a437a581867d8d2cc888eb> /usr/lib/system/libsystem_kernel.dylib 0x1849bc000 - 0x1849eefff libdyld.dylib arm64 <3d6d64b4cb2b3cc4a7e902774df7ae74> /usr/lib/system/libdyld.dylib 0x1849ef000 - 0x1849f7fff libsystem_darwin.dylib arm64 /usr/lib/system/libsystem_darwin.dylib 0x1849f8000 - 0x184a51fff libc++.1.dylib arm64 /usr/lib/libc++.1.dylib 0x184a52000 - 0x184a92fff libsystem_info.dylib arm64 <1ba5618b578f3c16b9fd96243b982e37> /usr/lib/system/libsystem_info.dylib 0x184a93000 - 0x184e06fff CoreFoundation arm64 <50cf3336313f3a7d9048cb1ed8ec3368> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x184e07000 - 0x184e70fff SystemConfiguration arm64 <97d4a21f62de39d4bac3eda6e23b867b> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x184e71000 - 0x185128fff Foundation arm64 /System/Library/Frameworks/Foundation.framework/Foundation 0x185129000 - 0x18515bfff libCRFSuite.dylib arm64 <7866c08c0a1f38fbaa972690df5d31a3> /usr/lib/libCRFSuite.dylib 0x18515c000 - 0x1852d6fff CoreServices arm64 /System/Library/Frameworks/CoreServices.framework/CoreServices 0x1852d7000 - 0x185337fff libSparse.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib 0x185338000 - 0x185822fff ImageIO arm64 <43e9306e349b3872a9b8b3239218efe1> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x185823000 - 0x185825fff ConstantClasses arm64 /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x185826000 - 0x1859c4fff CoreText arm64 <155a11781fb53b7da110e84a79ce3207> /System/Library/Frameworks/CoreText.framework/CoreText 0x1859c5000 - 0x185afafff Security arm64 /System/Library/Frameworks/Security.framework/Security 0x185afb000 - 0x185b9efff IOKit arm64 <412da55765be384aa89d20a2b651c60e> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x185b9f000 - 0x185bd6fff libMobileGestalt.dylib arm64 <31b92bfd73383ece975dfd316e355aa1> /usr/lib/libMobileGestalt.dylib 0x185bd7000 - 0x185c33fff libprotobuf.dylib arm64 <841ca362c6873dfd84528cac6a2cd9c0> /usr/lib/libprotobuf.dylib 0x185c34000 - 0x185c45fff libprotobuf-lite.dylib arm64 <7536ad4fbc5c3354af80689a2324924a> /usr/lib/libprotobuf-lite.dylib 0x185c46000 - 0x185e96fff libicucore.A.dylib arm64 <07864dddec643dd4b9a213200969c011> /usr/lib/libicucore.A.dylib 0x185e97000 - 0x185ec0fff CoreServicesInternal arm64 <55bcb265e2e1392ba7873bfaa74437d5> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x185ec1000 - 0x185f08fff WirelessDiagnostics arm64 <5843debc06fd3e178fa388ba71a877b2> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x185f09000 - 0x185f42fff libAWDSupport.dylib arm64 /usr/lib/libAWDSupport.dylib 0x185f43000 - 0x1863c6fff CoreAudio arm64 <123334ddbe8b393c8ded639235cc34c4> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x1863c7000 - 0x186693fff CoreImage arm64 /System/Library/Frameworks/CoreImage.framework/CoreImage 0x186694000 - 0x186782fff LanguageModeling arm64 <42a6eb09ca1730c0973d71ad7b65420f> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x186783000 - 0x1867c9fff Lexicon arm64 <4b4c917fecbd3d408f30ea89c9aa9b5d> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon 0x1867ca000 - 0x18694cfff libsqlite3.dylib arm64 <50368f42182239ecbb7d9e28f2cb51d4> /usr/lib/libsqlite3.dylib 0x18694d000 - 0x18697ffff MobileKeyBag arm64 <9a1e1f562fe5348c986dc3021bac41bc> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x186980000 - 0x186989fff libsystem_notify.dylib arm64 /usr/lib/system/libsystem_notify.dylib 0x18698a000 - 0x186b6afff CoreDuet arm64 <9a761d9edbdf326cb7fc42af61f6a7af> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x186b6b000 - 0x186cadfff Montreal arm64 /System/Library/PrivateFrameworks/Montreal.framework/Montreal 0x186cae000 - 0x186d94fff NLP arm64 <0303b400cb323183a85050e5a103b8ed> /System/Library/PrivateFrameworks/NLP.framework/NLP 0x186d95000 - 0x186db2fff CellularPlanManager arm64 <4605f191e6c63719914a00feabb0752f> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager 0x186db3000 - 0x186df0fff AppSupport arm64 /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x186df1000 - 0x1872c3fff libnetwork.dylib arm64 <53347c285841393f8a4ddb34799c75b1> /usr/lib/libnetwork.dylib 0x1872c4000 - 0x1873d0fff ManagedConfiguration arm64 /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x1873d1000 - 0x1873fafff CoreServicesStore arm64 <2bf3563076013293a6053c4c54d896e0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore 0x1873fb000 - 0x18741bfff UserManagement arm64 <07e5026006443636bcdae4734557d986> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x18741c000 - 0x1876d3fff CoreML arm64 <8943fae7f89433a6b36478f37321f739> /System/Library/Frameworks/CoreML.framework/CoreML 0x1876d4000 - 0x1876eafff ProtocolBuffer arm64 <2da9d6e47a603a5bb7f9580b31477a14> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x1876eb000 - 0x187705fff CommonUtilities arm64 /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x187706000 - 0x187706fff libenergytrace.dylib arm64 /usr/lib/libenergytrace.dylib 0x187707000 - 0x18773dfff RunningBoardServices arm64 /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices 0x18773e000 - 0x1877bafff BaseBoard arm64 <85a351e7c0c131bca0ade2cb67207653> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x1877bb000 - 0x187d0ffff SiriTTS arm64 <82924c680a9c301f998a0a2a3b572762> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS 0x187d10000 - 0x187d82fff CoreLocation arm64 <9836af7d3a913fadb09cb6994baf3890> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x187d90000 - 0x187de3fff Accounts arm64 <2bf74d45d81638dcbfbfbdebd52a8dc9> /System/Library/Frameworks/Accounts.framework/Accounts 0x187de4000 - 0x187df4fff SharedWebCredentials arm64 <973c37f548f2360299ceb39a7236ad33> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials 0x187df5000 - 0x188156fff CFNetwork arm64 <65f4b06044a6399dae37054295956158> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x188157000 - 0x188235fff UIFoundation arm64 <7c505b75a2a9369e96a883adb4376aa1> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x188236000 - 0x189350fff UIKitCore arm64 /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 0x189351000 - 0x18935efff AssertionServices arm64 <79768aa2a40a3cbaa30f184b510d2d5e> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x18935f000 - 0x189431fff CoreTelephony arm64 /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x189432000 - 0x189437fff AggregateDictionary arm64 <3dbe2791e6e43acc979739a8cdbeced9> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x189438000 - 0x18944efff libsystem_asl.dylib arm64 <4c9b25c01cd03eed8add79a5b57f927b> /usr/lib/system/libsystem_asl.dylib 0x18944f000 - 0x1894c7fff CloudDocs arm64 /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs 0x1894c8000 - 0x1897f0fff CoreData arm64 <71c2361d6162376dbcc125d7dd75669a> /System/Library/Frameworks/CoreData.framework/CoreData 0x1897f1000 - 0x189a16fff Vision arm64 <5da8d3c8dfde3c6495e08e9ff0a3c21f> /System/Library/Frameworks/Vision.framework/Vision 0x189a17000 - 0x189a59fff PhotoFoundation arm64 <32361048c86c3acf9e1691333fe803d6> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation 0x189a5a000 - 0x189a84fff BoardServices arm64 <3e864ffd7b073032b8a42e9ce57a880b> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices 0x189a85000 - 0x189b39fff libboringssl.dylib arm64 <84db47fe35103d7d98003b84c2e17c86> /usr/lib/libboringssl.dylib 0x189b3a000 - 0x189b48fff libsystem_networkextension.dylib arm64 /usr/lib/system/libsystem_networkextension.dylib 0x189b49000 - 0x189b69fff CoreAnalytics arm64 <94498ba0e7fa338ba1289d84968ce676> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics 0x189b6a000 - 0x189cd9fff CloudKit arm64 /System/Library/Frameworks/CloudKit.framework/CloudKit 0x189cda000 - 0x189d27fff SpringBoardServices arm64 <4f1dc2cb19f63076a88ed6191effcade> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x189d28000 - 0x189d9afff FrontBoardServices arm64 <6a942cc34b733477af9f95c8edcb8c85> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x189d9b000 - 0x189ec2fff Network arm64 /System/Library/Frameworks/Network.framework/Network 0x189ec3000 - 0x189f1ffff libusrtcp.dylib arm64 <049dc0b2a42a3ee3b536597e51bba17c> /usr/lib/libusrtcp.dylib 0x189f20000 - 0x189f27fff libsystem_symptoms.dylib arm64 <22082eb064283a988e827b97d1f153d7> /usr/lib/system/libsystem_symptoms.dylib 0x189f28000 - 0x18ae11fff GeoServices arm64 <15129e9f5f7f3c77bb2908308c78afbb> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x18ae12000 - 0x18ae1afff TCC arm64 /System/Library/PrivateFrameworks/TCC.framework/TCC 0x18ae1b000 - 0x18ae74fff IMFoundation arm64 /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x18ae75000 - 0x18afe8fff CoreUtils arm64 /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x18afe9000 - 0x18b09afff IMSharedUtilities arm64 /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities 0x18b09b000 - 0x18b0d0fff ImageCaptureCore arm64 <95542502b0dd39b181282efcf856f1d6> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore 0x18b0d1000 - 0x18b0dafff libsystem_containermanager.dylib arm64 /usr/lib/system/libsystem_containermanager.dylib 0x18b0db000 - 0x18b156fff AppleAccount arm64 <4c2cc696222f3179b510d28bd91c4b6e> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x18b157000 - 0x18b172fff ApplePushService arm64 /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x18b173000 - 0x18b25bfff IDS arm64 <300bd79bac543a76be770441b1bb37c6> /System/Library/PrivateFrameworks/IDS.framework/IDS 0x18b25c000 - 0x18b386fff IDSFoundation arm64 /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x18b387000 - 0x18b388fff libCTGreenTeaLogger.dylib arm64 /usr/lib/libCTGreenTeaLogger.dylib 0x18b3ed000 - 0x18b4edfff CoreMedia arm64 /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x18b4ee000 - 0x18b4fdfff UIKitServices arm64 <3eee112dd96c3980a68969cd09a3d04f> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices 0x18b4fe000 - 0x18b559fff BackBoardServices arm64 <7e4bbf2499a23fb5a3c4e380f27b7b25> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x18b55a000 - 0x18b7abfff QuartzCore arm64 /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x18b7ac000 - 0x18b873fff ColorSync arm64 <95d2b119e3b136d88755c2d0ee68e7e4> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x18b874000 - 0x18bde3fff CoreGraphics arm64 <0de7c48a285e336aa0892fd49635300c> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x18bde4000 - 0x18bf14fff Contacts arm64 <0074d18f8d4a30ebae0e310725d0845c> /System/Library/Frameworks/Contacts.framework/Contacts 0x18bf15000 - 0x18bf43fff UserNotifications arm64 <8025920b36003c45ae04901f5b9f96ab> /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x18bf44000 - 0x18bf67fff LocationSupport arm64 <022fc28a220938bb98895dac79b77fe6> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport 0x18bf68000 - 0x18c0c3fff Sharing arm64 <170df713721233b7bf13acbcac9bd961> /System/Library/PrivateFrameworks/Sharing.framework/Sharing 0x18c0c4000 - 0x18c706fff WebKit arm64 /System/Library/Frameworks/WebKit.framework/WebKit 0x18c707000 - 0x18e4bcfff WebCore arm64 <665cd83b3f283d9eb3b1e51e53285f9f> /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x18e4bd000 - 0x18e4d7fff libAccessibility.dylib arm64 <4caf798e480e338facab4d80ec282cef> /usr/lib/libAccessibility.dylib 0x18e4d8000 - 0x18e4e3fff AXCoreUtilities arm64 <7f78c74b27a0325aac828ff60350aaab> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities 0x18e4e4000 - 0x18e557fff ContactsFoundation arm64 <9f130e4c01313afb9a745e1e344f8229> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation 0x18e558000 - 0x18e56cfff PowerLog arm64 /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x18e56d000 - 0x18e57efff IOSurface arm64 <0ea65ad7b698333baabfced9d05e17b5> /System/Library/Frameworks/IOSurface.framework/IOSurface 0x18e57f000 - 0x18ec7cfff MediaToolbox arm64 /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x18ec7d000 - 0x18ec85fff GraphicsServices arm64 <0f9f2b391e8536349022ee6c8b55ca27> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x18ed6e000 - 0x18ef66fff AVFoundation arm64 /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x18ef67000 - 0x18ef9efff OnBoardingKit arm64 /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit 0x18ef9f000 - 0x18efedfff MobileWiFi arm64 <61c6745b133b362abf4585d1184cc99f> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x18efee000 - 0x18f006fff MobileAsset arm64 /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x18f007000 - 0x18f014fff libGSFont.dylib arm64 <9d7da51ad9063da4957a4b0e4637b858> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib 0x18f015000 - 0x18f01efff FontServices arm64 /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x18f01f000 - 0x18f168fff libFontParser.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x18f1b8000 - 0x18f2f1fff SearchFoundation arm64 <2ca6ec9fd8243754983d795fccf1b42c> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation 0x18f2f2000 - 0x18f411fff Preferences arm64 <43f0d3075e473f4d9f0521d92ff161aa> /System/Library/PrivateFrameworks/Preferences.framework/Preferences 0x18f412000 - 0x18fa7ffff PhotoLibraryServices arm64 <670633f2447e35be9322fdacf8e710da> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices 0x18fa80000 - 0x18fce4fff vImage arm64 <42016dc261c83e55a547bdd8ce8ada8f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x18fce5000 - 0x18ff19fff AudioToolbox arm64 <7540831c52293d109a4de8eb4899fcca> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x18ff1a000 - 0x18ff4cfff libAudioToolboxUtility.dylib arm64 /usr/lib/libAudioToolboxUtility.dylib 0x18ff4d000 - 0x190109fff ContactsUI arm64 <3b2915d61659398ca878da2378cf9772> /System/Library/Frameworks/ContactsUI.framework/ContactsUI 0x190174000 - 0x190377fff Photos arm64 /System/Library/Frameworks/Photos.framework/Photos 0x190378000 - 0x19040cfff ShareSheet arm64 <157365e6818937f29855cc4a099e0895> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet 0x190421000 - 0x1904d5fff PDFKit arm64 /System/Library/Frameworks/PDFKit.framework/PDFKit 0x190553000 - 0x190580fff DocumentManager arm64 <99f5bfa1f1df351d97cd5336243fcfb3> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager 0x1907db000 - 0x190852fff AuthKit arm64 <613e9a43755c3da1952c47a071b854da> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x190853000 - 0x190c6ffff Intents arm64 <94465293623e37ccaeb857fa543757b3> /System/Library/Frameworks/Intents.framework/Intents 0x190c70000 - 0x190c84fff libCGInterfaces.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib 0x190c85000 - 0x190de4fff WebKitLegacy arm64 <64745c415a793051b1561cba0600c5ef> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x190de5000 - 0x190e4ffff TextInput arm64 /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x190ecb000 - 0x190ecefff XCTTargetBootstrap arm64 <7a6898bfcb4c371988a5acbb4bc3dc8d> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap 0x190ecf000 - 0x190f83fff CorePDF arm64 <080514c27b5d3d658578fea2c8b3714d> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF 0x190fbf000 - 0x19136ffff MediaPlayer arm64 <0769fdb1ec1738c5937a9f2685a3b275> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer 0x191370000 - 0x19168bfff AppleMediaServices arm64 <3bba6b988c953c93b69e02cd74b3f0f9> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices 0x19168c000 - 0x1916b2fff CacheDelete arm64 <829a439eb02c30898ad2e7f15eb5e5fb> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x1916b3000 - 0x191879fff CoreMotion arm64 <4e13533feeb33982ab9eaf9cc68a0058> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x19187a000 - 0x191967fff AVFAudio arm64 <6efaea94ffec3ac8922605dc7c06def5> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio 0x191b85000 - 0x191c3bfff CoreUI arm64 /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x191c3c000 - 0x191c5ffff AppSupportUI arm64 /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI 0x191c60000 - 0x191c95fff CoreVideo arm64 <6eaaeaf60b0134a9a4e7b73b638efe7a> /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x191c96000 - 0x191eccfff AudioToolboxCore arm64 <20e2f8e7e3323d8c8c01d0b801f0f815> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore 0x191ecd000 - 0x191f10fff CoreDuetContext arm64 /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext 0x191f11000 - 0x191f4bfff SetupAssistant arm64 <0b444aa20505343b95b0c43cba311110> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant 0x191f4c000 - 0x192008fff TelephonyUtilities arm64 <41411eb46b723727ae63b592745fd992> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x192009000 - 0x192033fff PlugInKit arm64 <230c0e71638c3235b25e82880ad22080> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x1923b7000 - 0x1924f2fff AssistantServices arm64 <2c0d5a24a8bb3f68b8328866617f8560> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x1924f3000 - 0x192552fff ProactiveSupport arm64 <0491e9858f5130d48e723e7c94f3a137> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport 0x192553000 - 0x192795fff MapKit arm64 /System/Library/Frameworks/MapKit.framework/MapKit 0x192796000 - 0x1927b2fff PrototypeTools arm64 <77cada6a09b736dfada587d074003aa6> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x1927b3000 - 0x1928a4fff MediaExperience arm64 /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience 0x1928a5000 - 0x192b79fff Celestial arm64 <29b045d05743327cabe1186fff703295> /System/Library/PrivateFrameworks/Celestial.framework/Celestial 0x192b7a000 - 0x192bd6fff CallKit arm64 <1504fb2ab5c33b95a9c1d3174f6075b1> /System/Library/Frameworks/CallKit.framework/CallKit 0x192d9d000 - 0x193493fff VectorKit arm64 /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit 0x193494000 - 0x193563fff AVKit arm64 /System/Library/Frameworks/AVKit.framework/AVKit 0x193564000 - 0x193592fff Pegasus arm64 <045319dd3bfe3163aa0526ade1f4d89a> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus 0x193593000 - 0x193595fff libapp_launch_measurement.dylib arm64 <7e5b527aaecc34678f37deeaa3a223c5> /usr/lib/libapp_launch_measurement.dylib 0x1935ab000 - 0x19360dfff CoreSpotlight arm64 <835c41121267306695997a75b65c7876> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight 0x19360e000 - 0x1936a5fff AddressBookLegacy arm64 /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy 0x1936a6000 - 0x1936b5fff CrashReporterSupport arm64 <32bae125126e3c608be1edc26ab919ac> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x1936b6000 - 0x1936c8fff MobileBluetooth arm64 <7c0d97f4a93f38bfb3cfd2cf409b7f60> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x1936c9000 - 0x193783fff LinkPresentation arm64 /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation 0x193784000 - 0x1937bbfff StoreKit arm64 <55d93c63c4513363be1f8519db60e9fe> /System/Library/Frameworks/StoreKit.framework/StoreKit 0x1937bc000 - 0x1937c0fff libsystem_configuration.dylib arm64 <80edea640ddf39f79406c5d316d6d1fc> /usr/lib/system/libsystem_configuration.dylib 0x1937c1000 - 0x19381bfff RemoteUI arm64 <3336dfba4a5b32bbab6f8808c9706ad2> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI 0x19381c000 - 0x193871fff AuthKitUI arm64 <1aa4e66cdbf535e8b6b1088f99df5f85> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI 0x193872000 - 0x1938d7fff CoreRecognition arm64 <3e1fee59ca10355498ff177a21fa74b3> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition 0x1938d8000 - 0x19395afff Social arm64 <17414df0c922317e9bc52b387f93d212> /System/Library/Frameworks/Social.framework/Social 0x1939a8000 - 0x1939b6fff HangTracer arm64 <7f38923757243c08b2ccd9f4caa34745> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x1939b7000 - 0x193a1cfff CoreNLP arm64 /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP 0x193a1d000 - 0x193a1efff liblangid.dylib arm64 <1dcd5ff27d8c33b197a2a4886beb84a7> /usr/lib/liblangid.dylib 0x193a1f000 - 0x1948aafff JavaScriptCore arm64 <6b20d2edb28734a29dfb4115cee617d9> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x1948ab000 - 0x194938fff libTelephonyUtilDynamic.dylib arm64 <929962407c513b05b25888ad6e85299d> /usr/lib/libTelephonyUtilDynamic.dylib 0x19494d000 - 0x194bcbfff StoreServices arm64 <367c6a3f0ee53093841c79c2e27a55e2> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x194bcc000 - 0x194bd5fff IOMobileFramebuffer arm64 <5f50ed2207f833e199a4e19d8ccad8d8> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x194bd6000 - 0x194d5efff SafariServices arm64 <241beb10448f35a799c28a3bdbc1fde1> /System/Library/Frameworks/SafariServices.framework/SafariServices 0x194f4e000 - 0x194f68fff CoreMaterial arm64 /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial 0x194f69000 - 0x19504efff libxml2.2.dylib arm64 <701e3c5c20443b17b92b883a32fc9270> /usr/lib/libxml2.2.dylib 0x1968d3000 - 0x19691bfff MetadataUtilities arm64 /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities 0x19691c000 - 0x196974fff UserActivity arm64 /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity 0x19729d000 - 0x1974aefff NetworkExtension arm64 <648fc76bbad13b0c831e47f01de40323> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension 0x1974af000 - 0x1974e4fff DataDetectorsCore arm64 <306c0ed03c67310d862818c496f9071d> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore 0x1974e5000 - 0x197544fff CalendarFoundation arm64 <293ec4cd997b390e98ec648e44802a19> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation 0x197545000 - 0x197637fff EventKit arm64 /System/Library/Frameworks/EventKit.framework/EventKit 0x197638000 - 0x19766efff MediaServices arm64 <707d4e0834a331efb51033d475661f0e> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x197a8a000 - 0x197ac9fff BiometricKit arm64 /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit 0x197aca000 - 0x197af4fff PersistentConnection arm64 /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x197af5000 - 0x197b48fff CalendarDaemon arm64 /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon 0x197b49000 - 0x197bdffff CalendarDatabase arm64 <7ae4c7ba51b5381284adafe11cbdc462> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase 0x197be0000 - 0x197dcdfff MediaRemote arm64 <7eb61fe4d9ed3b13bdf38d97ef2972e9> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x197dce000 - 0x197dd6fff CorePhoneNumbers arm64 /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers 0x197de7000 - 0x197e0dfff DuetActivityScheduler arm64 <7f95b791842b323a8923eb37b0a4b3d1> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler 0x197f12000 - 0x197f34fff CoreSVG arm64 /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG 0x197f4f000 - 0x197f6cfff ProactiveEventTracker arm64 <66256e0700c13ae5a40d7579e3f733ca> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker 0x197f6d000 - 0x197f78fff MallocStackLogging arm64 <9dd92a16c9963a6b98a6264eddf84087> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging 0x197f79000 - 0x19800dfff CoreSuggestions arm64 <0ff8e07e4f13379f9ca2d043b1e161b7> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions 0x19800e000 - 0x1981bffff IMCore arm64 <05b0a77980f83ad99e26cdfb7a591ff5> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x1981c0000 - 0x198211fff DeviceManagement arm64 /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement 0x198a16000 - 0x198a23fff BluetoothManager arm64 <9d2661e56523387eacbc01fd58511f7f> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x198a24000 - 0x198a59fff CoreBluetooth arm64 /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x198a5a000 - 0x198a5cfff libsystem_sandbox.dylib arm64 /usr/lib/system/libsystem_sandbox.dylib 0x198b42000 - 0x198b79fff TextInputUI arm64 /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI 0x198b88000 - 0x198b94fff ContextKit arm64 <12c6dafaeb3c30dfad4596a367177177> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit 0x198bc5000 - 0x198c31fff Rapport arm64 /System/Library/PrivateFrameworks/Rapport.framework/Rapport 0x198c32000 - 0x198c75fff OSAnalytics arm64 /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics 0x198c76000 - 0x198ca4fff MobileInstallation arm64 /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x198ca5000 - 0x198d3ffff Metal arm64 <1a3ebad8d72b3611ae0083c386e95d24> /System/Library/Frameworks/Metal.framework/Metal 0x198d40000 - 0x198d45fff IOAccelerator arm64 /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x198d46000 - 0x198d51fff MediaAccessibility arm64 <1f7ba84ab5b93527a4035ef25ef17798> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x198d6f000 - 0x198d76fff libsystem_dnssd.dylib arm64 <70f6609c95f03d30b65bc26064033647> /usr/lib/system/libsystem_dnssd.dylib 0x198d77000 - 0x198d7dfff PushKit arm64 /System/Library/Frameworks/PushKit.framework/PushKit 0x198d7e000 - 0x198e83fff FileProvider arm64 /System/Library/Frameworks/FileProvider.framework/FileProvider 0x198e98000 - 0x198e99fff BackgroundTaskAgent arm64 /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent 0x198e9a000 - 0x198e9ffff LinguisticData arm64 <5408531c1d0e3cd7b78ded739b8c6630> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData 0x198ea0000 - 0x198eb8fff CoreSDB arm64 <9fa211cf0a673483840f18e4f2dde501> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB 0x198eb9000 - 0x198ec9fff Categories arm64 <3ff14778575e3b7081f2284031eb978d> /System/Library/PrivateFrameworks/Categories.framework/Categories 0x198ee4000 - 0x198f9ffff VideoToolbox arm64 /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox 0x1993d5000 - 0x199430fff PersonalizationPortrait arm64 <981bfc12db6f3adea278a17942673cf5> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait 0x199431000 - 0x19949ffff AppStoreDaemon arm64 <8d80d5b9fad33f18bb277b5a6ffebc05> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon 0x1994fa000 - 0x199502fff SymptomDiagnosticReporter arm64 <7fe89de3ecb2381b9cb74e6497ff3745> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x199503000 - 0x199505fff IOSurfaceAccelerator arm64 /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x199506000 - 0x1995b4fff AssetsLibraryServices arm64 <48d669ea5de33f88825ea8ff1fd2ed93> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices 0x1995b5000 - 0x1995e3fff DataAccessExpress arm64 <4870fda4a66e3c03af6f40cc700dfebc> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x199653000 - 0x199667fff CoreFollowUp arm64 <3f426f64986f3431ba5d5dc3759c498d> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp 0x199668000 - 0x199670fff FamilyCircle arm64 /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle 0x199671000 - 0x199686fff libcoretls.dylib arm64 /usr/lib/libcoretls.dylib 0x1996dd000 - 0x19976efff libate.dylib arm64 /usr/lib/libate.dylib 0x19a9f9000 - 0x19aa1efff Pasteboard arm64 <9da4e10da07335b2ac5a1d99aa9ca842> /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard 0x19aa1f000 - 0x19aa6dfff FTServices arm64 <8200be85df163301b8ff129147fb083f> /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x19ab1f000 - 0x19ab89fff SAObjects arm64 <1843eaa6d35934bb95e80b4f8e3a6ea4> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x19ab8a000 - 0x19ab94fff CoreRecents arm64 /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents 0x19ac3d000 - 0x19ac4afff DataMigration arm64 <8f1d8a0bb9e43ebc9e701932ba8a1e1c> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x19adfe000 - 0x19ae22fff IconServices arm64 <6760398284583c048830f768dcf664b0> /System/Library/PrivateFrameworks/IconServices.framework/IconServices 0x19ae23000 - 0x19b010fff iTunesCloud arm64 <4c4f6a79e2623fb9840854aaa49f2dc3> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud 0x19b011000 - 0x19b2d5fff MusicLibrary arm64 <4e63d976b63736a09dc313fc7e3d9a52> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary 0x19b2d6000 - 0x19b2d7fff WatchdogClient arm64 /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient 0x19b2d8000 - 0x19b2e9fff libprequelite.dylib arm64 <4546b5ab7cf636cfa3fce6f66566a6a2> /usr/lib/libprequelite.dylib 0x19b30e000 - 0x19b313fff IDSKVStore arm64 /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore 0x19b314000 - 0x19b324fff CoreEmoji arm64 <9c62f4899b843203b6277df1548a2057> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji 0x19b3bd000 - 0x19b421fff ClassKit arm64 /System/Library/Frameworks/ClassKit.framework/ClassKit 0x19b48d000 - 0x19b49afff CPMS arm64 /System/Library/PrivateFrameworks/CPMS.framework/CPMS 0x19b49b000 - 0x19b4a3fff RTCReporting arm64 <4956425a4c453b02980028575f51f19d> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting 0x19b5ff000 - 0x19b64bfff MobileBackup arm64 /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x19b6fa000 - 0x19b701fff CoreTime arm64 <819c7a0291053ab59e6962d89046be61> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x19b749000 - 0x19b887fff IMDPersistence arm64 /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence 0x19bd2e000 - 0x19bd81fff ToneLibrary arm64 <820cd5e145cf3638adf4d8bd39899ea3> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x19c01b000 - 0x19c039fff AppConduit arm64 <2f2102d9d6b53e98bfa84978ed4b58d4> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit 0x19c03a000 - 0x19c052fff IntlPreferences arm64 /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x19c400000 - 0x19c4eefff CoreBrightness arm64 /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x19c4ef000 - 0x19c4f6fff libIOReport.dylib arm64 <10f1d251510b37f98d7c266c5a542b66> /usr/lib/libIOReport.dylib 0x19c67f000 - 0x19c8b3fff libBNNS.dylib arm64 <01942ad29a4c351eaa5544085a064306> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x19c8b4000 - 0x19c8bbfff StudyLog arm64 <2932aac76ead300d8db77a325e1e1d7c> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog 0x19c942000 - 0x19c9d0fff iTunesStore arm64 <9ed836595bff34c6bd6fa3b14ac837f2> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore 0x19d420000 - 0x19d477fff SafariCore arm64 <1747deeb73a1304197b5410bb640ec59> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore 0x19d478000 - 0x19d4dffff ScreenTimeCore arm64 /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore 0x19daf0000 - 0x19db02fff LocalAuthentication arm64 /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication 0x19db03000 - 0x19db07fff CommunicationsFilter arm64 <5e02c60c8e3930f7990f070f2d7e9701> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x19db08000 - 0x19db2afff AddressBook arm64 /System/Library/Frameworks/AddressBook.framework/AddressBook 0x19db2b000 - 0x19db36fff CaptiveNetwork arm64 /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x19dc87000 - 0x19dd37fff libBLAS.dylib arm64 <79cc9111f6503d618043b69e3f57a8eb> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x19dd38000 - 0x19dd46fff CTCarrierSpace arm64 <2c14bfa8f7b63726bfc073425be011f6> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace 0x19e551000 - 0x19e61cfff CoreParsec arm64 /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec 0x19e80b000 - 0x19e826fff libtailspin.dylib arm64 /usr/lib/libtailspin.dylib 0x19e883000 - 0x19e897fff ContactsDonation arm64 /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation 0x19e8e2000 - 0x19e8ebfff MobileActivation arm64 <61af7d53190e3a44928fbf8d4e0749fc> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation 0x19e96c000 - 0x19e97afff MobileIcons arm64 /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x19e97b000 - 0x19ea7afff ResponseKit arm64 <2908808b54213cc49f5f3c913a84bd38> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit 0x19eb41000 - 0x19eb8bfff CoreHaptics arm64 /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics 0x19eb8c000 - 0x19ec54fff ProofReader arm64 <2483754368d135358b1435035f7b78b2> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x19ecc5000 - 0x19ed54fff CoreSymbolication arm64 /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x19ed55000 - 0x19ed5bfff IdleTimerServices arm64 <802865a0d6f337fc9eda69c713233135> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices 0x19ee55000 - 0x19ef0efff VideoSubscriberAccount arm64 /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount 0x19ef0f000 - 0x19ef22fff WebContentAnalysis arm64 <203ee29c89bf370a8ddb732aaafefd14> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis 0x19ef23000 - 0x19ef26fff FTClientServices arm64 /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x19ef27000 - 0x19ef8cfff ContactsUICore arm64 <809101bb8b6c3f1a8b508f75b0908f35> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore 0x19f3e8000 - 0x19f42ffff LoggingSupport arm64 <24c943753378364c8d30b901d874a5f1> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport 0x19f533000 - 0x19f58cfff ProtectedCloudStorage arm64 <9338f1276ef2313b902738327d71156b> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x19f673000 - 0x19f67bfff OpenGLES arm64 <604e4d2b07c1328397e443cf3bfa48b6> /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x19f7db000 - 0x19f7e3fff libGFXShared.dylib arm64 /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x19f7e4000 - 0x19f819fff SharedUtils arm64 /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils 0x19f81a000 - 0x19f867fff PhotosFormats arm64 /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats 0x1a0e74000 - 0x1a0eb0fff StreamingZip arm64 /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip 0x1a1aec000 - 0x1a1c9ffff SafariShared arm64 <825d900373be36af85f2f6047c44a410> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared 0x1a1d25000 - 0x1a1d28fff InternationalTextSearch arm64 <9662ee215e3a3d7fbe5111de8e06a777> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch 0x1a1d46000 - 0x1a1d62fff AssetCacheServices arm64 <9b1979e1641635f780d96135e4b3fe01> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices 0x1a26d0000 - 0x1a26d5fff IncomingCallFilter arm64 /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x1a26f1000 - 0x1a2709fff NetworkStatistics arm64 /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x1a2b74000 - 0x1a2b7afff Netrb arm64 /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x1a2b7e000 - 0x1a2bb1fff EAP8021X arm64 <881fc2429f963a45991e8db95d80cc15> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x1a2bb2000 - 0x1a2bb4fff OSAServicesClient arm64 /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient 0x1a2d38000 - 0x1a2d3cfff libgermantok.dylib arm64 /usr/lib/libgermantok.dylib 0x1a2d3d000 - 0x1a2deffff libmecab.dylib arm64 <528a16b2ac603eafb22f2ce03f88cfa3> /usr/lib/libmecab.dylib 0x1a2df0000 - 0x1a2e2bfff Catalyst arm64 /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst 0x1a2ee8000 - 0x1a2f00fff EmojiFoundation arm64 /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation 0x1a2f99000 - 0x1a2fd5fff VoiceServices arm64 /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x1a2fd6000 - 0x1a30ecfff Navigation arm64 <87b7f210343337ffb6511b046182d94a> /System/Library/PrivateFrameworks/Navigation.framework/Navigation 0x1a3404000 - 0x1a3412fff CoreDuetDaemonProtocol arm64 <0ac2c75be0dc347389b78ad94eeacfb7> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x1a3413000 - 0x1a3432fff FTAWD arm64 <8f8301a656433cbf8bf5f6b6321be47d> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD 0x1a49e5000 - 0x1a49e7fff OAuth arm64 <237248e78d693f699ea0b03e8709269a> /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x1a4c82000 - 0x1a4cbdfff DifferentialPrivacy arm64 /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy 0x1a5497000 - 0x1a5505fff libarchive.2.dylib arm64 /usr/lib/libarchive.2.dylib 0x1a5506000 - 0x1a5536fff C2 arm64 /System/Library/PrivateFrameworks/C2.framework/C2 0x1a5537000 - 0x1a556afff NaturalLanguage arm64 /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage 0x1a55fd000 - 0x1a55fefff libsystem_coreservices.dylib arm64 <600c7f6d924d3823bd9327d7558cc61c> /usr/lib/system/libsystem_coreservices.dylib 0x1a5610000 - 0x1a5622fff libmis.dylib arm64 <3f17d308a52238f58452f82c9917d7dc> /usr/lib/libmis.dylib 0x1a5623000 - 0x1a5678fff WebBookmarks arm64 <4071d6652f8b3466a9a2111d63ae7236> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks 0x1a5679000 - 0x1a5686fff DCIMServices arm64 <50a177b0431d3db289414a2fd5ba93f1> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices 0x1a5687000 - 0x1a57d7fff CloudPhotoLibrary arm64 <55162b93a1053296924bc2f9d9797df2> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary 0x1a5812000 - 0x1a581afff libcopyfile.dylib arm64 <5c00c4e5e50f3510bd01ed6279058308> /usr/lib/system/libcopyfile.dylib 0x1a581b000 - 0x1a583cfff UsageTracking arm64 <7ff41e20347a3216b2026fd0ccfc2bdc> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking 0x1a5b7c000 - 0x1a5c10fff AccountsDaemon arm64 <8206296baef1362f8750fa120df80e69> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x1a5c11000 - 0x1a5c1cfff AppleIDSSOAuthentication arm64 <560e7e1e694e39588f7c5551a2e2c4e6> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x1a5c1d000 - 0x1a5c30fff SettingsFoundation arm64 <2f10b1d47cf83168bea690d34c716bd9> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation 0x1a5d6c000 - 0x1a5deefff Symbolication arm64 /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication 0x1a5fa3000 - 0x1a5ff0fff ChunkingLibrary arm64 <36f9e5cf0d843a36941161bf263360c3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x1a5ff4000 - 0x1a5ff8fff DAAPKit arm64 <0bc21d54c27c31179f521851515a91fc> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit 0x1a64ce000 - 0x1a64d0fff CoreDuetDebugLogging arm64 <7a624f9e73f23749a1ed6565c2806fda> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x1a6ff6000 - 0x1a7034fff SignpostSupport arm64 <99baaa120ac63c5fa24a1f7c73bf3698> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport 0x1a72c9000 - 0x1a72d2fff SignpostCollection arm64 <665fd99ec6ef31adadb9b8a4908d8f90> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection 0x1a79fe000 - 0x1a7a04fff URLFormatting arm64 /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting 0x1a7a19000 - 0x1a7abffff MMCS arm64 <264b3829c67e3a3fb9415e81eed9d30d> /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x1a7b18000 - 0x1a7d44fff MobileSpotlightIndex arm64 <32b5883183633d8791f88047598594c4> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex 0x1a8163000 - 0x1a81a9fff CoreLocationProtobuf arm64 /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf 0x1a825d000 - 0x1a82d9fff Quagga arm64 /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x1a85e4000 - 0x1a85f9fff libEDR arm64 /System/Library/PrivateFrameworks/libEDR.framework/libEDR 0x1a921c000 - 0x1a922afff libperfcheck.dylib arm64 /usr/lib/libperfcheck.dylib 0x1a922b000 - 0x1a9236fff libAudioStatistics.dylib arm64 /usr/lib/libAudioStatistics.dylib 0x1a93fd000 - 0x1a940dfff caulk arm64 <24522efcb725360b943653fa2b476a03> /System/Library/PrivateFrameworks/caulk.framework/caulk 0x1a944c000 - 0x1a9452fff MobileSystemServices arm64 /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x1aa581000 - 0x1aa58bfff HID arm64 <888d3ab055d73e5cb7ea184f62ea6806> /System/Library/PrivateFrameworks/HID.framework/HID 0x1aa5b8000 - 0x1aa5f1fff libGLImage.dylib arm64 <4b650111ce0e3ae1bec728cbb07165d7> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x1aa9ee000 - 0x1aa9fffff libSparseBLAS.dylib arm64 <8913dba9e4da3bb68254d453e933106f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1aaa00000 - 0x1aaa13fff Engram arm64 /System/Library/PrivateFrameworks/Engram.framework/Engram 0x1aaa8a000 - 0x1aaac4fff DataDetectorsNaturalLanguage arm64 /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage 0x1aadbb000 - 0x1aadc3fff FSEvents arm64 <06304d064c9c3220b972b22e6b99dcb7> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents 0x1aadd3000 - 0x1aae4ffff CoreDAV arm64 <5de76699b852339e83a9961f4996f863> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV 0x1ab734000 - 0x1ab744fff RemoteTextInput arm64 <067c806ccba83614bb44c3c09c197142> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput 0x1ab76d000 - 0x1ab79cfff iCalendar arm64 /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar 0x1ab7b9000 - 0x1ab7c2fff CloudPhotoServices arm64 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices 0x1ab801000 - 0x1ab815fff libLinearAlgebra.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1ab8a9000 - 0x1ab9a3fff ConfigurationEngineModel arm64 <7d92edb5f10938d7874cc995869bee7b> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel 0x1ab9a4000 - 0x1ab9abfff CertUI arm64 <0a6830e4bb03304e83b7987210b69283> /System/Library/PrivateFrameworks/CertUI.framework/CertUI 0x1ababd000 - 0x1abacbfff CoreAUC arm64 <90948f76ec2035b5a37527f9c43d0e20> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x1ac463000 - 0x1ac4a9fff PhysicsKit arm64 /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x1ac4aa000 - 0x1ac4fbfff CorePrediction arm64 <611a49a6b7c738b4bdf5ee20b478d513> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction 0x1ac8ec000 - 0x1ac939fff SafariSafeBrowsing arm64 <8ca67f40ab7d393c823233a86faf73b5> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing 0x1acce3000 - 0x1acd59fff HomeSharing arm64 /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing 0x1acde8000 - 0x1ace06fff GenerationalStorage arm64 <86771d0e35663419bc7e0a0bbcc9ca0a> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage 0x1ace69000 - 0x1ace74fff PersonaKit arm64 <32200c628e063858a8b950cf6f7e2774> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit 0x1ace75000 - 0x1ace81fff PersonaUI arm64 <278d5acbade0350ab120e70178490f6d> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI 0x1ad28e000 - 0x1ad293fff kperf arm64 <32595fbecfff32cd9c6311306bb94b9d> /System/Library/PrivateFrameworks/kperf.framework/kperf 0x1ad430000 - 0x1ad43efff AssetsLibrary arm64 /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary 0x1ad46b000 - 0x1ad49efff libpcap.A.dylib arm64 <90e142a0cf673ed6a35eb85c7d41b010> /usr/lib/libpcap.A.dylib 0x1ad75d000 - 0x1ad771fff WebUI arm64 <7a1f786e9d1d319b87e823e009df4d5a> /System/Library/PrivateFrameworks/WebUI.framework/WebUI 0x1ad772000 - 0x1ad789fff SafariFoundation arm64 <82dde3c018ba39cc809a98a9084d9ccd> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation 0x1ad7d5000 - 0x1ad86ffff libvDSP.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1ad870000 - 0x1ad89afff vCard arm64 /System/Library/PrivateFrameworks/vCard.framework/vCard 0x1ad8e2000 - 0x1ad96cfff SampleAnalysis arm64 <084ef282a4bd35618c253139b5e27c52> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis 0x1ad96d000 - 0x1ad979fff IntentsFoundation arm64 <9e48c8dcb5f938c1afa304fbfa856a6f> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation 0x1adb63000 - 0x1adb65fff ParsecSubscriptionServiceSupport arm64 /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport 0x1adb66000 - 0x1adbf5fff MediaPlatform arm64 <44b95f5878533051aab0c0b75cbf97f5> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform 0x1adbf6000 - 0x1adf06fff MediaLibraryCore arm64 /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore 0x1adf69000 - 0x1adfa1fff PhotosImagingFoundation arm64 <9f759d4e2e793a4fa1747a2057ddf8ff> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation 0x1adfa2000 - 0x1adfc3fff MediaConversionService arm64 <4fb4c3cfd5bf3968a362ea05047fedcf> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService 0x1adfc4000 - 0x1adfe1fff MediaStream arm64 /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x1adfe2000 - 0x1ae0dcfff CoreMediaStream arm64 <7ab6ec28325b3c6a95499696dd792ce1> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x1ae2fc000 - 0x1ae2fcfff Accelerate arm64 <45ed52447abc39cdac12a8b2d3a5a562> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1ae2fd000 - 0x1ae612fff libLAPACK.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1ae613000 - 0x1ae617fff libQuadrature.dylib arm64 <3e867303b3a23f4ea2c16257389b3cfe> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x1ae618000 - 0x1ae671fff libvMisc.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1ae672000 - 0x1ae672fff vecLib arm64 <5decfb473f053638a3303c3f408b9826> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1ae67b000 - 0x1ae689fff AuthenticationServices arm64 /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices 0x1aea22000 - 0x1aea4ffff GSS arm64 <4a513bda672c344a939dc9779fcd7751> /System/Library/Frameworks/GSS.framework/GSS 0x1aea62000 - 0x1aea93fff MPSCore arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore 0x1aea94000 - 0x1aeb10fff MPSImage arm64 <1190dfcb2a853e1f8e0dc03312305cfa> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage 0x1aeb11000 - 0x1aeb32fff MPSMatrix arm64 <186d7ce42ca336a08e230a52bca68681> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix 0x1aeb33000 - 0x1aeb47fff MPSNDArray arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray 0x1aeb48000 - 0x1aecd8fff MPSNeuralNetwork arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork 0x1aecd9000 - 0x1aed1dfff MPSRayIntersector arm64 <448f0c28db5f35a497d9a87781a24359> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector 0x1aed1e000 - 0x1aed1efff MetalPerformanceShaders arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x1aed2b000 - 0x1aed2bfff MobileCoreServices arm64 <367b7c51834a3c9da651e56bc5a19665> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1aed36000 - 0x1aed37fff libCVMSPluginSupport.dylib arm64 <39f778321ea63e4eb9e9d4652704f22d> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x1aed38000 - 0x1aed3efff libCoreFSCache.dylib arm64 <98a9f130bc473f9fb1a6509d862da4f2> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1aed3f000 - 0x1aed44fff libCoreVMClient.dylib arm64 <494e9d3a7eca306f9d41a8b65cb6c749> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x1aed79000 - 0x1aedb0fff QuickLookThumbnailing arm64 /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing 0x1af1e4000 - 0x1af1e4fff UIKit arm64 <4fdb24a3542c3828ba78261029c70a23> /System/Library/Frameworks/UIKit.framework/UIKit 0x1af5b3000 - 0x1af705fff ANECompiler arm64 <6b296be830ef3c04aa153d22287b1acb> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler 0x1af706000 - 0x1af716fff ANEServices arm64 <3eed4b031c24339abc1a020d7e7722bc> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices 0x1af71f000 - 0x1af7affff APFS arm64 <29c8ef70b4b23d3883d504b72e3a05b5> /System/Library/PrivateFrameworks/APFS.framework/APFS 0x1af7b0000 - 0x1af7b4fff ASEProcessing arm64 <73ea640d90373df2923d9f845bd62f6d> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing 0x1af95b000 - 0x1af966fff AccountSettings arm64 <4d807c3fb60f3815831f45ed57d3539f> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings 0x1b0291000 - 0x1b029ffff AppleFSCompression arm64 /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression 0x1b02a6000 - 0x1b02b0fff AppleIDAuthSupport arm64 <22a9fb7b5603389383650474d5434566> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x1b02b1000 - 0x1b02f2fff AppleJPEG arm64 /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1b033b000 - 0x1b034cfff AppleNeuralEngine arm64 <054d85f1ea203b98a8a72f3bd4a8392e> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine 0x1b0353000 - 0x1b0376fff AppleSauce arm64 <45d33f483aaf39a38150e70c71fc3457> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce 0x1b056f000 - 0x1b059ffff Bom arm64 /System/Library/PrivateFrameworks/Bom.framework/Bom 0x1b1019000 - 0x1b1020fff CommonAuth arm64 <731bac69de8c3062a6f8315f4af2ce23> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x1b144a000 - 0x1b144efff CoreOptimization arm64 <09e499e483dd33cca2ef9d4f4b89a98c> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization 0x1b1599000 - 0x1b15a4fff DeviceIdentity arm64 /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity 0x1b1733000 - 0x1b174efff DocumentManagerCore arm64 /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore 0x1b1805000 - 0x1b1e60fff Espresso arm64 /System/Library/PrivateFrameworks/Espresso.framework/Espresso 0x1b2112000 - 0x1b2523fff FaceCore arm64 <739f89ca13083c38868e0c03baa0ba31> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x1b25f4000 - 0x1b2608fff libGSFontCache.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x1b266c000 - 0x1b2678fff libhvf.dylib arm64 <22851faf21e63906835b53c3af30a1d2> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x1b269a000 - 0x1b26aefff Futhark arm64 <01ee4afe7bec3d98bea929c4cead18ff> /System/Library/PrivateFrameworks/Futhark.framework/Futhark 0x1b337b000 - 0x1b3387fff GraphVisualizer arm64 <184c847f48e530e3b7ec62df77389172> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer 0x1b3cb2000 - 0x1b3d22fff Heimdal arm64 /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x1b426d000 - 0x1b4274fff InternationalSupport arm64 <2cb4779d4e2736309157ac43521d9013> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport 0x1b43de000 - 0x1b43fcfff LatentSemanticMapping arm64 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/LatentSemanticMapping 0x1b4514000 - 0x1b4514fff Marco arm64 <3349b784c7a43a0da9b339233c689f85> /System/Library/PrivateFrameworks/Marco.framework/Marco 0x1b49c7000 - 0x1b49f1fff MetricsKit arm64 <4d1e649e679b3c00bc85eaa858500936> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit 0x1b4a01000 - 0x1b4a14fff MobileDeviceLink arm64 /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x1b4ccb000 - 0x1b4d0afff OTSVG arm64 <7d60ca625bb03b4292eb56386847aa1e> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG 0x1b534e000 - 0x1b534efff PhoneNumbers arm64 <3d872eff13233a1c9fdf9af8093ec832> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers 0x1b6d19000 - 0x1b6d1dfff RevealCore arm64 /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore 0x1b6eba000 - 0x1b6ec6fff SetupAssistantSupport arm64 <710ef63d26a23bdcb11bc7373ede4008> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport 0x1b6ee4000 - 0x1b6ee4fff SignpostMetrics arm64 /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics 0x1b6f12000 - 0x1b6f42fff SiriInstrumentation arm64 /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation 0x1b7758000 - 0x1b7873fff TextRecognition arm64 /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition 0x1b7874000 - 0x1b7915fff TextureIO arm64 <588753da475530e78c3958ff5b7e40d3> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x1b8893000 - 0x1b8df0fff libwebrtc.dylib arm64 <688391f2d82939168d733189af03490c> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib 0x1b8f87000 - 0x1b8f8ffff kperfdata arm64 <752d24da4c093c56b85e3b4004188613> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata 0x1b8f90000 - 0x1b8fd7fff ktrace arm64 /System/Library/PrivateFrameworks/ktrace.framework/ktrace 0x1b8ff0000 - 0x1b8ffcfff perfdata arm64 <671df2b03e9c348982bc2217f236add7> /System/Library/PrivateFrameworks/perfdata.framework/perfdata 0x1b9419000 - 0x1b9742fff libAWDSupportFramework.dylib arm64 <8a4635f5148e3cbf850a59d2bf5817f1> /usr/lib/libAWDSupportFramework.dylib 0x1b98ec000 - 0x1b98f6fff libChineseTokenizer.dylib arm64 <3570d6c175a631f7a1770f58e61a1607> /usr/lib/libChineseTokenizer.dylib 0x1b9920000 - 0x1b9ad2fff libFosl_dynamic.dylib arm64 <5e11e28bac87323b9e148c2ee1d84b1f> /usr/lib/libFosl_dynamic.dylib 0x1b9b4e000 - 0x1b9b55fff libMatch.1.dylib arm64 <8ee0ee1b648c335a87e39f1a168a9be0> /usr/lib/libMatch.1.dylib 0x1b9cf2000 - 0x1b9cf3fff libSystem.B.dylib arm64 /usr/lib/libSystem.B.dylib 0x1b9cfc000 - 0x1b9cfefff libThaiTokenizer.dylib arm64 <9a16bf715bf73766852c9a8cd9443f1d> /usr/lib/libThaiTokenizer.dylib 0x1b9dfd000 - 0x1b9e12fff libapple_nghttp2.dylib arm64 /usr/lib/libapple_nghttp2.dylib 0x1b9e8b000 - 0x1b9e9bfff libbsm.0.dylib arm64 /usr/lib/libbsm.0.dylib 0x1b9e9c000 - 0x1b9ea8fff libbz2.1.0.dylib arm64 <2558d15491ea348788381b0790c71387> /usr/lib/libbz2.1.0.dylib 0x1b9ea9000 - 0x1b9ea9fff libcharset.1.dylib arm64 /usr/lib/libcharset.1.dylib 0x1b9eaa000 - 0x1b9ebbfff libcmph.dylib arm64 /usr/lib/libcmph.dylib 0x1b9ebc000 - 0x1b9ed3fff libcompression.dylib arm64 /usr/lib/libcompression.dylib 0x1b9ed4000 - 0x1b9ed5fff libcoretls_cfhelpers.dylib arm64 /usr/lib/libcoretls_cfhelpers.dylib 0x1b9ed6000 - 0x1b9edcfff libcupolicy.dylib arm64 /usr/lib/libcupolicy.dylib 0x1b9f1c000 - 0x1b9f25fff libdscsym.dylib arm64 /usr/lib/libdscsym.dylib 0x1b9f26000 - 0x1b9f42fff libedit.3.dylib arm64 <17cc628c66bc39c7a8e7791eb25a6de6> /usr/lib/libedit.3.dylib 0x1ba492000 - 0x1ba497fff libheimdal-asn1.dylib arm64 /usr/lib/libheimdal-asn1.dylib 0x1ba498000 - 0x1ba589fff libiconv.2.dylib arm64 <68697fa18d523609b9d288c966f9cbfb> /usr/lib/libiconv.2.dylib 0x1ba59f000 - 0x1ba5aafff liblockdown.dylib arm64 <058fa15f190a3f58b9dd795b5c71828d> /usr/lib/liblockdown.dylib 0x1ba5ab000 - 0x1ba5c3fff liblzma.5.dylib arm64 /usr/lib/liblzma.5.dylib 0x1ba93f000 - 0x1ba96efff libncurses.5.4.dylib arm64 /usr/lib/libncurses.5.4.dylib 0x1ba96f000 - 0x1ba984fff libnetworkextension.dylib arm64 <503a9497f4bf3ae6bcd2d730087a1d4e> /usr/lib/libnetworkextension.dylib 0x1bad06000 - 0x1bad1dfff libresolv.9.dylib arm64 /usr/lib/libresolv.9.dylib 0x1bad1e000 - 0x1bad20fff libsandbox.1.dylib arm64 /usr/lib/libsandbox.1.dylib 0x1bad21000 - 0x1bad26fff libsysdiagnose.dylib arm64 <8d9c880916b932c68f4a49a53ab375ba> /usr/lib/libsysdiagnose.dylib 0x1bad27000 - 0x1bad58fff libtidy.A.dylib arm64 <17f1940866753de5932ed4678fac73e6> /usr/lib/libtidy.A.dylib 0x1bad60000 - 0x1bad63fff libutil.dylib arm64 /usr/lib/libutil.dylib 0x1bad91000 - 0x1bada2fff libz.1.dylib arm64 /usr/lib/libz.1.dylib 0x1badc9000 - 0x1badcbfff liblog_network.dylib arm64 /usr/lib/log/liblog_network.dylib 0x1bb1b4000 - 0x1bb1b9fff libcache.dylib arm64 <3d7c37c118ba399b99363449d398a6de> /usr/lib/system/libcache.dylib 0x1bb1ba000 - 0x1bb1c6fff libcommonCrypto.dylib arm64 <446b6b2b86133f0a8e9ba5fc9cc10f75> /usr/lib/system/libcommonCrypto.dylib 0x1bb1c7000 - 0x1bb1cbfff libcompiler_rt.dylib arm64 <3f75d9be14a43bbca74a489738a8fb9a> /usr/lib/system/libcompiler_rt.dylib 0x1bb299000 - 0x1bb299fff liblaunch.dylib arm64 <9b936ad4390833079b1b10466f84eef7> /usr/lib/system/liblaunch.dylib 0x1bb29a000 - 0x1bb29ffff libmacho.dylib arm64 /usr/lib/system/libmacho.dylib 0x1bb2a0000 - 0x1bb2a2fff libremovefile.dylib arm64 <70bd5e0a7cd63cc5bc40537acc1ab170> /usr/lib/system/libremovefile.dylib 0x1bb2a3000 - 0x1bb2a4fff libsystem_featureflags.dylib arm64 <4e5214ddb6023fb9983fcc322ebbd338> /usr/lib/system/libsystem_featureflags.dylib 0x1bb2a5000 - 0x1bb2d2fff libsystem_m.dylib arm64 <5fc987fd4e38398b90f6eef6d341a9b9> /usr/lib/system/libsystem_m.dylib 0x1bb2d3000 - 0x1bb2d8fff libunwind.dylib arm64 /usr/lib/system/libunwind.dylib 0x1bb5b8000 - 0x1bb61ffff NanoRegistry arm64 <52aa654ffac133b38d519b1fae42f728> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry 0x1bb620000 - 0x1bb62dfff NanoPreferencesSync arm64 /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync 0x1bc02b000 - 0x1bc064fff CryptoTokenKit arm64 <372cbaac3f983cdaa76b4ef549ab6782> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit 0x1bc065000 - 0x1bc07dfff ExposureNotification arm64 <8690d585e715374f81f32cb141ca5913> /System/Library/Frameworks/ExposureNotification.framework/ExposureNotification 0x1bcf51000 - 0x1bcf6ffff AppSSO arm64 /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO 0x1bcf70000 - 0x1bcf84fff AppSSOCore arm64 /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore 0x1bd38f000 - 0x1bd399fff PointerUIServices arm64 <10ec5cd78b4232c798a290e3a51a4385> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices 0x1bd39a000 - 0x1bd41efff SafariSharedUI arm64 <44563ecd6ffc38dfb63fa4927ead6de4> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI ```
EinfachHans commented 4 years ago

@dpa99c Some of our team-member also said that it happens after every update. If i can reproduce this locally in our app, where do i need to debug in app to be able to give you more helpful Information?

dpa99c commented 4 years ago

@dpa99c Some of our team-member also said that it happens after every update. If i can reproduce this locally in our app, where do i need to debug in app to be able to give you more helpful Information?

Need to debug it in Xcode by putting breakpoints on the lines outlined above in the stack trace and inspect the in-scope variables to see if anything looks like an obvious cause (e.g. wrong type or value).

If it happens only after updates, not sure if running a debug version in Xcode on a device which already has a debug version installed acts the same way as an signed release update - worth a try though.

EinfachHans commented 4 years ago

Just happened to me while in Debug Mode.

It first breaked in userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler with: Thread 1: EXC_BAD_ACCESS (code=2, address=0x16fb47ef0)

Console printed out:

warning: could not execute support code to read Objective-C class data in the process. This may reduce the quality of type information available.

Holding Cursor on center showed nil:

Bildschirmfoto 2020-08-04 um 13 39 19

Is this helpful?

EinfachHans commented 4 years ago

Also under Thread 1 the Line "[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:]" appears 1253 Times:

Bildschirmfoto 2020-08-04 um 13 40 40
dpa99c commented 4 years ago

@HansKrywaa definitely helpful. Not sure why the UNUserNotificationCenter instance is nil but that would certainly explain why it raised an exception. Are you able to supply steps/notification message payload to create a reproducible scenario?

EinfachHans commented 4 years ago

Yes. If i kinda Update the App (just increase the Build Number) it always happen to me again.

The Notification Object is:

<UNNotification: 0x28063d410; source: censored date: 2020-08-04 11:44:31 +0000, request: <UNNotificationRequest: 0x28063e9d0; identifier: FB3F37E0-5C07-4D9A-A117-EC300E0C64D7, content: <UNNotificationContent: 0x283269ad0; title: (null), subtitle: (null), body: <redacted>, summaryArgument: , summaryArgumentCount: 0, categoryIdentifier: companionship request, launchImageName: , threadIdentifier: , attachments: (
), badge: (null), sound: <UNNotificationSound: 0x2822f7950>, realert: 0, trigger: <UNPushNotificationTrigger: 0x280b5c990; contentAvailable: NO, mutableContent: NO>>, intents: (
)>

The Content of this Notification is:

<UNNotificationContent: 0x2839467d0; title: (null), subtitle: (null), body: Willst Du Hans Dev mit der censored App begleiten?, summaryArgument: , summaryArgumentCount: 0, categoryIdentifier: companionship request, launchImageName: , threadIdentifier: , attachments: (
), badge: (null), sound: <UNNotificationSound: 0x2829c5b90>, realert: 0

I set a Breakpoint in Line 397: [self.delegate userNotificationCenter:center willPresentNotification:notification withCompletionHandler:completionHandler]; It appeared to me that in a Case where it works, i press continue to next Breakpoint and that's it. In a Case it doesn't works i press continue and every Time the same Breakpoint breaks with a new Call in the Callstack on the left side (see my last comment). Everytime center is not nil. If i disable the breakpoint and continue, the Exception explained above happens and the center is nil

dpa99c commented 4 years ago

OK thanks, that's probably enough info that I can repro the crash. Will have a look when I get some time and investigate.

dpa99c commented 4 years ago

I've had a quick look and I still can't recreate the issue but I think the commit that's responsible for introducing it is this: https://github.com/dpa99c/cordova-plugin-firebasex/commit/4e9a0f4a1fd4ceb871af40629e1ddf146f287ca8

Somehow this is leading to the delegate referencing itself leading to infinite recursion. I'll investigate further how this can be resolved when I get some more time.

TiBz0u commented 4 years ago

I have once the error in debug mode too and as @HansKrywaa explained, and I can confirm the loop on the breakpoint.

@dpa99c , the change you specified make sense.

I'm not an expert iOS but is it normal to keep the "initial delegate" : See line 58 ?

Maybe, we try to call this "null" delegate and it loops from here.

Kr.

cassini-usman commented 4 years ago

While @dpa99c needs more time for investigation, do we have any workaround to prevent the crashes? Since my last release with the addition of firebasex for Analytics, the crash rate in ios is getting up to 1.3%.

It happens always at the receiving of first notification after app updates through TestFlight (crash). After app restarts, it works all fine.

-[AppDelegate(FirebasePlugin) userNotificationCenter:willPresentNotification:withCompletionHandler:] (AppName/Plugins/cordova-plugin-firebasex/AppDelegate+FirebasePlugin.m:387)

dpa99c commented 4 years ago

I was hoping to be able to repro this to be able to confirm a fix but as quick hack you can try this:

Add if(center == nil) return; at line 140 and line 162.

Since it appears this occurs with the UNUserNotificationCenter instance is nil so this should abort before the crash occurs.

eun-choi commented 4 years ago

it's a good news :)

EinfachHans commented 4 years ago

Awesome! 🎉 Please release as fast as possible so we can include it in our next release!

switchstance-devs commented 4 years ago

@dpa99c I'm afraid app still crashes when clicking on notification during first run after update. Please see below crash logs:

Date/Time:           2020-08-12 12:48:16.1984 +0200
Launch Time:         2020-08-12 12:47:44.5740 +0200
OS Version:          iPhone OS 13.4.1 (17E262)
Release Type:        User
Baseband Version:    7.51.01
Report Version:      104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_PROTECTION_FAILURE at 0x000000016b607fd0
VM Region Info: 0x16b607fd0 is in 0x16b604000-0x16b608000;  bytes after start: 16336  bytes before end: 47
      REGION TYPE                      START - END             [ VSIZE] PRT/MAX SHRMOD  REGION DETAIL
      WebKit Malloc          0000000113400000-0000000113500000 [ 1024K] rw-/rwx SM=PRV  
      GAP OF 0x58104000 BYTES
--->  STACK GUARD            000000016b604000-000000016b608000 [   16K] ---/rwx SM=NUL  ... for thread 0
      Stack                  000000016b608000-000000016b704000 [ 1008K] rw-/rwx SM=COW  thread 0

Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [295]
Triggered by Thread:  0

Thread 0 name:
Thread 0 Crashed:
0   libsystem_blocks.dylib          0x00000001b27ca8c8 _Block_copy + 0 (runtime.cpp:189)
1   CoreFoundation                  0x00000001b2abc44c -[__NSMallocBlock retain] + 20 (NSBlock.m:146)
2   MyAppName                           0x000000010472ff28 0x1046fc000 + 212776
3   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
4   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
5   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
6   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
7   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
8   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
9   MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
10  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
11  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
12  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
13  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
14  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
15  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
16  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
17  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
18  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
19  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
20  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
21  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
22  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
23  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
24  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
25  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
26  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
27  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
28  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
29  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
30  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
31  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
32  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
33  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
34  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
35  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
36  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
37  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
38  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
39  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
40  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
41  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
42  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
43  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
44  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
45  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
46  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
47  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
48  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
49  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
50  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
51  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
52  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
53  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
54  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
55  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
56  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
57  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
58  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
59  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
60  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
61  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
62  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
63  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
64  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
65  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
66  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
67  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
68  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
69  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
70  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
71  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
72  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
73  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
74  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
75  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
76  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
77  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
78  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
79  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
80  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
81  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
82  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
83  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
84  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
85  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
86  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
87  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
88  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
89  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
90  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
91  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
92  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
93  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
94  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
95  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
96  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
97  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
98  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
99  MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
100 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
101 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
102 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
103 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
104 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
105 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
106 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
107 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
108 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
109 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
110 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
111 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
112 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
113 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
114 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
115 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
116 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
117 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
118 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
119 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
120 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
121 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
122 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
123 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
124 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
125 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
126 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
127 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
128 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
129 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
130 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
131 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
132 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
133 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
134 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
135 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
136 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
137 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
138 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
139 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
140 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
141 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
142 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
143 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
144 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
145 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
146 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
147 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
148 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
149 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
150 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
151 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
152 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
153 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
154 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
155 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
156 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
157 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
158 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
159 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
160 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
161 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
162 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
163 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
164 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
165 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
166 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
167 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
168 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
169 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
170 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
171 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
172 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
173 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
174 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
175 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
176 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
177 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
178 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
179 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
180 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
181 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
182 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
183 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
184 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
185 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
186 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
187 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
188 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
189 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
190 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
191 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
192 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
193 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
194 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
195 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
196 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
197 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
198 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
199 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
200 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
201 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
202 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
203 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
204 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
205 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
206 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
207 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
208 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
209 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
210 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
211 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
212 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
213 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
214 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
215 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
216 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
217 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
218 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
219 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
220 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
221 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
222 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
223 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
224 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
225 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
226 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
227 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
228 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
229 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
230 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
231 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
232 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
233 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
234 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
235 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
236 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
237 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
238 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
239 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
240 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
241 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
242 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
243 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
244 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
245 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
246 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
247 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
248 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
249 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
250 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
251 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
252 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
253 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
254 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
255 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
256 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
257 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
258 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
259 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
260 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
261 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
262 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
263 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
264 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
265 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
266 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
267 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
268 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
269 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
270 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
271 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
272 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
273 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
274 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
275 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
276 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
277 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
278 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
279 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
280 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
281 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
282 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
283 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
284 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
285 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
286 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
287 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
288 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
289 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
290 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
291 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
292 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
293 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
294 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
295 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
296 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
297 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
298 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
299 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
300 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
301 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
302 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
303 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
304 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
305 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
306 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
307 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
308 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
309 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
310 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
311 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
312 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
313 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
314 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
315 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
316 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
317 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
318 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
319 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
320 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
321 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
322 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
323 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
324 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
325 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
326 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
327 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
328 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
329 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
330 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
331 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
332 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
333 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
334 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
335 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
336 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
337 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
338 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
339 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
340 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
341 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
342 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
343 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
344 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
345 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
346 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
347 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
348 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
349 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
350 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
351 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
352 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
353 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
354 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
355 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
356 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
357 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
358 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
359 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
360 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
361 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
362 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
363 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
364 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
365 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
366 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
367 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
368 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
369 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
370 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
371 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
372 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
373 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
374 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
375 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
376 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
377 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
378 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
379 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
380 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
381 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
382 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
383 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
384 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
385 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
386 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
387 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
388 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
389 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
390 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
391 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
392 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
393 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
394 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
395 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
396 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
397 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
398 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
399 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
400 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
401 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
402 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
403 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
404 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
405 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
406 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
407 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
408 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
409 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
410 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
411 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
412 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
413 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
414 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
415 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
416 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
417 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
418 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
419 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
420 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
421 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
422 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
423 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
424 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
425 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
426 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
427 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
428 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
429 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
430 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
431 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
432 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
433 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
434 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
435 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
436 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
437 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
438 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
439 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
440 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
441 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
442 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
443 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
444 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
445 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
446 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
447 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
448 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
449 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
450 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
451 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
452 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
453 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
454 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
455 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
456 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
457 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
458 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
459 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
460 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
461 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
462 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
463 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
464 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
465 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
466 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
467 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
468 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
469 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
470 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
471 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
472 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
473 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
474 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
475 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
476 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
477 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
478 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
479 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
480 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
481 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
482 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
483 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
484 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
485 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
486 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
487 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
488 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
489 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
490 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
491 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
492 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
493 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
494 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
495 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
496 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
497 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
498 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
499 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
500 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
501 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
502 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
503 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
504 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
505 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
506 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
507 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
508 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
509 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892
510 MyAppName                           0x000000010472ff9c 0x1046fc000 + 212892

Thread 1 name:
Thread 1:
0   libsystem_kernel.dylib          0x00000001b29b0198 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001b29af60c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                  0x00000001b2b5a3b4 __CFRunLoopServiceMachPort + 148 (CFRunLoop.c:2575)
3   CoreFoundation                  0x00000001b2b553e8 __CFRunLoopRun + 1160 (CFRunLoop.c:2931)
4   CoreFoundation                  0x00000001b2b54c34 CFRunLoopRunSpecific + 424 (CFRunLoop.c:3192)
5   Foundation                      0x00000001b2e97bcc -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 228 (NSRunLoop.m:374)
6   Foundation                      0x00000001b2e97aac -[NSRunLoop(NSRunLoop) runUntilDate:] + 88 (NSRunLoop.m:421)
7   UIKitCore                       0x00000001b6d29160 -[UIEventFetcher threadMain] + 152 (UIEventFetcher.m:736)
8   Foundation                      0x00000001b2fc69d0 __NSThread__start__ + 848 (NSThread.m:724)
9   libsystem_pthread.dylib         0x00000001b28f2d98 _pthread_start + 156 (pthread.c:896)
10  libsystem_pthread.dylib         0x00000001b28f674c thread_start + 8

Thread 2 name:
Thread 2:
0   libsystem_kernel.dylib          0x00000001b29d1b58 __psynch_cvwait + 8
1   libsystem_pthread.dylib         0x00000001b28ebce4 _pthread_cond_wait$VARIANT$mp + 680 (pthread_cond.c:591)
2   libc++.1.dylib                  0x00000001b2a237ac std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 24 (__threading_support:295)
3   JavaScriptCore                  0x00000001c1ac5dec void std::__1::condition_variable_any::wait<std::__1::unique_lock<bmalloc::Mutex> >(std::__1::uni... + 108 (condition_variable:203)
4   JavaScriptCore                  0x00000001c1ac9ac4 bmalloc::Scavenger::threadRunLoop() + 160 (condition_variable:212)
5   JavaScriptCore                  0x00000001c1ac97d4 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger*) + 12 (Scavenger.cpp:385)
6   JavaScriptCore                  0x00000001c1acaa18 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, st... + 40 (type_traits:4425)
7   libsystem_pthread.dylib         0x00000001b28f2d98 _pthread_start + 156 (pthread.c:896)
8   libsystem_pthread.dylib         0x00000001b28f674c thread_start + 8

Thread 3 name:
Thread 3:
0   libsystem_kernel.dylib          0x00000001b29b0198 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001b29af60c mach_msg + 72 (mach_msg.c:103)
2   MyAppName                           0x00000001048f5d74 FIRCLSMachExceptionReply + 100 (FIRCLSMachException.c:260)
3   MyAppName                           0x00000001048f5d74 FIRCLSMachExceptionServer + 884 (FIRCLSMachException.c:178)
4   libsystem_pthread.dylib         0x00000001b28f2d98 _pthread_start + 156 (pthread.c:896)
5   libsystem_pthread.dylib         0x00000001b28f674c thread_start + 8

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

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

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

Thread 7 name:
Thread 7:
0   libsystem_kernel.dylib          0x00000001b29b0198 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001b29af60c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                  0x00000001b2b5a3b4 __CFRunLoopServiceMachPort + 148 (CFRunLoop.c:2575)
3   CoreFoundation                  0x00000001b2b553e8 __CFRunLoopRun + 1160 (CFRunLoop.c:2931)
4   CoreFoundation                  0x00000001b2b54c34 CFRunLoopRunSpecific + 424 (CFRunLoop.c:3192)
5   CFNetwork                       0x00000001b5e19c44 -[__CoreSchedulingSetRunnable runForever] + 192 (CoreSchedulingSet.mm:1372)
6   Foundation                      0x00000001b2fc69d0 __NSThread__start__ + 848 (NSThread.m:724)
7   libsystem_pthread.dylib         0x00000001b28f2d98 _pthread_start + 156 (pthread.c:896)
8   libsystem_pthread.dylib         0x00000001b28f674c thread_start + 8

Thread 8 name:
Thread 8:
0   libsystem_kernel.dylib          0x00000001b29b0198 mach_msg_trap + 8
1   libsystem_kernel.dylib          0x00000001b29af60c mach_msg + 72 (mach_msg.c:103)
2   CoreFoundation                  0x00000001b2b5a3b4 __CFRunLoopServiceMachPort + 148 (CFRunLoop.c:2575)
3   CoreFoundation                  0x00000001b2b553e8 __CFRunLoopRun + 1160 (CFRunLoop.c:2931)
4   CoreFoundation                  0x00000001b2b54c34 CFRunLoopRunSpecific + 424 (CFRunLoop.c:3192)
5   CoreFoundation                  0x00000001b2b55990 CFRunLoopRun + 60 (CFRunLoop.c:3216)
6   CoreMotion                      0x00000001bf7ba188 CLMotionCore::runMotionThread(void*) + 1096 (CLMotionCore.mm:354)
7   libsystem_pthread.dylib         0x00000001b28f2d98 _pthread_start + 156 (pthread.c:896)
8   libsystem_pthread.dylib         0x00000001b28f674c thread_start + 8

Thread 9:
0   libsystem_pthread.dylib         0x00000001b28f6738 start_wqthread + 0

Thread 10:
0   libsystem_pthread.dylib         0x00000001b28f6738 start_wqthread + 0

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000283b63330   x1: 0x00000001ed689986   x2: 0x0000000283b80e70   x3: 0x0000000283b67780
    x4: 0x0000000283b63330   x5: 0x0000000000000000   x6: 0x0000000105d0d670   x7: 0x0000000000000002
    x8: 0x00000001ed689000   x9: 0x00000001ed689986  x10: 0x0000000105d61fe0  x11: 0x001f000105d61fe0
   x12: 0x0000000105d62030  x13: 0x00000001fec1b130  x14: 0x0000000000000018  x15: 0x0000000104f79b18
   x16: 0x00000001fec1b130  x17: 0x00000001b2abc438  x18: 0x0000000000000000  x19: 0x0000000283b63330
   x20: 0x0000000283b63330  x21: 0x0000000283b67780  x22: 0x00000002835d5ba0  x23: 0x0000000283b63330
   x24: 0x00000001fc05e000  x25: 0x0000000283b80e70  x26: 0x00000002835d5ba0  x27: 0x00000001f36559b8
   x28: 0x0000000283b67780   fp: 0x000000016b608010   lr: 0x00000001b2abc44c
    sp: 0x000000016b608000   pc: 0x00000001b27ca8c8 cpsr: 0x60000000
   esr: 0x92000047 (Data Abort) byte write Translation fault

Binary Images:
0x1046fc000 - 0x104efffff MyAppName arm64  <ba1ad6de1c6936739d9a544e7d71cf93> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/MyAppName
0x1051b8000 - 0x1051d7fff AppAuth arm64  <7a50ed3039ee38529bd45c397a9f1ff2> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/AppAuth.framework/AppAuth
0x10521c000 - 0x10528bfff Branch arm64  <0cc3681769e5395bb6509a6c2f24be47> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/Branch.framework/Branch
0x105360000 - 0x1053c3fff dyld arm64  <23eead922ec9376cbb08574507ab6177> /usr/lib/dyld
0x10543c000 - 0x10544ffff FBLPromises arm64  <ab12d2846a8131b3afd415cf6b9a550a> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/FBLPromises.framework/FBLPromises
0x105474000 - 0x1054fffff FBSDKCoreKit arm64  <9fc4c5ea32063ce3a95a0384c5149f3d> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
0x1055f0000 - 0x10560bfff FBSDKLoginKit arm64  <3c32455244b6342cb9a88a500c7cb10e> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
0x105638000 - 0x105673fff FBSDKShareKit arm64  <b512eab65d5e3b0d979803cda68b7be8> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/FBSDKShareKit.framework/FBSDKShareKit
0x1056f4000 - 0x1056fffff GTMAppAuth arm64  <3cc8600ae4bb3ec0bea5db5d271da19c> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/GTMAppAuth.framework/GTMAppAuth
0x105718000 - 0x105743fff GTMSessionFetcher arm64  <66e116e7a00132da8f0f1b113224106f> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/GTMSessionFetcher.framework/GTMSessionFetcher
0x105790000 - 0x10579bfff GoogleToolboxForMac arm64  <94b4784e38613f978e87e85a32dbba4b> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/GoogleToolboxForMac.framework/GoogleToolboxForMac
0x1057b4000 - 0x1057d7fff GoogleUtilities arm64  <c564b3fb210139c294dee08d5f7ef58a> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x105818000 - 0x105867fff Protobuf arm64  <4afd04936fa03e0882fc9fa76832fd16> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/Protobuf.framework/Protobuf
0x105918000 - 0x10594bfff TwitterCore arm64  <47826d42615b3eeab5cedc3dd49302d5> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/TwitterCore.framework/TwitterCore
0x1059a4000 - 0x105af7fff TwitterKit arm64  <0989ba857361363e8419e8d832929d4a> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/TwitterKit.framework/TwitterKit
0x105c7c000 - 0x105c87fff nanopb arm64  <2aeb4e55312531a386c959e552b0e353> /var/containers/Bundle/Application/12AC6EAB-D8BF-415F-A3FE-A3A0E273A6DE/MyAppName.app/Frameworks/nanopb.framework/nanopb
0x105f5c000 - 0x105f67fff libobjc-trampolines.dylib arm64  <2df134bae62230edb227eb9333bfa4d9> /usr/lib/libobjc-trampolines.dylib
0x1b2781000 - 0x1b2797fff libsystem_trace.dylib arm64  <f67d8aff28893f9abf166036c3203325> /usr/lib/system/libsystem_trace.dylib
0x1b2798000 - 0x1b27c9fff libxpc.dylib arm64  <9e9d069de3b136fa85755e1d9e6b6b54> /usr/lib/system/libxpc.dylib
0x1b27ca000 - 0x1b27cafff libsystem_blocks.dylib arm64  <0afa438b8355370794f5015ad81f32df> /usr/lib/system/libsystem_blocks.dylib
0x1b27cb000 - 0x1b2846fff libsystem_c.dylib arm64  <8d39ff48e14c3f868e1090f54896bb65> /usr/lib/system/libsystem_c.dylib
0x1b2847000 - 0x1b28bbfff libdispatch.dylib arm64  <5a83d0cf8fb937278a32012d20a47ec8> /usr/lib/system/libdispatch.dylib
0x1b28bc000 - 0x1b28dcfff libsystem_malloc.dylib arm64  <a0a7d67af0f3399a8f006f92716d8e6f> /usr/lib/system/libsystem_malloc.dylib
0x1b28dd000 - 0x1b28e7fff libsystem_platform.dylib arm64  <a5d5822c76223859b0c0b869b7e244b5> /usr/lib/system/libsystem_platform.dylib
0x1b28e8000 - 0x1b28f8fff libsystem_pthread.dylib arm64  <fb1dd49f0cfb3114bdb40ef7be44f6bc> /usr/lib/system/libsystem_pthread.dylib
0x1b28f9000 - 0x1b292afff libobjc.A.dylib arm64  <091241f8e94c39ba9ca67352e998bb41> /usr/lib/libobjc.A.dylib
0x1b292b000 - 0x1b2992fff libcorecrypto.dylib arm64  <28c07c08a95635b1b04e88d84542020b> /usr/lib/system/libcorecrypto.dylib
0x1b2993000 - 0x1b29abfff libc++abi.dylib arm64  <f07199ac8a903127b17f0a906ffb7302> /usr/lib/libc++abi.dylib
0x1b29ac000 - 0x1b29dafff libsystem_kernel.dylib arm64  <b422ba38a9f63062be28d28d39e3fe25> /usr/lib/system/libsystem_kernel.dylib
0x1b29db000 - 0x1b2a0dfff libdyld.dylib arm64  <876fb49abfba37bfad376ffc90f7f981> /usr/lib/system/libdyld.dylib
0x1b2a0e000 - 0x1b2a16fff libsystem_darwin.dylib arm64  <fc50d2ff80ac31179ff0608fa6cff3a3> /usr/lib/system/libsystem_darwin.dylib
0x1b2a17000 - 0x1b2a70fff libc++.1.dylib arm64  <d7934e7f3eed3c078d1342fe55250c88> /usr/lib/libc++.1.dylib
0x1b2a71000 - 0x1b2ab1fff libsystem_info.dylib arm64  <6a94223de5dc3df6b89780ba56191d92> /usr/lib/system/libsystem_info.dylib
0x1b2ab2000 - 0x1b2e25fff CoreFoundation arm64  <409609cd841038e1ba5dbded609d2018> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1b2e26000 - 0x1b2e8ffff SystemConfiguration arm64  <b1f843cc55883c0ba02fc5b80883cc9c> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1b2e90000 - 0x1b3147fff Foundation arm64  <1a46239df2fc34b695bc9f38869f0c85> /System/Library/Frameworks/Foundation.framework/Foundation
0x1b3148000 - 0x1b317afff libCRFSuite.dylib arm64  <b5116ed3cf69347d85687d2c8d5d76c0> /usr/lib/libCRFSuite.dylib
0x1b317b000 - 0x1b32f5fff CoreServices arm64  <43035d98ba1c3d5d972fd61df826fcb3> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1b32f6000 - 0x1b3356fff libSparse.dylib arm64  <fd83188d02163838a7c012b81f36e440> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1b3357000 - 0x1b3841fff ImageIO arm64  <428fc36a6d0234b5a10cc2cf6f9e0674> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1b3842000 - 0x1b3844fff ConstantClasses arm64  <07aead6b70b73890b27f7aea1cd02350> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1b3845000 - 0x1b39e3fff CoreText arm64  <3a068b6f533e36b18e9823833c815854> /System/Library/Frameworks/CoreText.framework/CoreText
0x1b39e4000 - 0x1b3b19fff Security arm64  <d5a88c36cb0932a6906055bbc4b6817d> /System/Library/Frameworks/Security.framework/Security
0x1b3b1a000 - 0x1b3bbdfff IOKit arm64  <d138895882be3a12964aa53ca8da1b74> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1b3bbe000 - 0x1b3bf5fff libMobileGestalt.dylib arm64  <fe7d38beb09530eca24b70bc964ec273> /usr/lib/libMobileGestalt.dylib
0x1b3bf6000 - 0x1b3c52fff libprotobuf.dylib arm64  <027d49d7fea839cda49a4a4fb32c7f6f> /usr/lib/libprotobuf.dylib
0x1b3c53000 - 0x1b3c64fff libprotobuf-lite.dylib arm64  <2c82919a66fa30a7841320190f2c202d> /usr/lib/libprotobuf-lite.dylib
0x1b3c65000 - 0x1b3eb5fff libicucore.A.dylib arm64  <e00735d86bab31f8acbac8fdb01f290e> /usr/lib/libicucore.A.dylib
0x1b3eb6000 - 0x1b3edffff CoreServicesInternal arm64  <7b6acc45f64532258e2012c49fbcde7a> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1b3ee0000 - 0x1b3f27fff WirelessDiagnostics arm64  <dc60c14089ab3ecb916e94fb63a2ae46> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1b3f28000 - 0x1b3f61fff libAWDSupport.dylib arm64  <52926ffdcfd0397881e93a4df6893672> /usr/lib/libAWDSupport.dylib
0x1b3f62000 - 0x1b43e6fff CoreAudio arm64  <e467570caf523683bf36ce2594f1c98e> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1b43e7000 - 0x1b46b3fff CoreImage arm64  <4aee50c9e546312ead5d721a6afdb059> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1b46b4000 - 0x1b47a2fff LanguageModeling arm64  <1d022988ea363113a096c2f107568542> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1b47a3000 - 0x1b47e9fff Lexicon arm64  <9d08273daeac34e78493ff7bff76cab2> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1b47ea000 - 0x1b496cfff libsqlite3.dylib arm64  <4fadb9ee56a73afca3604780ddf3411b> /usr/lib/libsqlite3.dylib
0x1b496d000 - 0x1b499ffff MobileKeyBag arm64  <6cf66de926bb32089688747ed1dbd888> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1b49a0000 - 0x1b49a9fff libsystem_notify.dylib arm64  <21a918766a2c3f89855046e0f854018a> /usr/lib/system/libsystem_notify.dylib
0x1b49aa000 - 0x1b4b8bfff CoreDuet arm64  <5640bda664273303800ed189c16e8049> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1b4b8c000 - 0x1b4ccefff Montreal arm64  <69a3d186833f35c5963a43e4d365e897> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b4ccf000 - 0x1b4db5fff NLP arm64  <22401c0f186737c295999afaf82b1840> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1b4db6000 - 0x1b4dd3fff CellularPlanManager arm64  <c88939c958243367b5401c11b803b8d1> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1b4dd4000 - 0x1b4e11fff AppSupport arm64  <1731e2fba0303bdbb0cf8b02e5e56ecd> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1b4e12000 - 0x1b52e3fff libnetwork.dylib arm64  <cf9b76bf435b38d2aed3fb2c050d9216> /usr/lib/libnetwork.dylib
0x1b52e4000 - 0x1b53f0fff ManagedConfiguration arm64  <a40f654260d932528c5ebff3f5575cab> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1b53f1000 - 0x1b541afff CoreServicesStore arm64  <c16b4fad3e753a2e85d67639481e8080> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1b541b000 - 0x1b543bfff UserManagement arm64  <ad5afd364e75332288e4a3bbcce41b5a> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1b543c000 - 0x1b56f3fff CoreML arm64  <4b1ed9735bef37929aa9775df017a4f2> /System/Library/Frameworks/CoreML.framework/CoreML
0x1b56f4000 - 0x1b570afff ProtocolBuffer arm64  <4e652067e296363bbfa380eba32585ad> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1b570b000 - 0x1b5725fff CommonUtilities arm64  <8c65f3b91e6d322ebeedf8a0e60e717a> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1b5726000 - 0x1b5726fff libenergytrace.dylib arm64  <b9fc54b519c53301bda0c5607f0e7806> /usr/lib/libenergytrace.dylib
0x1b5727000 - 0x1b575dfff RunningBoardServices arm64  <c78723a9f231370b8944596226f2b836> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x1b575e000 - 0x1b57dbfff BaseBoard arm64  <33a252545a9730ab9cc7fad0345d4758> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1b57dc000 - 0x1b5d31fff SiriTTS arm64  <f4cc905a59803fe5b6283c8d3b2e70c7> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1b5d32000 - 0x1b5da4fff CoreLocation arm64  <c8b1e677d38435d38b12bab96c65a426> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1b5db2000 - 0x1b5e06fff Accounts arm64  <75940abf4f773731855da69467dbb796> /System/Library/Frameworks/Accounts.framework/Accounts
0x1b5e07000 - 0x1b5e17fff SharedWebCredentials arm64  <1393d99cb36e3c7083e82748f44855b0> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1b5e18000 - 0x1b617afff CFNetwork arm64  <c4865497192b3dbe81e984a99b788adf> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1b617b000 - 0x1b625afff UIFoundation arm64  <5633754447e039efbb34f207fda2553c> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1b625b000 - 0x1b736ffff UIKitCore arm64  <3062ff32218237a2a5f9b38f6fb6b8c3> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1b7370000 - 0x1b737dfff AssertionServices arm64  <eff14a5c8feb33c1ac3004921caa2a25> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1b737e000 - 0x1b7450fff CoreTelephony arm64  <f04a58a0c439319784c1f4ea154f6363> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1b7451000 - 0x1b7456fff AggregateDictionary arm64  <e0ce74236eb13c98bb05186b7f4e3d2b> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1b7457000 - 0x1b746dfff libsystem_asl.dylib arm64  <24190e9ac7db3006b4dfc5e64e85774a> /usr/lib/system/libsystem_asl.dylib
0x1b746e000 - 0x1b74e6fff CloudDocs arm64  <c2f43b62730b3b8ba93d6acca741d864> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x1b74e7000 - 0x1b780ffff CoreData arm64  <a654d396b79c3f469e3fbe9ec0ee1af4> /System/Library/Frameworks/CoreData.framework/CoreData
0x1b7810000 - 0x1b7a35fff Vision arm64  <958d82a44f733f0f96350b6f68bd9381> /System/Library/Frameworks/Vision.framework/Vision
0x1b7a36000 - 0x1b7a78fff PhotoFoundation arm64  <9e49f30ca736349893a9716346e41898> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1b7a79000 - 0x1b7aa4fff BoardServices arm64  <728b59e6907e31e5892de5b2c55c48ce> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x1b7aa5000 - 0x1b7b5afff libboringssl.dylib arm64  <e764c033b42637618fe522445b621fcf> /usr/lib/libboringssl.dylib
0x1b7b5b000 - 0x1b7b69fff libsystem_networkextension.dylib arm64  <3a3722da76863c2a99c2cce0e3924bf7> /usr/lib/system/libsystem_networkextension.dylib
0x1b7b6a000 - 0x1b7b8afff CoreAnalytics arm64  <85843ee0a89b3316a3e68531eba75336> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1b7b8b000 - 0x1b7cfbfff CloudKit arm64  <d54d14692ec130d7b5af5f852438dc3e> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1b7cfc000 - 0x1b7d49fff SpringBoardServices arm64  <50878840805636d7bff4a6aa6d6cdfa9> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1b7d4a000 - 0x1b7dbcfff FrontBoardServices arm64  <ca8e712fa22732ae842b65567f6046bb> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1b7dbd000 - 0x1b7ee4fff Network arm64  <38a032852b86333e95c553eb41e5d3e5> /System/Library/Frameworks/Network.framework/Network
0x1b7ee5000 - 0x1b7f41fff libusrtcp.dylib arm64  <10fe0faf8a4d3bcfbc43e8a951656957> /usr/lib/libusrtcp.dylib
0x1b7f42000 - 0x1b7f49fff libsystem_symptoms.dylib arm64  <a0e89bc6db7f3c578468bdc9ae67fdcb> /usr/lib/system/libsystem_symptoms.dylib
0x1b7f4a000 - 0x1b8e34fff GeoServices arm64  <d2fc5b30d98a352d952013a5b60a073b> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1b8e35000 - 0x1b8e3dfff TCC arm64  <e8eb1bfdf24d34f2a53b5d0700632050> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1b8e3e000 - 0x1b8e97fff IMFoundation arm64  <b2d85b147b823944beebc644d365b564> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1b8e98000 - 0x1b900bfff CoreUtils arm64  <b642c3a48cdc3b1aba6d651b7e00d61c> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1b900c000 - 0x1b90bdfff IMSharedUtilities arm64  <7e3c3dc898663d13b83dffaa5a1170a5> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x1b90be000 - 0x1b90f3fff ImageCaptureCore arm64  <99700767f48d36cb8ccb1d9e33962eda> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1b90f4000 - 0x1b90fdfff libsystem_containermanager.dylib arm64  <4764ee5a2f0a3fbb8a756f60f0e02cd8> /usr/lib/system/libsystem_containermanager.dylib
0x1b90fe000 - 0x1b9179fff AppleAccount arm64  <972cea5083b43105b83f737be8ad7a43> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1b917a000 - 0x1b9194fff ApplePushService arm64  <89033f36d91031a594a517ecea968a3a> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1b9195000 - 0x1b927dfff IDS arm64  <cf2b018761f736d4a1dfad15aa703c85> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1b927e000 - 0x1b93a8fff IDSFoundation arm64  <a6bd395156ff3624b78997bb3ed24a06> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1b93a9000 - 0x1b93aafff libCTGreenTeaLogger.dylib arm64  <2ab5f36320803bda84913992c492743e> /usr/lib/libCTGreenTeaLogger.dylib
0x1b940f000 - 0x1b950ffff CoreMedia arm64  <b9bf44cd041a37af8879451f66687468> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1b9510000 - 0x1b951ffff UIKitServices arm64  <0eeb42c795483dba82a142eeda85503e> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1b9520000 - 0x1b957dfff BackBoardServices arm64  <6f0540d2fedc308eacff631bff19cd69> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1b957e000 - 0x1b97cffff QuartzCore arm64  <ba9eccee9f613baab8a88eb3b7e0a24f> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1b97d0000 - 0x1b9897fff ColorSync arm64  <503c108270703f1786df14588e7f9ff7> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1b9898000 - 0x1b9e07fff CoreGraphics arm64  <e068b7652d603d90aba30df6da3578bc> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1b9e08000 - 0x1b9f37fff Contacts arm64  <18807e6ef924349a9384161c92390665> /System/Library/Frameworks/Contacts.framework/Contacts
0x1b9f38000 - 0x1b9f66fff UserNotifications arm64  <44b07041e9723af2a6446a04bc8588a7> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1b9f67000 - 0x1b9f8afff LocationSupport arm64  <470b39d55daf3170b1a38841292d494d> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x1b9f8b000 - 0x1ba0e6fff Sharing arm64  <34759ac26e85385f9cca89d83469028d> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1ba0e7000 - 0x1ba726fff WebKit arm64  <0d71fc8cc7e331948094d1c767c7bc09> /System/Library/Frameworks/WebKit.framework/WebKit
0x1ba727000 - 0x1bc4dbfff WebCore arm64  <fbf9a3b9df503629af395c41d3e4e83a> /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1bc4dc000 - 0x1bc4f6fff libAccessibility.dylib arm64  <f55983edebf933948322efaefe1ecbca> /usr/lib/libAccessibility.dylib
0x1bc4f7000 - 0x1bc502fff AXCoreUtilities arm64  <c9ced073466a32208dbabf96d0a50f15> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1bc503000 - 0x1bc576fff ContactsFoundation arm64  <0ba958ac9959337ca4d72b34bd2d50aa> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1bc577000 - 0x1bc58bfff PowerLog arm64  <eec0214c57da38818a8622fde679829c> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1bc58c000 - 0x1bc59dfff IOSurface arm64  <4abf1719833c3f8db61863ff9b392891> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1bc59e000 - 0x1bcc9afff MediaToolbox arm64  <bce0f04fbe4d3f55bce62184be284bfd> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1bcc9b000 - 0x1bcca3fff GraphicsServices arm64  <aea26bf9483739a29902950b92b52592> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1bcca4000 - 0x1bcd8bfff AccessibilityUtilities arm64  <08d2bcd32ab83f8092501c61f87023db> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x1bcd8c000 - 0x1bcf84fff AVFoundation arm64  <20bfceb457453bd2a5b3ce71ea50c1b2> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1bcf85000 - 0x1bcfbcfff OnBoardingKit arm64  <e2e88272c1933ba4b9f2245bc7dba1e1> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x1bcfbd000 - 0x1bd00bfff MobileWiFi arm64  <3e4f5fc8825839f084694f7c77d62907> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1bd00c000 - 0x1bd024fff MobileAsset arm64  <9a597efb899f383a867473d91b06eb94> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1bd025000 - 0x1bd032fff libGSFont.dylib arm64  <59fe7a3b9b8437a7a992bdae0faab9d6> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x1bd033000 - 0x1bd03cfff FontServices arm64  <2b26f3985f9030d39a40bfe0df98686b> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1bd03d000 - 0x1bd186fff libFontParser.dylib arm64  <cac8dc5601323efd9875a5e886d92ea8> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1bd187000 - 0x1bd1d2fff AXRuntime arm64  <1bf005f54f9c3c5b9fda419692ab5039> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x1bd1d3000 - 0x1bd1d5fff libAXSafeCategoryBundle.dylib arm64  <0647401436ea3e41a216da49a20c27a6> /usr/lib/libAXSafeCategoryBundle.dylib
0x1bd1d6000 - 0x1bd30ffff SearchFoundation arm64  <e91f6d1fcdd23a1595d49b7ed678ec0a> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1bd310000 - 0x1bd42efff Preferences arm64  <9cb3558569ea3b2c8a520db57aba8688> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1bd42f000 - 0x1bda9dfff PhotoLibraryServices arm64  <7e2dec0b4e49338fb908b97df773b12a> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1bda9e000 - 0x1bdd02fff vImage arm64  <1987440ca5e638368a23cd7341b1932a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1bdd03000 - 0x1bdf37fff AudioToolbox arm64  <9eea0978fcad33cc9e3035ea939b2143> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1bdf38000 - 0x1bdf6afff libAudioToolboxUtility.dylib arm64  <5e0ec0bf47f03853a777ea0123cdecaa> /usr/lib/libAudioToolboxUtility.dylib
0x1bdf6b000 - 0x1be127fff ContactsUI arm64  <f9dc4b6c059f37809b709240dcc469ac> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1be128000 - 0x1be191fff UIAccessibility arm64  <58bafe0cc769397fb7b29554f1f77749> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
0x1be192000 - 0x1be396fff Photos arm64  <beb29988134830ce91e9ba3af86440a0> /System/Library/Frameworks/Photos.framework/Photos
0x1be397000 - 0x1be42bfff ShareSheet arm64  <0e75ee0b6aeb34c69e1403fe2a0b602a> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x1be42c000 - 0x1be43ffff BaseBoardUI arm64  <5d95725058ed3df2a41c71a5d4726900> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x1be440000 - 0x1be4f4fff PDFKit arm64  <d8c1fee5d77635d895bbd3b646f269fc> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1be572000 - 0x1be59ffff DocumentManager arm64  <df6155e3a82c3b98aad02755b34ffac2> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1be5a0000 - 0x1be7fafff libmecabra.dylib arm64  <1157edfce8ad3df6a01b4ebb2f100af0> /usr/lib/libmecabra.dylib
0x1be7fb000 - 0x1be872fff AuthKit arm64  <2fda46a0c0c03b0e8222936e5ef11f24> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1be873000 - 0x1bec8ffff Intents arm64  <4c28f731a5bf380abec95b89347dcca6> /System/Library/Frameworks/Intents.framework/Intents
0x1beca5000 - 0x1bee04fff WebKitLegacy arm64  <dd6cd4bf7b9535ea92c9c5d914af546b> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1bee05000 - 0x1bee6ffff TextInput arm64  <982b9b2cc64d3667aeb3863f355e5f6f> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1bee70000 - 0x1beeeafff AXMediaUtilities arm64  <58f1ede868c134f59db1842bdcdfc608> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
0x1beeeb000 - 0x1beeeefff XCTTargetBootstrap arm64  <5c185207156334bcbfddbae1d7470d2b> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1beeef000 - 0x1befa3fff CorePDF arm64  <4068ec815d3438b59ad58c2ae7167ef4> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1befa4000 - 0x1befdefff AccessibilityUIUtilities arm64  <95663a65573e305d8caefd5f89977aa8> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x1befdf000 - 0x1bf390fff MediaPlayer arm64  <2730d66693cf3968b472685e5323ea96> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1bf391000 - 0x1bf6a8fff AppleMediaServices arm64  <bfd95f83910f387e9876e28ebdd4dd57> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1bf6a9000 - 0x1bf6cffff CacheDelete arm64  <0c48aade3fe43589acc552d3e119c591> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1bf6d0000 - 0x1bf897fff CoreMotion arm64  <70ed3ef1d8263d55b5eae657ac5e8057> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1bf898000 - 0x1bf985fff AVFAudio arm64  <1df3312395353945983fb139a4216fa9> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1bfba3000 - 0x1bfc59fff CoreUI arm64  <d90479e8d57435b1a4cbab0423d21770> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1bfc5a000 - 0x1bfc7efff AppSupportUI arm64  <7264f3b8500e30b0ad4e3f00500d64bd> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1bfc7f000 - 0x1bfcb4fff CoreVideo arm64  <443ef021c4123a32a3970433993d16fe> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1bfcb5000 - 0x1bfeebfff AudioToolboxCore arm64  <5cc99c07d3b3317aa0aa90b7edb05d00> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x1bfeec000 - 0x1bff2ffff CoreDuetContext arm64  <badc9da39c60341aa29c34542cb16158> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1bff30000 - 0x1bff6afff SetupAssistant arm64  <3f5a75d178773381875c6c41678d79e1> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1bff6b000 - 0x1c0027fff TelephonyUtilities arm64  <5c63d78ffe1433738deae30f6c98838d> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1c0028000 - 0x1c0052fff PlugInKit arm64  <5d4ad58191a23317a0d2ee6357784767> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1c0053000 - 0x1c03d5fff libswiftCore.dylib arm64  <dcbc2d499c313dbebcf3b0f5205f87fe> /usr/lib/swift/libswiftCore.dylib
0x1c03d6000 - 0x1c0511fff AssistantServices arm64  <a8b7086d107935e5a99f4496e472e170> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x1c0512000 - 0x1c0571fff ProactiveSupport arm64  <f139ee3c405538eb8b0e3157dfeb850b> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1c0572000 - 0x1c07b4fff MapKit arm64  <7029e175072a3830a8d7e0402b5e3436> /System/Library/Frameworks/MapKit.framework/MapKit
0x1c07b5000 - 0x1c07d1fff PrototypeTools arm64  <cc8e1d9d10a23e8785900518b23242dd> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1c07d2000 - 0x1c08c3fff MediaExperience arm64  <d3696f197c97386d855765ea3931bdea> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x1c08c4000 - 0x1c0b98fff Celestial arm64  <f23ff8ceade230c2946daf42793d76ab> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1c0b99000 - 0x1c0bf5fff CallKit arm64  <43fdc2704c013b87a03e8d080c082b83> /System/Library/Frameworks/CallKit.framework/CallKit
0x1c0bf6000 - 0x1c0dbafff EventKitUI arm64  <79fc1a551ac53966a1d5e1f30e90fde0> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x1c0dbb000 - 0x1c14b1fff VectorKit arm64  <5655a0aafafb3c3d8b69a2ef8e8e2146> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1c14b2000 - 0x1c1581fff AVKit arm64  <2afc669447223d058ee6c706b54cbb35> /System/Library/Frameworks/AVKit.framework/AVKit
0x1c1582000 - 0x1c15b0fff Pegasus arm64  <8b990cff02533a6782f88bd0831837f4> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1c15b1000 - 0x1c15b3fff libapp_launch_measurement.dylib arm64  <2741e56c89873a20acde4979ee28be22> /usr/lib/libapp_launch_measurement.dylib
0x1c15c9000 - 0x1c162bfff CoreSpotlight arm64  <73ad186f492c3a338c9f3cea760b172f> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1c162c000 - 0x1c16c3fff AddressBookLegacy arm64  <e45307d41ffb3a969616fe7e59195de2> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1c16c4000 - 0x1c16d3fff CrashReporterSupport arm64  <8f50c9095b293180a908ffdbdeecede3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1c16d4000 - 0x1c16e6fff MobileBluetooth arm64  <1b74874575393ca9ae852aed2a9fcaab> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1c16e7000 - 0x1c17a0fff LinkPresentation arm64  <652903c4cccb3fb38ef4495e900b809b> /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x1c17a1000 - 0x1c17d8fff StoreKit arm64  <f61422d2afeb39bd9143458d82a29536> /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1c17d9000 - 0x1c17ddfff libsystem_configuration.dylib arm64  <1f77794460993bc0a06207f2193781f6> /usr/lib/system/libsystem_configuration.dylib
0x1c17de000 - 0x1c1838fff RemoteUI arm64  <2f684cc557103242b20baf988113cb51> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x1c1839000 - 0x1c188efff AuthKitUI arm64  <629ab78d4fc83ddfb4d6a2126d3215f5> /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x1c188f000 - 0x1c18f4fff CoreRecognition arm64  <2ebd686e061537b7a7b8e68085e0fba0> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1c18f5000 - 0x1c1977fff Social arm64  <286389b70f603f62ad78a0c38377938f> /System/Library/Frameworks/Social.framework/Social
0x1c19c5000 - 0x1c19d3fff HangTracer arm64  <f7cd6e3068023cb8b89cfb387970d104> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1c19d4000 - 0x1c1a39fff CoreNLP arm64  <bc2c4aea12293a0fab1f92fc80182f74> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1c1a3a000 - 0x1c1a3bfff liblangid.dylib arm64  <e1c11f41cd7031148ffeb431b53b9fdd> /usr/lib/liblangid.dylib
0x1c1a3c000 - 0x1c28c7fff JavaScriptCore arm64  <aaf4e988dfd33f50af21779cf1258c80> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1c28c8000 - 0x1c2955fff libTelephonyUtilDynamic.dylib arm64  <a187f39512fe32d99a85829691a49f64> /usr/lib/libTelephonyUtilDynamic.dylib
0x1c296a000 - 0x1c2be8fff StoreServices arm64  <ec2375561d7b3b6aad035307560492cd> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1c2be9000 - 0x1c2bf2fff IOMobileFramebuffer arm64  <7462439e125833758ae73bd083b45ae2> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1c2bf3000 - 0x1c2d7afff SafariServices arm64  <140f2dc426773ad0a53b9091cc230645> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1c2d7b000 - 0x1c2f52fff Message arm64  <4252efde3f2e3f06b90767acf0e4cafd> /System/Library/PrivateFrameworks/Message.framework/Message
0x1c2f6a000 - 0x1c2f84fff CoreMaterial arm64  <0c57d0346b8038ac99da29d1c5756073> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1c2f85000 - 0x1c306afff libxml2.2.dylib arm64  <59363b79c5c93f4a8225d4514922256a> /usr/lib/libxml2.2.dylib
0x1c48ce000 - 0x1c48d8fff SymptomAnalytics arm64  <3b46fcb7037535fa975ce7cadc82a1bf> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomAnalytics.framework/SymptomAnalytics
0x1c48d9000 - 0x1c4921fff MetadataUtilities arm64  <a6b4a006922d31b3a175503669bc8e3c> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1c4922000 - 0x1c497afff UserActivity arm64  <5cee49c805f930de8cad926a2d5d9417> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1c52ab000 - 0x1c54bcfff NetworkExtension arm64  <b9952b5daeb134a6b570a193e0440119> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1c54bd000 - 0x1c54f2fff DataDetectorsCore arm64  <3d0a108f71733e29965b637096e09ec8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1c54f3000 - 0x1c5552fff CalendarFoundation arm64  <741401805340338b9af74bb4b3abbcec> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1c5553000 - 0x1c5645fff EventKit arm64  <ccf2cfad170235068b9442ef6e9223c3> /System/Library/Frameworks/EventKit.framework/EventKit
0x1c5646000 - 0x1c567cfff MediaServices arm64  <280846cf79173979b3983b4d12c94480> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1c5788000 - 0x1c5927fff PencilKit arm64  <6fc9866e623835f795cfb8ed07534c63> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x1c5928000 - 0x1c5a4afff MessageUI arm64  <2417303b23b23eef9f1b2b5e0c89836b> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x1c5a98000 - 0x1c5ad7fff BiometricKit arm64  <e6db96b653b93c1ebfc883ed0eaf8aec> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1c5ad8000 - 0x1c5b02fff PersistentConnection arm64  <396582b9038d33ecbbaf6270715f2b50> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1c5b03000 - 0x1c5b56fff CalendarDaemon arm64  <7f06d2437059300ab555af7cb5998810> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1c5b57000 - 0x1c5bedfff CalendarDatabase arm64  <94a758b9924130a9a008623815ebbac9> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1c5bee000 - 0x1c5ddcfff MediaRemote arm64  <1a209e28192c390bab18d149f841c17f> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1c5ddd000 - 0x1c5de5fff CorePhoneNumbers arm64  <68106cb9cf6d390d8e267e7bbf249c6b> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1c5df6000 - 0x1c5e1cfff DuetActivityScheduler arm64  <13c0f1714e3036779c37852398f0bafa> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x1c5e1d000 - 0x1c5ee0fff SpringBoardFoundation arm64  <9550d529bedf3020a878712cbef45297> /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
0x1c5ee1000 - 0x1c5f20fff ContactsAutocompleteUI arm64  <72e5828e055237548a9f2c708024caaf> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x1c5f21000 - 0x1c5f43fff CoreSVG arm64  <73bfc0febb0d31628b9223dc7a5a983f> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1c5f44000 - 0x1c5f5dfff SymptomPresentationFeed arm64  <689694a94fcf3cc986ead0a31b0c4077> /System/Library/PrivateFrameworks/Symptoms.framework/Frameworks/SymptomPresentationFeed.framework/SymptomPresentationFeed
0x1c5f5e000 - 0x1c5f7bfff ProactiveEventTracker arm64  <d3f6831ea3103097999b303f03c8719e> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1c5f7c000 - 0x1c5f87fff MallocStackLogging arm64  <bd95833751b935d8bfaa122f9c6eaafa> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1c5f88000 - 0x1c601cfff CoreSuggestions arm64  <5692520a6a6a3fa4a4dabef3347d528b> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1c601d000 - 0x1c61cefff IMCore arm64  <fe16f952a8763d4ba91b2fb929d8ef98> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x1c61cf000 - 0x1c6220fff DeviceManagement arm64  <a2ec1a2c4bdc3d4da47e05f8c0b0810d> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1c6a25000 - 0x1c6a32fff BluetoothManager arm64  <5a83f768e5313c6eb7a5d8d40f5a65ba> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1c6a33000 - 0x1c6a68fff CoreBluetooth arm64  <0af559701b64365fa935b76fb2b6fc6f> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1c6a69000 - 0x1c6a6bfff libsystem_sandbox.dylib arm64  <19bf542aa27f358aaf26c829d92f3995> /usr/lib/system/libsystem_sandbox.dylib
0x1c6a6c000 - 0x1c6acefff SpringBoardUIServices arm64  <74237ef454fa3ded852d4e9a8f3f870e> /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices
0x1c6acf000 - 0x1c6b01fff TelephonyUI arm64  <d2ecd5d73e413ba6b3f2da3e083290f2> /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
0x1c6b50000 - 0x1c6b87fff TextInputUI arm64  <584490afffd630b0a2b86d6045db9880> /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x1c6b96000 - 0x1c6ba2fff ContextKit arm64  <af4e539a51ed31f58501db604920f663> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1c6bd3000 - 0x1c6c3ffff Rapport arm64  <0d829a31fed33c2bb4da9a2712178c8c> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1c6c40000 - 0x1c6c83fff OSAnalytics arm64  <66d408f799793943ae529a4b12829625> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1c6c84000 - 0x1c6cb2fff MobileInstallation arm64  <82830c2abb583bd5a627995189600504> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1c6cb3000 - 0x1c6d4dfff Metal arm64  <245b6ff0bdfd33a7a34ce4fe57ebc2a2> /System/Library/Frameworks/Metal.framework/Metal
0x1c6d4e000 - 0x1c6d54fff IOAccelerator arm64  <3335cc966200367c99e96bb8fd064751> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1c6d55000 - 0x1c6d60fff MediaAccessibility arm64  <f8f4cb6f12af349aadc0c2124373d615> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1c6d7e000 - 0x1c6d85fff libsystem_dnssd.dylib arm64  <59b26d826fd335ed998cf5b62e38f910> /usr/lib/system/libsystem_dnssd.dylib
0x1c6d86000 - 0x1c6d8cfff PushKit arm64  <634713aced1d38df81cd370674d873ad> /System/Library/Frameworks/PushKit.framework/PushKit
0x1c6d8d000 - 0x1c6e92fff FileProvider arm64  <817c33078d9f344bae2e99274886c2de> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1c6ea7000 - 0x1c6ea8fff BackgroundTaskAgent arm64  <2ba41ad36b8a36088b6f0097d4a014fd> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
0x1c6ea9000 - 0x1c6eaefff LinguisticData arm64  <ee7e5c2f67d63fdb8f294a556494ffa5> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1c6eaf000 - 0x1c6ec7fff CoreSDB arm64  <3c8d2ae38db03228b83874a7957493c9> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x1c6ec8000 - 0x1c6ed8fff Categories arm64  <4aee06d32058399082825c91d95b7771> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1c6ed9000 - 0x1c6ef2fff DoNotDisturb arm64  <b0094a4cb5bb3d9e888d9f2edb1b8b17> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x1c6ef3000 - 0x1c6faefff VideoToolbox arm64  <cb7226845bc83f528ef0eb5e3d9e7d06> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1c73e2000 - 0x1c73e3fff MessageSupport arm64  <d4456184f8623984b58e7045027ab964> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x1c73e4000 - 0x1c7443fff PersonalizationPortrait arm64  <c41be57e68c13b2e91365a72b69ae410> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1c7444000 - 0x1c74b2fff AppStoreDaemon arm64  <abfb54c05afa3403ae220b67aaea8563> /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1c750d000 - 0x1c7515fff SymptomDiagnosticReporter arm64  <7f5611dfa5063e699db9329b22f493de> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1c7516000 - 0x1c7518fff IOSurfaceAccelerator arm64  <4d17d1ca325c350a8cceec8a93550c14> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1c7519000 - 0x1c75c7fff AssetsLibraryServices arm64  <4955c2b198f034fabf1be5e071b1f199> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1c75c8000 - 0x1c75fafff DataAccessExpress arm64  <ccd6268a555f36fc823411bece0a960a> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1c75fb000 - 0x1c7669fff EmailFoundation arm64  <b0b3b9e3acec3a48bb87f56f005d525f> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x1c766a000 - 0x1c767ffff CoreFollowUp arm64  <edfbe826475a330eb7062eaf1f013738> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1c7680000 - 0x1c7688fff FamilyCircle arm64  <47b6531315713b6fb50aa030a9bc27b9> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1c7689000 - 0x1c769efff libcoretls.dylib arm64  <e83864eb177533af91d71d6e5bfd6799> /usr/lib/libcoretls.dylib
0x1c76f5000 - 0x1c7786fff libate.dylib arm64  <0dbd4cdb7d493a94a11e8c4b6eb9d303> /usr/lib/libate.dylib
0x1c8848000 - 0x1c8a10fff iAdCore arm64  <3eac21a18a613b609382112f70698bed> /System/Library/PrivateFrameworks/iAdCore.framework/iAdCore
0x1c8a36000 - 0x1c8a84fff FTServices arm64  <c451d4c6281f34c7880529373e2a84d7> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1c8b25000 - 0x1c8b35fff MaterialKit arm64  <d3e26e28496a3abd9ae6a5aa64c30ff6> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x1c8b36000 - 0x1c8ba0fff SAObjects arm64  <4d72bf5c563e3a9ca016e691ae307b08> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x1c8ba1000 - 0x1c8babfff CoreRecents arm64  <e64c1a460cf23b7880679d9bc3521015> /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1c8bac000 - 0x1c8bf2fff MIME arm64  <7f0ef966897c3fefb7d003e74f1f2f37> /System/Library/PrivateFrameworks/MIME.framework/MIME
0x1c8c54000 - 0x1c8c61fff DataMigration arm64  <bda78d7eac783fb7ad49253a971577af> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1c8d66000 - 0x1c8dc1fff EmailCore arm64  <409829c8474d3171b47db351fea74c9c> /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x1c8e15000 - 0x1c8e39fff IconServices arm64  <9d0a77437f5e311097babd6a8f94e8a1> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x1c8e3a000 - 0x1c9026fff iTunesCloud arm64  <e806cac9c1f13e80bf88b696c4cdd5e4> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1c9027000 - 0x1c92ecfff MusicLibrary arm64  <c4573d69b57033c8871d37d686109222> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1c92ed000 - 0x1c92eefff WatchdogClient arm64  <834e0b823de23ff6b57e7904ce03a445> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1c92ef000 - 0x1c9300fff libprequelite.dylib arm64  <83d923c30f863498843177b257132ca9> /usr/lib/libprequelite.dylib
0x1c9325000 - 0x1c932afff IDSKVStore arm64  <0107cc7a4d5e38619995358ffa0a265d> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1c932b000 - 0x1c933bfff CoreEmoji arm64  <577a37002ad53990bcc8b0c9fd511a74> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1c933c000 - 0x1c93d3fff Email arm64  <507eb51e36c7368ba0a84d6500b6b892> /System/Library/PrivateFrameworks/Email.framework/Email
0x1c93d4000 - 0x1c9436fff ClassKit arm64  <a5b8753d353b33adb396bb4c1770589a> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x1c94a2000 - 0x1c94affff CPMS arm64  <df575af01b103cfcb663abf02f06ac80> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x1c94b0000 - 0x1c94b8fff RTCReporting arm64  <0a2ce1ac2e2e3ce4a08f6cac1003638f> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1c957d000 - 0x1c95dafff iAd arm64  <225969c9a3f83481abe3eadce4d3efc6> /System/Library/Frameworks/iAd.framework/iAd
0x1c9614000 - 0x1c9660fff MobileBackup arm64  <c8b58b1f4f1b3c4e90d8a015dc4b8a5d> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1c970f000 - 0x1c9716fff CoreTime arm64  <cf3715716c1635b68d871a966ae17239> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1c975d000 - 0x1c989cfff IMDPersistence arm64  <cd78aa6993ee36f289a9f7f9f382bc4d> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x1c9913000 - 0x1c99b8fff DistributedEvaluation arm64  <cbfb34ab5b7a319ebd0b1edda53ca1e9> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x1c99b9000 - 0x1c9a08fff DataAccess arm64  <15849e30ae3335a68f58eea5689f3d91> /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x1c9d44000 - 0x1c9d97fff ToneLibrary arm64  <ae796371fa9c388d875bf9987e816484> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1ca031000 - 0x1ca04ffff AppConduit arm64  <154844916f3532859f72c3ab9b95ae87> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1ca050000 - 0x1ca068fff IntlPreferences arm64  <19b52e5151793276afea6f0b59e6a97e> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1ca40f000 - 0x1ca4fdfff CoreBrightness arm64  <df0aac48fa243894800d72a97e6b4943> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1ca4fe000 - 0x1ca505fff libIOReport.dylib arm64  <ab2118f813b933e48f29f6d37d8d976e> /usr/lib/libIOReport.dylib
0x1ca68e000 - 0x1ca8c1fff libBNNS.dylib arm64  <a36340b78a703f8180b712c7759ab043> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1ca8c2000 - 0x1ca8c9fff StudyLog arm64  <6ba8e4d9754b3e25b97d3084e1646db0> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1ca950000 - 0x1ca9defff iTunesStore arm64  <b89f93b7ddc33e6993b8701d7e98e765> /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1cb431000 - 0x1cb488fff SafariCore arm64  <0cd7ad921ee937db82a85e9a9252636d> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1cb489000 - 0x1cb4f0fff ScreenTimeCore arm64  <3a52a67989fb39a98d87749022ce38c6> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x1cbacd000 - 0x1cbaf2fff RTTUtilities arm64  <e85e4d63f0b23b2e92362babc2431702> /System/Library/PrivateFrameworks/RTTUtilities.framework/RTTUtilities
0x1cbaf3000 - 0x1cbafafff HearingCore arm64  <aae3612b4e2431708de42625bf6dc9b0> /System/Library/PrivateFrameworks/HearingCore.framework/HearingCore
0x1cbafb000 - 0x1cbb0dfff LocalAuthentication arm64  <b6f98d423e8634dc93182ca70b09cf3b> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1cbb0e000 - 0x1cbb12fff CommunicationsFilter arm64  <b6b1cc145f2a3b199c85ada5af8dfd3e> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1cbb13000 - 0x1cbb35fff AddressBook arm64  <437470fa20f039ebbd8f319565a681e7> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x1cbb36000 - 0x1cbb41fff CaptiveNetwork arm64  <dc9b5ed33e063d7eb9edec10ebd0e665> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1cbb42000 - 0x1cbb42fff AdSupport arm64  <afca7c21a5333a25a035cdb5ee2e7535> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x1cbc92000 - 0x1cbd42fff libBLAS.dylib arm64  <62050c2e28b83071926604f28576b48a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1cbd43000 - 0x1cbd51fff CTCarrierSpace arm64  <41d7677ad9313fe891ce68c033bec647> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1cc560000 - 0x1cc62bfff CoreParsec arm64  <cdc62617d5a9365bafacc9546ea06583> /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1cc62c000 - 0x1cc679fff CallHistory arm64  <30e8e4496a6933948a3a17e5e65533cc> /System/Library/PrivateFrameworks/CallHistory.framework/CallHistory
0x1cc819000 - 0x1cc834fff libtailspin.dylib arm64  <450b7c0ece54385bbdab05395a050bcd> /usr/lib/libtailspin.dylib
0x1cc835000 - 0x1cc872fff CalendarUIKit arm64  <9c1dc4af830831ed8f0f08656853dcf1> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x1cc891000 - 0x1cc8a5fff ContactsDonation arm64  <d9c53579f3753255a0d649fe1f7780dc> /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1cc8f0000 - 0x1cc8f9fff MobileActivation arm64  <ed46d70e41b63f13bf3b17894f6b594d> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1cc8ff000 - 0x1cc979fff HearingUtilities arm64  <2ffbf4687a4d356b8cb426e504aa55bb> /System/Library/PrivateFrameworks/HearingUtilities.framework/HearingUtilities
0x1cc97a000 - 0x1cc988fff MobileIcons arm64  <3326557a3286356a87ca1df0d6130151> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1cc989000 - 0x1cca88fff ResponseKit arm64  <f16e781681d434dab63e5b9f5b065347> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x1ccaa5000 - 0x1ccadefff Notes arm64  <8d6dbca1ee0138f5a694e76c04bb46ac> /System/Library/PrivateFrameworks/Notes.framework/Notes
0x1ccadf000 - 0x1ccaf6fff MetalKit arm64  <d6c06209589d3675acb927d06137a931> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1ccb4f000 - 0x1ccb99fff CoreHaptics arm64  <06db7c401d2d3d9cb266f37874fa0bbb> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x1ccb9a000 - 0x1ccc62fff ProofReader arm64  <285fa52fafcf39bfaf8609a085422cd8> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1cccb1000 - 0x1cccbcfff EmailAddressing arm64  <a7b8c7ee40ed378c9c3af178d338245e> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x1cccbd000 - 0x1cccd2fff MailServices arm64  <a1f8a7beff043f029898327354f73688> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x1cccd3000 - 0x1ccd62fff CoreSymbolication arm64  <a57040868d163139acb568011b34123a> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1ccd63000 - 0x1ccd69fff IdleTimerServices arm64  <39c79767aa7034c9a680af46224d4640> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1cce62000 - 0x1ccf1bfff VideoSubscriberAccount arm64  <b9300042738f365c90ca366308d929c9> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1ccf1c000 - 0x1ccf2ffff WebContentAnalysis arm64  <b5a41f5f33aa395ca7b385566e8a518b> /System/Library/PrivateFrameworks/WebContentAnalysis.framework/WebContentAnalysis
0x1ccf30000 - 0x1ccf33fff FTClientServices arm64  <78f0b76870173a47ae1f3024101d4aad> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x1ccf34000 - 0x1ccf99fff ContactsUICore arm64  <2da1d6849b7b36e3bc95d2be741b2ea9> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1cd01d000 - 0x1cd029fff iAdServices arm64  <06897fca38aa3f1099ca8b11fb9b4776> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices
0x1cd3f5000 - 0x1cd43cfff LoggingSupport arm64  <6b7e370405d33c45967ac8c458928a3f> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1cd540000 - 0x1cd599fff ProtectedCloudStorage arm64  <bbc869b2f84b34d6bf61cef9d1fa8fc0> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1cd680000 - 0x1cd688fff OpenGLES arm64  <287f3b01842d30da9702f5cd4793458e> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1cd7e8000 - 0x1cd7f0fff libGFXShared.dylib arm64  <2209635c627c36d381f28da5e9019b90> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1cd7f1000 - 0x1cd826fff SharedUtils arm64  <f6c64f0f3df3385aab929b5f99acb807> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1cd827000 - 0x1cd874fff PhotosFormats arm64  <80f459a667303db0b188f9a6c61eb6cd> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1cee81000 - 0x1ceebdfff StreamingZip arm64  <80a7602a6d27384abec3ffe12bc0c50f> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1cfafc000 - 0x1cfcaffff SafariShared arm64  <930666655b4937d9a2152c6834d06a0a> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1cfd35000 - 0x1cfd38fff InternationalTextSearch arm64  <d534123f5b233184ac92042f378619cd> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1cfd56000 - 0x1cfd72fff AssetCacheServices arm64  <fe2d1f58a37a30459b13dcc1814362e6> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1d029e000 - 0x1d06e2fff AVConference arm64  <d9a5e1b5894a38d0be052a1f8354b517> /System/Library/PrivateFrameworks/AVConference.framework/AVConference
0x1d06e3000 - 0x1d06e8fff IncomingCallFilter arm64  <d6b56428a9b634788ecddd75c8420b8e> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1d0704000 - 0x1d071cfff NetworkStatistics arm64  <52d0181fe70c385697ef3746d5fe1bb4> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1d0b88000 - 0x1d0b8efff Netrb arm64  <53cc7821890f34b380124739cbb90896> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1d0b92000 - 0x1d0bc2fff EAP8021X arm64  <e8e5622aa64439bdae85b80f604662f1> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1d0bc3000 - 0x1d0bc5fff OSAServicesClient arm64  <785aab0a88ed34ba885d7483d3be9ee9> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x1d0d49000 - 0x1d0d4dfff libgermantok.dylib arm64  <e15d5eee368a3e16b9a11328963ce574> /usr/lib/libgermantok.dylib
0x1d0d4e000 - 0x1d0e01fff libmecab.dylib arm64  <0bb7b7b678bb3ab887345ee24d6eff43> /usr/lib/libmecab.dylib
0x1d0e02000 - 0x1d0e3dfff Catalyst arm64  <986bc11a0f5131e191295b9c7a3f7ab2> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1d0fa6000 - 0x1d0fa8fff AdAnalytics arm64  <7d286c3f249d34e09f9c92a42646a96d> /System/Library/PrivateFrameworks/AdAnalytics.framework/AdAnalytics
0x1d0fa9000 - 0x1d0fe5fff VoiceServices arm64  <e6f4af2654f03125b334ccce6916d07d> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1d0fe6000 - 0x1d10fcfff Navigation arm64  <16a6a764ab0a3f75bc063f808063cbbf> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1d1415000 - 0x1d1423fff CoreDuetDaemonProtocol arm64  <165d40fd3ad831c19723d85738aabf53> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1d1424000 - 0x1d1443fff FTAWD arm64  <51a4c50a1e883595bf4d7195a506fc8c> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1d29f5000 - 0x1d29f7fff OAuth arm64  <a6900a3c3a9639aca03ab1e00576cede> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1d29f8000 - 0x1d29fbfff AdPlatforms arm64  <be2005701e3a37dcabf5e142173ac4d0> /System/Library/PrivateFrameworks/AdPlatforms.framework/AdPlatforms
0x1d2c92000 - 0x1d2ccdfff DifferentialPrivacy arm64  <b0a6360b231337369dc89715c832eb22> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1d2f7f000 - 0x1d3116fff EmailDaemon arm64  <e0b632446f33378db7f021a85d61a2fd> /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x1d347b000 - 0x1d34a6fff MailSupport arm64  <303a3e5968943ddf9cb09d0ac8c79387> /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1d34a7000 - 0x1d3515fff libarchive.2.dylib arm64  <f687622c8e6e3452a0d48f7ed993c0d4> /usr/lib/libarchive.2.dylib
0x1d3516000 - 0x1d3546fff C2 arm64  <0d7a3e496f95395c9eae28b0d0b16ba5> /System/Library/PrivateFrameworks/C2.framework/C2
0x1d3547000 - 0x1d357afff NaturalLanguage arm64  <cfa438750b4032c8b14daf751e0b0df0> /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1d360d000 - 0x1d360efff libsystem_coreservices.dylib arm64  <50693ebd12b43fc8acaad84a8b82a0df> /usr/lib/system/libsystem_coreservices.dylib
0x1d3620000 - 0x1d3632fff libmis.dylib arm64  <70eb0208446d35d1a06035cee66ecf30> /usr/lib/libmis.dylib
0x1d3633000 - 0x1d3688fff WebBookmarks arm64  <999457f8960a3611bf14c3f4619837a5> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1d3689000 - 0x1d3696fff DCIMServices arm64  <2f74408211e2332b8aa91789e71ae562> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1d3697000 - 0x1d37e7fff CloudPhotoLibrary arm64  <51a836e0dea1366b83a29640fc2648b1> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1d37e8000 - 0x1d3821fff ContactsAutocomplete arm64  <76d4fc1b31463366a750fa828ef05692> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1d3822000 - 0x1d382afff libcopyfile.dylib arm64  <f5f048c1d258338f96bd94863b7f84e4> /usr/lib/system/libcopyfile.dylib
0x1d382b000 - 0x1d384cfff UsageTracking arm64  <81e36061690d39c19eb46f605c1fbcff> /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1d3b8e000 - 0x1d3c22fff AccountsDaemon arm64  <7abea61a48783baaa76d6ba23b765846> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1d3c23000 - 0x1d3c2efff AppleIDSSOAuthentication arm64  <e4999d56d7673b7b9c1370b23fcbbec5> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1d3c2f000 - 0x1d3c42fff SettingsFoundation arm64  <d6b7da8b402b3d9c91234c18f5dc7ffb> /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1d3d7b000 - 0x1d3dfdfff Symbolication arm64  <31fd30f6ccb13309b25294a1d85326e2> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1d3fb2000 - 0x1d3ffffff ChunkingLibrary arm64  <6c669fdc362138dd89e33201adb10962> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1d4003000 - 0x1d4007fff DAAPKit arm64  <407eb1b504133cf59185bb985c8834bd> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1d44dc000 - 0x1d44defff CoreDuetDebugLogging arm64  <1fd35a97edf032d68a771db66fc72f52> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1d5003000 - 0x1d5041fff SignpostSupport arm64  <a8ffcfa229463bc087f1dcc98e94864e> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1d52d6000 - 0x1d52dffff SignpostCollection arm64  <4f5984b7fa9938779a0e784f4ec5f2e1> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1d5a0c000 - 0x1d5a12fff URLFormatting arm64  <fbc08a2be4293492a507ee08d69db0b9> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1d5a27000 - 0x1d5acefff MMCS arm64  <a0b62405414f3082832d301e6c98c361> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1d5b26000 - 0x1d5d52fff MobileSpotlightIndex arm64  <001c3d304f153304b2a50fef0300dae4> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1d6175000 - 0x1d61bbfff CoreLocationProtobuf arm64  <354363c3361234f0bde81d06b68951a8> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1d626f000 - 0x1d62ebfff Quagga arm64  <1e8a7a5cf04239d8b8a9d719c1aeddad> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1d6583000 - 0x1d6591fff libAXSpeechManager.dylib arm64  <0ec202b25e9539bfaf0c1624320330e9> /usr/lib/libAXSpeechManager.dylib
0x1d65e8000 - 0x1d65f0fff ProgressUI arm64  <3f5d100a7e3b3fa2ba7a28507ad54e3b> /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI
0x1d65f6000 - 0x1d660bfff libEDR arm64  <66ee6000bd2339d1ba5e6b3b10c2470c> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1d6f46000 - 0x1d7228fff VideoProcessing arm64  <8d240fc68cb83fedbefd6e654d217c88> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing
0x1d7229000 - 0x1d7236fff libperfcheck.dylib arm64  <3ba9a8fd8a773231ab960d7701333c63> /usr/lib/libperfcheck.dylib
0x1d7237000 - 0x1d7242fff libAudioStatistics.dylib arm64  <c74af5a6998431e3b5cf65f2283d2145> /usr/lib/libAudioStatistics.dylib
0x1d7406000 - 0x1d7416fff caulk arm64  <eb0f4cd651633b23948a25c8c2ba93c2> /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1d7455000 - 0x1d745bfff MobileSystemServices arm64  <a1c84260dd6f36be94784291ef6f1c30> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1d75f1000 - 0x1d760afff TextToSpeech arm64  <6cee67718e8f3340886f84400bfd5b64> /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1d7613000 - 0x1d764efff ViceroyTrace arm64  <5dd121f0275f3273894e5c7efa8059e3> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace
0x1d8367000 - 0x1d838cfff CloudKitCode arm64  <a8a9397bd09537db9c21a1c2aed35a11> /System/Library/PrivateFrameworks/CloudKitCode.framework/CloudKitCode
0x1d84d2000 - 0x1d858cfff CloudKitCodeProtobuf arm64  <c12e1cabe3be3579a19a2b75f63a1299> /System/Library/PrivateFrameworks/CloudKitCodeProtobuf.framework/CloudKitCodeProtobuf
0x1d858d000 - 0x1d8597fff HID arm64  <b07d4f0b24023f4ea0d2ab04d5871a94> /System/Library/PrivateFrameworks/HID.framework/HID
0x1d85c4000 - 0x1d85fdfff libGLImage.dylib arm64  <15ad0d4a18443118ac68cf15538dab9e> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1d89f8000 - 0x1d8a09fff libSparseBLAS.dylib arm64  <1f51189eaa19385c94b7fb0292561c82> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1d8a0a000 - 0x1d8a1dfff Engram arm64  <6e8e17826af3317f92fb524fa0b85c33> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1d8a94000 - 0x1d8acefff DataDetectorsNaturalLanguage arm64  <fdd18833bb40393cb0b36aa612898268> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1d8dc5000 - 0x1d8dcdfff FSEvents arm64  <ff8eb4136ed734ddbba680ce0c3e88be> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1d8ddd000 - 0x1d8e5afff CoreDAV arm64  <bc90cfd12bae381e89a63307c80599a5> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1d97a3000 - 0x1d97b3fff RemoteTextInput arm64  <76a999dbfd5a363384d1ad23aaadccf6> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1d97dc000 - 0x1d980bfff iCalendar arm64  <9df467aa8d1630b69f7d5e1371cf1b12> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1d9828000 - 0x1d9831fff CloudPhotoServices arm64  <fa48e241fdfe38fe8596c734d100b850> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1d9870000 - 0x1d9884fff libLinearAlgebra.dylib arm64  <83e007597b01399783a65a8f7a6c3208> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1d9918000 - 0x1d9a12fff ConfigurationEngineModel arm64  <4577aebeb8fc3bd09d1b030d97373dde> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1d9a13000 - 0x1d9a1afff CertUI arm64  <6680caf12d653f11a1df07a43db46053> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1d9aff000 - 0x1d9b0dfff CoreAUC arm64  <0baa16e29c3a372aafd1f0e84f547e5c> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1da49e000 - 0x1da4e4fff PhysicsKit arm64  <b47ea3ebcfd037bda7b951e1ad5f7f90> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1da4e5000 - 0x1da536fff CorePrediction arm64  <e70c69587f633651b1c42a87caa03dc9> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1da928000 - 0x1da975fff SafariSafeBrowsing arm64  <76e45ab6253135dbbcc5b9657344c140> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1dad23000 - 0x1dad99fff HomeSharing arm64  <f5d31569258d319fa9d6df64a246504d> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1dae27000 - 0x1dae45fff GenerationalStorage arm64  <05a7c289ff76316bad961b4e87eefbf6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1daea8000 - 0x1daeb3fff PersonaKit arm64  <818ad3bb76b83cf2a5e2abd964da978b> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1daeb4000 - 0x1daec0fff PersonaUI arm64  <65aeb7d64ae135f28487092ea21b4344> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1db078000 - 0x1db0b6fff AdCore arm64  <483afd07fcc33cd1869c762ef4cbee98> /System/Library/PrivateFrameworks/AdCore.framework/AdCore
0x1db2cc000 - 0x1db2d1fff kperf arm64  <4dd4a30e85383405b9959fde4fd003f1> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1db46e000 - 0x1db47cfff AssetsLibrary arm64  <486139609c8b3b29bf7561f253873e44> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1db4a9000 - 0x1db4dcfff libpcap.A.dylib arm64  <80be39cf99d83d1eb3c6b8d3fd8a838d> /usr/lib/libpcap.A.dylib
0x1db79c000 - 0x1db7b0fff WebUI arm64  <a9cd6647a4913d30ac88fd88bc4c4667> /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1db7b1000 - 0x1db7c8fff SafariFoundation arm64  <ebcb0a0b83f53be091d8d09e80e2b2ec> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1db814000 - 0x1db8aefff libvDSP.dylib arm64  <76375e092cdb311185ec8ed1d8f4bfc9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1db8af000 - 0x1db8d9fff vCard arm64  <b0b531acb8d93d96b56ebc95a2d3f347> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1db921000 - 0x1db9abfff SampleAnalysis arm64  <b0b83d5c49fc3b3d9737165254abfacb> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1db9ac000 - 0x1db9b8fff IntentsFoundation arm64  <2090563ffa41300da28ea5bc984ed49b> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1dbba4000 - 0x1dbba6fff ParsecSubscriptionServiceSupport arm64  <a90bc317d0c63803a67dd9fac0e4bc06> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1dbba7000 - 0x1dbc36fff MediaPlatform arm64  <a7f36f3dd45230f78c0dfd793cf737da> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1dbc37000 - 0x1dbf47fff MediaLibraryCore arm64  <55b303ee3c563e8ba58e5d3aaa7af419> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1dbfaa000 - 0x1dbfe2fff PhotosImagingFoundation arm64  <d5ab64a694fc362c8a1af663f04dc142> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1dbfe3000 - 0x1dc005fff MediaConversionService arm64  <546cb2add7863f26a98d7269bef43091> /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1dc006000 - 0x1dc023fff MediaStream arm64  <53b300858ffc31d8a6b4c6c007e5e24b> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1dc024000 - 0x1dc11efff CoreMediaStream arm64  <199d1804e5113baa9df9d57487aeb62a> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1dc238000 - 0x1dc238fff Accelerate arm64  <9818869ce13333be8f6636eea59aedc8> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1dc239000 - 0x1dc54efff libLAPACK.dylib arm64  <1d4e4b0531313da5b611fb2575e17079> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1dc54f000 - 0x1dc553fff libQuadrature.dylib arm64  <cccd3657551a38ef9e6c240d60dc8df8> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1dc554000 - 0x1dc5adfff libvMisc.dylib arm64  <435399eb7a8f3979b0d139c3f453fd29> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1dc5ae000 - 0x1dc5aefff vecLib arm64  <b52984345da233bb9108b4b63a4b26a6> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1dc5b7000 - 0x1dc5c5fff AuthenticationServices arm64  <5af6c2ea423e34cdbe63b7567d256def> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1dc60a000 - 0x1dc6fefff Combine arm64  <25b66e311fbc3bf68cb6df8c27a2152f> /System/Library/Frameworks/Combine.framework/Combine
0x1dc710000 - 0x1dc760fff CoreMIDI arm64  <c742c545e39338cfa7a113ee469671dc> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1dc8ee000 - 0x1dc923fff CryptoKit arm64  <eb9c786ab7383e45950e7362ae8294c0> /System/Library/Frameworks/CryptoKit.framework/CryptoKit
0x1dc95f000 - 0x1dc98cfff GSS arm64  <a117041e533335ba8e67d0af00477b37> /System/Library/Frameworks/GSS.framework/GSS
0x1dc99f000 - 0x1dc9d1fff MPSCore arm64  <7f98e0d3952a38c09bc314765766fc86> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1dc9d2000 - 0x1dca4efff MPSImage arm64  <63f5ffc1702e36ff841abafcd47d0301> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1dca4f000 - 0x1dca71fff MPSMatrix arm64  <cb977b3da929362a9a59a85ba312a392> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1dca72000 - 0x1dca86fff MPSNDArray arm64  <8a75d75a84c439e0bdf578136ceb73f1> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1dca87000 - 0x1dcc18fff MPSNeuralNetwork arm64  <4b7b42c84e2538758d2503bcaf4c695d> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1dcc19000 - 0x1dcc5dfff MPSRayIntersector arm64  <9d947816460c35e2b072e2d9b809d01b> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1dcc5e000 - 0x1dcc5efff MetalPerformanceShaders arm64  <7de1dbb3681835558dfb8c6d50de268b> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1dcc6b000 - 0x1dcc6bfff MobileCoreServices arm64  <d7873825e57d3c4081f1da103c723f89> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1dcc76000 - 0x1dcc77fff libCVMSPluginSupport.dylib arm64  <cda51c2ff1b33e6fa71ae3ae6daa7325> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1dcc78000 - 0x1dcc7efff libCoreFSCache.dylib arm64  <84690d5764ad3ee3864e18d4704e08cd> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1dcc7f000 - 0x1dcc84fff libCoreVMClient.dylib arm64  <66daee76addf32a981f2daca6fb6b0fe> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1dccb9000 - 0x1dccf0fff QuickLookThumbnailing arm64  <b2d5c531a95638c695531339b1bbfa52> /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1dd024000 - 0x1dd122fff SoundAnalysis arm64  <fbdf5b8197ab36efb3e06885f7fe4031> /System/Library/Frameworks/SoundAnalysis.framework/SoundAnalysis
0x1dd125000 - 0x1dd125fff UIKit arm64  <47a27c57c3aa387fbc3d53d2e7249e16> /System/Library/Frameworks/UIKit.framework/UIKit
0x1dd147000 - 0x1dd209fff VisionKit arm64  <d1b7edc5ddfb3540b1675acbc3878d38> /System/Library/Frameworks/VisionKit.framework/VisionKit
0x1dd373000 - 0x1dd4c5fff ANECompiler arm64  <931531fa29713983a242fe34c7917616> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1dd4c6000 - 0x1dd4d6fff ANEServices arm64  <c2fbaeaf090e35deacb75ae881fb4b14> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1dd4df000 - 0x1dd56ffff APFS arm64  <0d446bc9f2f93ca0b2ee1727925f10ef> /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1dd570000 - 0x1dd574fff ASEProcessing arm64  <d4b121b1aabb3f92baafe2a6b70e32de> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1dd58e000 - 0x1dd5f4fff ICE arm64  <04c98d7c686e32d3bdd388344479e11e> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework/ICE
0x1dd5f5000 - 0x1dd5f5fff LegacyHandle arm64  <74459e3ad689385dbf2d9125f84eaa3a> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework/LegacyHandle
0x1dd5f6000 - 0x1dd5fcfff SimpleKeyExchange arm64  <ae5603236b953ea583ed55bc6df7f45c> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange
0x1dd5fd000 - 0x1dd5fdfff snatmap arm64  <d6822d8ec03d341f9d8118f595e01cac> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework/snatmap
0x1dd67c000 - 0x1dd6befff AccessibilitySharedSupport arm64  <f4f03da460de3aa89f8451e1cea0f6ce> /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x1dd71a000 - 0x1dd725fff AccountSettings arm64  <d3c47caea6ce393a80e478b9f1266638> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x1dde15000 - 0x1ddfb1fff AppleCVA arm64  <51a8078e243b334dbaad13a14923ab43> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1de024000 - 0x1de032fff AppleFSCompression arm64  <a1d88ec9766332a89edc09ee5ab40182> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1de033000 - 0x1de03dfff AppleIDAuthSupport arm64  <fe30c61996483b1887f3cc6c25edf7ce> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1de03e000 - 0x1de07ffff AppleJPEG arm64  <14d3a4bcfc0f374297d912b8c85cc5a0> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1de0c8000 - 0x1de0d9fff AppleNeuralEngine arm64  <622801b185fe3bfb834d3d44ad9f9187> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1de0e0000 - 0x1de103fff AppleSauce arm64  <f5d836a116f13ebba5fc71d3efb4d030> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1de23b000 - 0x1de28ffff AutoLoop arm64  <0c1a9dceea243eb7b56d237665656daf> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop
0x1de2fc000 - 0x1de32cfff Bom arm64  <0dfe861e6be13f9eb920584c5b46f646> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1deda5000 - 0x1dedacfff CommonAuth arm64  <ba671729ef0f30039c1774666fc6592c> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1def4d000 - 0x1df042fff CoreAppleCVA arm64  <24714acc212a32d7a664f67b6c6186fa> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1df0a1000 - 0x1df193fff CoreHandwriting arm64  <f67d6ed94bd8300aa089fa065a1ed9b2> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1df1a9000 - 0x1df1adfff CoreOptimization arm64  <81a3200ad13730a59e896c36e69ff6fc> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1df225000 - 0x1df228fff CryptoKitCBridging arm64  <690d0e85e3eb3c05aec150702fdb8e4d> /System/Library/PrivateFrameworks/CryptoKitCBridging.framework/CryptoKitCBridging
0x1df229000 - 0x1df240fff CryptoKitPrivate arm64  <fa6076e59ca43c7482e030513c35cea9> /System/Library/PrivateFrameworks/CryptoKitPrivate.framework/CryptoKitPrivate
0x1df2f8000 - 0x1df303fff DeviceIdentity arm64  <8e7caf4f24f0322c9947f91c17a715fd> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1df493000 - 0x1df4affff DocumentManagerCore arm64  <a077927cd5eb35ce992239758da231b9> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1df566000 - 0x1dfbc1fff Espresso arm64  <9df07bcd41c4334fb57ed6ea22476366> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1dfe73000 - 0x1e0284fff FaceCore arm64  <4de7d3c4806235d09407711b87b2bae5> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1e0355000 - 0x1e0369fff libGSFontCache.dylib arm64  <abcdc382bad33a6c9ba10d0cf44c136f> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1e03cd000 - 0x1e03d9fff libhvf.dylib arm64  <9563809693d6387db69fea88af4564e3> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1e03fb000 - 0x1e040ffff Futhark arm64  <07fc0e314de9321fb0f6ff75d012a134> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1e10dc000 - 0x1e10e8fff GraphVisualizer arm64  <d5a5d07491713bfd892d31889ec1b6ce> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1e19d9000 - 0x1e1a49fff Heimdal arm64  <0a1b601c4d7331c4a37c44d2f5271264> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1e1ee3000 - 0x1e1f4cfff InertiaCam arm64  <8f0b4e6e8f3232b4996c78dbf88b5d55> /System/Library/PrivateFrameworks/InertiaCam.framework/InertiaCam
0x1e1f95000 - 0x1e1f9bfff InternationalSupport arm64  <56238f820e0f3cc4befe347f830ffe44> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1e2105000 - 0x1e2123fff LatentSemanticMapping arm64  <dd848ae97ddd3c6ba5933c657b4dae5c> /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/LatentSemanticMapping
0x1e223b000 - 0x1e223bfff Marco arm64  <d1a138229ac438b586ef4d9bd9f5d5a2> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1e26f0000 - 0x1e271afff MetricsKit arm64  <6464cc726ac63bd0b755a159e205a73f> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1e272a000 - 0x1e273dfff MobileDeviceLink arm64  <687959b4e80d3fe08b0cc23ec02a82b2> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1e2743000 - 0x1e2744fff MobileObliteration arm64  <9a159552e50c316db64a9d62321d5530> /System/Library/PrivateFrameworks/MobileObliteration.framework/MobileObliteration
0x1e29f1000 - 0x1e2a30fff OTSVG arm64  <4295cc2da66d3905963b70f4ca852533> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1e3075000 - 0x1e3075fff PhoneNumbers arm64  <e23d89e41d5939f5a5def8c70b89efe4> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1e482f000 - 0x1e483bfff PrototypeToolsUI arm64  <8277cbc465f43ca7814bcfc32b64c436> /System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
0x1e4a3f000 - 0x1e4a43fff RevealCore arm64  <40fbd11d577e3bbc9d10621400e5f57f> /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1e4b39000 - 0x1e4b6afff ScreenReaderCore arm64  <362dcb4576b73808aaff7703c4c659f2> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x1e4bdf000 - 0x1e4bebfff SetupAssistantSupport arm64  <12028ece9f6a3995b90d31fed2d46a77> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1e4c09000 - 0x1e4c09fff SignpostMetrics arm64  <bd8c101a86253fdb87532ccbd64266f7> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1e4c37000 - 0x1e4c67fff SiriInstrumentation arm64  <a08172f898bf358b9e79ac9ced804429> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1e547c000 - 0x1e5597fff TextRecognition arm64  <3f60021f659d3da9b2b470d0b997fc61> /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1e5598000 - 0x1e5639fff TextureIO arm64  <55a7d4be7c2835d59ed2cbc7db47f880> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1e5785000 - 0x1e5790fff TransparencyDetailsView arm64  <59583f96ab7136c0b17edf757c550cda> /System/Library/PrivateFrameworks/TransparencyDetailsView.framework/TransparencyDetailsView
0x1e65b2000 - 0x1e6b13fff libwebrtc.dylib arm64  <fb6670b5c0093e729bd61ea2e0c710f4> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1e6be3000 - 0x1e6bf0fff WirelessCoexManager arm64  <69d964c09aaf3d559387467f9872539d> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager
0x1e6cab000 - 0x1e6cb3fff kperfdata arm64  <0280752ec857378482e788bd63ad43ef> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1e6cb4000 - 0x1e6cfbfff ktrace arm64  <fddcc7c6de53358985ed0fe969d61468> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1e6d14000 - 0x1e6d20fff perfdata arm64  <d5f09efc1baa33a0b6a7e59d13432cfb> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1e6f9b000 - 0x1e6f9bfff libAWDProtobufFacetimeiMessage.dylib arm64  <663e00b2b8cf3b479baf8fb6461fd137> /usr/lib/libAWDProtobufFacetimeiMessage.dylib
0x1e7018000 - 0x1e7341fff libAWDSupportFramework.dylib arm64  <5079327466f43f86b15028858aa1bb67> /usr/lib/libAWDSupportFramework.dylib
0x1e74eb000 - 0x1e74f5fff libChineseTokenizer.dylib arm64  <5dd82d181e2e32d4a3e755012a2534aa> /usr/lib/libChineseTokenizer.dylib
0x1e751f000 - 0x1e76d1fff libFosl_dynamic.dylib arm64  <6692e724c11b3bfb9593a3180f183057> /usr/lib/libFosl_dynamic.dylib
0x1e774c000 - 0x1e7753fff libMatch.1.dylib arm64  <d0d21782e5c730e59c5059b33b72995c> /usr/lib/libMatch.1.dylib
0x1e7812000 - 0x1e7813fff libSystem.B.dylib arm64  <18687f3a21d73966b82704fc5d4e2188> /usr/lib/libSystem.B.dylib
0x1e781c000 - 0x1e781efff libThaiTokenizer.dylib arm64  <342d2a135b0a37a2969fcb30ef6f5217> /usr/lib/libThaiTokenizer.dylib
0x1e791d000 - 0x1e7932fff libapple_nghttp2.dylib arm64  <50a1e06796123db8af9bdc15a2c82dfe> /usr/lib/libapple_nghttp2.dylib
0x1e79ab000 - 0x1e79bbfff libbsm.0.dylib arm64  <8072366407503038b0e1eccd42c12f23> /usr/lib/libbsm.0.dylib
0x1e79bc000 - 0x1e79c8fff libbz2.1.0.dylib arm64  <aa92d96b6c6b3c30b868bd327247c281> /usr/lib/libbz2.1.0.dylib
0x1e79c9000 - 0x1e79c9fff libcharset.1.dylib arm64  <3a1952fac60c363fb2720123f782b09c> /usr/lib/libcharset.1.dylib
0x1e79ca000 - 0x1e79dbfff libcmph.dylib arm64  <3db1a5a10dee3c8cac717ea539ca7ff6> /usr/lib/libcmph.dylib
0x1e79dc000 - 0x1e79f3fff libcompression.dylib arm64  <d5cd6dc1de683966b5a5a18a6f5eae85> /usr/lib/libcompression.dylib
0x1e79f4000 - 0x1e79f5fff libcoretls_cfhelpers.dylib arm64  <7940b1e1e9b33782860ac608bfd44fbc> /usr/lib/libcoretls_cfhelpers.dylib
0x1e79f6000 - 0x1e79fcfff libcupolicy.dylib arm64  <39fd4f3cb58e35ab8095f873beed4007> /usr/lib/libcupolicy.dylib
0x1e7a3c000 - 0x1e7a45fff libdscsym.dylib arm64  <0b0f4385a47f3eeb9cc385864a69b909> /usr/lib/libdscsym.dylib
0x1e7a46000 - 0x1e7a62fff libedit.3.dylib arm64  <208aef48da0a3872b9cabc520a506e19> /usr/lib/libedit.3.dylib
0x1e7a8b000 - 0x1e7a90fff libheimdal-asn1.dylib arm64  <40eb02d5300c3a129e2ad0ed647ac737> /usr/lib/libheimdal-asn1.dylib
0x1e7a91000 - 0x1e7b82fff libiconv.2.dylib arm64  <8467990cb00c3b1194ce7feae7e3370a> /usr/lib/libiconv.2.dylib
0x1e7b98000 - 0x1e7ba3fff liblockdown.dylib arm64  <63d8b54e30bf3af39b56fc654cabf8ff> /usr/lib/liblockdown.dylib
0x1e7ba4000 - 0x1e7bbcfff liblzma.5.dylib arm64  <4074d76ec7a93b8492a262a059d3b837> /usr/lib/liblzma.5.dylib
0x1e7f39000 - 0x1e7f68fff libncurses.5.4.dylib arm64  <fde38058c2563bb88c96fc717f409d6b> /usr/lib/libncurses.5.4.dylib
0x1e7f69000 - 0x1e7f7efff libnetworkextension.dylib arm64  <6dc4d4e4896a3c5da26ddd4f3528d833> /usr/lib/libnetworkextension.dylib
0x1e8301000 - 0x1e8318fff libresolv.9.dylib arm64  <7d42c468c5223bcd8764b1706b530a84> /usr/lib/libresolv.9.dylib
0x1e8319000 - 0x1e831bfff libsandbox.1.dylib arm64  <ae76c31a749a355a9d26b8c216681c0f> /usr/lib/libsandbox.1.dylib
0x1e831c000 - 0x1e8321fff libsysdiagnose.dylib arm64  <8accc334bf85392e96f9800ceeffd6c0> /usr/lib/libsysdiagnose.dylib
0x1e8322000 - 0x1e8353fff libtidy.A.dylib arm64  <9596a6a694de3e1d80c5a18e8f81366a> /usr/lib/libtidy.A.dylib
0x1e835b000 - 0x1e835efff libutil.dylib arm64  <0520efce5fe43c2fb18ee9d621dd2433> /usr/lib/libutil.dylib
0x1e838c000 - 0x1e839dfff libz.1.dylib arm64  <58a7ec43dad53a55aa9ed43f7d72639e> /usr/lib/libz.1.dylib
0x1e83c4000 - 0x1e83c6fff liblog_network.dylib arm64  <331cc2c0fc3237aea38af49702e318fd> /usr/lib/log/liblog_network.dylib
0x1e83e6000 - 0x1e841afff libswiftAccelerate.dylib arm64  <9e7e66236b7e3fb380c0881fcb4a4a20> /usr/lib/swift/libswiftAccelerate.dylib
0x1e8429000 - 0x1e8438fff libswiftCloudKit.dylib arm64  <97ada4c709213803ba496d7025b191ee> /usr/lib/swift/libswiftCloudKit.dylib
0x1e8443000 - 0x1e8449fff libswiftContacts.dylib arm64  <26dc6a2997fe345d8c9e1bbb99ecef02> /usr/lib/swift/libswiftContacts.dylib
0x1e845f000 - 0x1e8463fff libswiftCoreFoundation.dylib arm64  <95f4aa43717e35ed8455f1f98a41d718> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1e8464000 - 0x1e8472fff libswiftCoreGraphics.dylib arm64  <6a3a6ef138423e4cad5e634184b7ed1c> /usr/lib/swift/libswiftCoreGraphics.dylib
0x1e8478000 - 0x1e847efff libswiftCoreLocation.dylib arm64  <3aa2846d79dd33cbaf7f052f26c4670c> /usr/lib/swift/libswiftCoreLocation.dylib
0x1e84c3000 - 0x1e84ccfff libswiftDarwin.dylib arm64  <3d54fb1adeda33e4ba691b56bddf23d8> /usr/lib/swift/libswiftDarwin.dylib
0x1e84cd000 - 0x1e84e6fff libswiftDispatch.dylib arm64  <96f8dbd7431c38ec9b6436e82a2c3a36> /usr/lib/swift/libswiftDispatch.dylib
0x1e84e7000 - 0x1e8654fff libswiftFoundation.dylib arm64  <8b541f9dd90234288dfaea18559508b2> /usr/lib/swift/libswiftFoundation.dylib
0x1e8691000 - 0x1e8698fff libswiftMetal.dylib arm64  <23a9ea2bb79e33518d47c8ef06b87ca0> /usr/lib/swift/libswiftMetal.dylib
0x1e8708000 - 0x1e870efff libswiftObjectiveC.dylib arm64  <8433a4b12ec035638806cb4be16007bb> /usr/lib/swift/libswiftObjectiveC.dylib
0x1e878b000 - 0x1e8793fff libswiftos.dylib arm64  <6304e0aca95f36f8aed7adde39a043c5> /usr/lib/swift/libswiftos.dylib
0x1e87b0000 - 0x1e87b5fff libcache.dylib arm64  <f8f9d9c8fa2c341f9f6ba0fe985552eb> /usr/lib/system/libcache.dylib
0x1e87b6000 - 0x1e87c2fff libcommonCrypto.dylib arm64  <367980207814337795ba9d6fd082d14e> /usr/lib/system/libcommonCrypto.dylib
0x1e87c3000 - 0x1e87c7fff libcompiler_rt.dylib arm64  <cd83d9e185c43820a03fd018a7321b2a> /usr/lib/system/libcompiler_rt.dylib
0x1e8895000 - 0x1e8895fff liblaunch.dylib arm64  <5e9d917f41d23568889a2d74a12446a9> /usr/lib/system/liblaunch.dylib
0x1e8896000 - 0x1e889bfff libmacho.dylib arm64  <7e4bdcc5830e33feb1141fcd5abe21aa> /usr/lib/system/libmacho.dylib
0x1e889c000 - 0x1e889efff libremovefile.dylib arm64  <4acd11ced3f83562a5ff9d6896b07164> /usr/lib/system/libremovefile.dylib
0x1e889f000 - 0x1e88a0fff libsystem_featureflags.dylib arm64  <956d43661dea3dd5a7029b8d345289ca> /usr/lib/system/libsystem_featureflags.dylib
0x1e88a1000 - 0x1e88cefff libsystem_m.dylib arm64  <adfc3aac75c0342cb72b2d50d29ef28d> /usr/lib/system/libsystem_m.dylib
0x1e88cf000 - 0x1e88d4fff libunwind.dylib arm64  <2ad0d47cf0f53a9f8c140cb8dd009c91> /usr/lib/system/libunwind.dylib
0x1e8a7f000 - 0x1e8a90fff AccessibilitySettingsLoader arm64  <a43eba1465a93be98504ad417e93b0df> /System/Library/AccessibilityBundles/AccessibilitySettingsLoader.bundle/AccessibilitySettingsLoader
0x1e8bb4000 - 0x1e8c1bfff NanoRegistry arm64  <115719fffc0d394a9516e82dd06f219c> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1e8c1c000 - 0x1e8c29fff NanoPreferencesSync arm64  <d48f6b82db873cd99cb3332f0d4a8f48> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1e96f0000 - 0x1e9729fff CryptoTokenKit arm64  <15782f61144b32ffa99852964437ef46> /System/Library/Frameworks/CryptoTokenKit.framework/CryptoTokenKit
0x1ea643000 - 0x1ea661fff AppSSO arm64  <218026c5368839a281410c2a703778c8> /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1ea662000 - 0x1ea676fff AppSSOCore arm64  <a8d86f1c336531a0a7144e8c0e059684> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore
0x1eaa6f000 - 0x1eaa79fff PointerUIServices arm64  <0df18b83eb173ca9a87fd1391fdeea49> /System/Library/PrivateFrameworks/PointerUIServices.framework/PointerUIServices
0x1eaa7a000 - 0x1eaafefff SafariSharedUI arm64  <07a13071a4f2307e8e6ebacd4f692dd3> /System/Library/PrivateFrameworks/SafariSharedUI.framework/SafariSharedUI
dpa99c commented 4 years ago

@switchstance-devs that sucks 😞 - just to double-check, you definitely installed the plugin off the master git branch (cordova plugin add https://github.com/dpa99c/cordova-plugin-firebasex)?

I still wasn't able to repro this crash in a debug build in Xcode so I added defensive coding based on @HansKrywaa's stacktrace but seems the infinite recursion is still happening so I might need to do something differently than the original commit which added this delegate switching code.

There might be a better solution to make this work with cordova-plugin-local-notifications in the same project and still prevent this crash, e.g. a common broadcast event (see #443 and https://github.com/katzer/cordova-plugin-app-event/issues/16).

switchstance-devs commented 4 years ago

@dpa99c Yes, I completely reinstalled the plugin and used the master branch.

@HansKrywaa Would you be able to verify if you're still experiencing the same issue?

dpa99c commented 4 years ago

I've just done some testing regarding this:

Firstly, if you add the current version of cordova-plugin-local-notification to your Cordova project alongside this one, then foreground notifications stop working properly as outlined in #230.

The original commit that added the delegate swizzling (which I believe is responsible for these crashes) was intended to fix this so both plugins could co-exist. Since this doesn't work, I see no reason to keep that commit so I have reverted it on the dev branch (see above). On regression testing without it, both background (system) notifications and foreground notifications continue to work OK in the example project.

If someone can give that branch a test and let me know if it stops the crashes, I'd be grateful. If so, I can merge to master and push out a patch release to fix these crashes.

To test it in your project:

cordova plugin rm cordova-plugin-firebasex --nosave && cordova plugin add https://github.com/dpa99c/cordova-plugin-firebasex#dev --nosave
EinfachHans commented 4 years ago

@dpa99c Thanks, i will test the next days. 😊 We are using the Local Notifications Plugin as well, but because in our logic local Notifications only fired in Background we never got the error #230. So if i understand correctly, this error will be "back" then? Doesn't important for us and i don't know how much work this will be, but do you thought about including the option to trigger local pushs into this plugin to work next to the core functionality ?

EinfachHans commented 4 years ago

Just installed from dev Branch and i was not able to reproduce this Crash - but i have this Problem with local Pushs now: i send them in the background and want to perform specific things when i click into it. For this i use the this.localNotifications.on('click') Subscription - This doesn't get triggered anymore. Is this the Error described in #230?

switchstance-devs commented 4 years ago

@dpa99c I installed the plugin from dev branch and I can confirm no crash happens when clicking on notification as described for original issue.

JakeFargo commented 4 years ago

We were seeing the same crashes in testing, and now with the dev build we can confirm it is resolved as well. (Nice work!)

We are on the cusp of an releasing our app, and are wondering when this will be included in a release of the plugin?