firebase / flutterfire

🔥 A collection of Firebase plugins for Flutter apps.
https://firebase.google.com/docs/flutter/setup
BSD 3-Clause "New" or "Revised" License
8.66k stars 3.96k forks source link

[firebase_functions] Calling cloud functions offline crashes the app #576

Closed kroikie closed 4 years ago

kroikie commented 4 years ago

The app crashes when trying to call a Cloud Function while the (iOS simulator) device is disconnected from the internet.

Steps to Reproduce

This onCall cloud function

exports.test = functions.https.onCall((data, context) => {
    return data.testParam;
});

is called in my app as follows:

void callCloudFunction() async {
  try {
    final result = await CloudFunctions.instance.call(functionName: 'test', parameters: {'testParam': '1234'});
    print('Result: $result');
  } catch (e) {
    print('Error: $e');
  }
}

I'm using the cloud_functions plugin. The app is run on the iOS simulator. When connected to the internet, the logs show the expected result:

flutter: Result: 1234

When the device is offline, the expected result would be that an exception is caught in the catch (e) statement above. Instead, the app crashes.

Logs

flutter run --verbose:

[+8898 ms] [DEVICE LOG] 2018-11-14 10:56:15.270361+0100  localhost Runner[22235]: (Security) Created Activity ID: 0x45ae4, Description: SecItemCopyMatching_ios
[  +13 ms] [DEVICE LOG] 2018-11-14 10:56:15.280871+0100  localhost Runner[22235]: (CFNetwork) Task <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1> resuming, QOS(0x21)
[        ] [DEVICE LOG] 2018-11-14 10:56:15.281980+0100  localhost Runner[22235]: (CFNetwork) [com.apple.CFNetwork:ATS] Task <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1> {strength 1, tls 8, ct 0, sub 0, sig 0, ciphers 1, bundle 0,
builtin 0}
[        ] [DEVICE LOG] 2018-11-14 10:56:15.282286+0100  localhost Runner[22235]: (CFNetwork) TIC Enabling TLS [2:0x600000cb7600]
[        ] [DEVICE LOG] 2018-11-14 10:56:15.282392+0100  localhost Runner[22235]: (CFNetwork) TIC TCP Conn Start [2:0x600000cb7600]
[        ] [DEVICE LOG] 2018-11-14 10:56:15.282509+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] [C2 us-central1-XXX.cloudfunctions.net:443 tcp, url hash: 7a245bf9, tls] start
[        ] [DEVICE LOG] 2018-11-14 10:56:15.283825+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] nw_connection_report_state_with_handler_locked [C2] reporting state waiting
[        ] [DEVICE LOG] 2018-11-14 10:56:15.283961+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] nw_connection_report_state_with_handler_locked [C2] reporting state preparing
[        ] [DEVICE LOG] 2018-11-14 10:56:15.284678+0100  localhost Runner[22235]: (CFNetwork) Task <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1> setting up Connection 2
[   +2 ms] [DEVICE LOG] 2018-11-14 10:56:15.285731+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] nw_connection_report_state_with_handler_locked [C2] reporting state failed error Network is down
[        ] [DEVICE LOG] 2018-11-14 10:56:15.285796+0100  localhost Runner[22235]: (CFNetwork) TIC TCP Conn Event [2:0x600000cb7600]: 3
[        ] [DEVICE LOG] 2018-11-14 10:56:15.285846+0100  localhost Runner[22235]: (CFNetwork) TIC TCP Conn Failed [2:0x600000cb7600]: 1:50 Err(50)
[        ] [DEVICE LOG] 2018-11-14 10:56:15.285877+0100  localhost Runner[22235]: (CFNetwork) TIC TCP Conn Cancel [2:0x600000cb7600]
[        ] [DEVICE LOG] 2018-11-14 10:56:15.285926+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] [C2 us-central1-XXX.cloudfunctions.net:443 tcp, url hash: 7a245bf9, tls] cancel
[        ] [DEVICE LOG] 2018-11-14 10:56:15.286192+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] [C2 us-central1-XXX.cloudfunctions.net:443 tcp, url hash: 7a245bf9, tls] cancelled
[   +5 ms] [DEVICE LOG] 2018-11-14 10:56:15.286275+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] 0.000s [C2 68DCB59B-17A4-4775-8C78-17DBD8307697 us-central1-XXX.cloudfunctions.net:443 resolver]
path:start
[        ] [DEVICE LOG] 2018-11-14 10:56:15.286608+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] 0.001s [C2 68DCB59B-17A4-4775-8C78-17DBD8307697 us-central1-XXX.cloudfunctions.net:443 resolver]
path:unsatisfied
[        ] [DEVICE LOG] 2018-11-14 10:56:15.286672+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] 0.001s [C2 68DCB59B-17A4-4775-8C78-17DBD8307697 us-central1-XXX.cloudfunctions.net:443 resolver]
resolver:start_dns
[        ] [DEVICE LOG] 2018-11-14 10:56:15.286966+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] 0.003s [C2 68DCB59B-17A4-4775-8C78-17DBD8307697 us-central1-XXX.cloudfunctions.net:443 resolver]
resolver:receive_dns
[        ] [DEVICE LOG] 2018-11-14 10:56:15.287014+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] 0.003s [C2] path:cancel
[        ] [DEVICE LOG] 2018-11-14 10:56:15.289058+0100  localhost Runner[22235]: (libnetwork.dylib) [com.apple.network:] nw_connection_report_state_with_handler_locked [C2] reporting state cancelled
[        ] [DEVICE LOG] 2018-11-14 10:56:15.289180+0100  localhost Runner[22235]: (CFNetwork) TIC TCP Conn Destroyed [2:0x600000cb7600]
[        ] [DEVICE LOG] 2018-11-14 10:56:15.289398+0100  localhost Runner[22235]: (CFNetwork) _CFNetworkIsConnectedToInternet returning 0, flagsValid: 1, flags: 0x0
[        ] [DEVICE LOG] 2018-11-14 10:56:15.289438+0100  localhost Runner[22235]: (CFNetwork) Task <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1> HTTP load failed (error code: -1009 [1:50])
[        ] [DEVICE LOG] 2018-11-14 10:56:15.289595+0100  localhost Runner[22235]: (CFNetwork) Task <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1> finished with error - code: -1009
[        ] [DEVICE LOG] 2018-11-14 10:56:15.289896+0100  localhost Runner[22235]: (CFNetwork) Task <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1> load failed with error Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection
appears to be offline." UserInfo={_kCFStreamErrorCodeKey=50, NSUnderlyingError=0x6000037808a0 {Error Domain=kCFErrorDomainCFNetwork Code=-1009 "(null)" UserInfo={_kCFStreamErrorCodeKey=50, _kCFStreamErrorDomainKey=1}},
_NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
[        ] [DEVICE LOG]     "LocalDataTask <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1>"
[        ] [DEVICE LOG] ), NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLStringKey=https://us-central1-XXX.cloudfunctions.net/test,
NSErrorFailingURLKey=https://us-central1-XXX.cloudfunctions.net/test, _kCFStreamErrorDomainKey=1} [-1009]
[        ] [DEVICE LOG] 2018-11-14 10:56:15.290689+0100  localhost Runner[22235]: (Foundation) *** Assertion failure in -[FlutterError initWithCode:message:details:],
../../flutter/shell/platform/darwin/ios/framework/Source/FlutterChannels.mm:81
[        ]     "LocalDataTask <C9D4CBB0-92FB-49B3-9D94-6D24995835DD>.<1>"
[        ] ), NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLStringKey=https://us-central1-XXX.cloudfunctions.net/test,
NSErrorFailingURLKey=https://us-central1-XXX.cloudfunctions.net/test, _kCFStreamErrorDomainKey=1} [-1009]
[  +70 ms] [DEVICE LOG] 2018-11-14 10:56:15.369082+0100  localhost Runner[22235]: (CoreFoundation) *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Code cannot be nil'
[        ] [DEVICE LOG] *** First throw call stack:
[        ] [DEVICE LOG] (
[        ] [DEVICE LOG]         0   CoreFoundation                      0x000000010875d29b __exceptionPreprocess + 331
[        ] [DEVICE LOG]         1   libobjc.A.dylib                     0x000000010a6f5735 objc_exception_throw + 48
[        ] [DEVICE LOG]         2   CoreFoundation                      0x000000010875d022 +[NSException raise:format:arguments:] + 98
[        ] [DEVICE LOG]         3   Foundation                          0x0000000107d25b47 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 194
[        ] [DEVICE LOG]         4   Flutter                             0x0000000108f2e5d1 -[FlutterError initWithCode:message:details:] + 282
[        ] [DEVICE LOG]         5   Flutter                             0x0000000108f2e4a0 +[FlutterError errorWithCode:message:details:] + 66
[        ] [DEVICE LOG]         6   Runner                              0x00000001064ea233 __48-[CloudFunctionsPlugin handleMethodCall:result:]_block_invoke + 1011
[        ] [DEVICE LOG]         7   Runner                              0x000000010641d06e __59-[FIRFunctions callFunction:w<…>
[        ] *** First throw call stack:
[        ] (
[        ]      0   CoreFoundation                      0x000000010875d29b __exceptionPreprocess + 331
[        ]      1   libobjc.A.dylib                     0x000000010a6f5735 objc_exception_throw + 48
[        ]      2   CoreFoundation                      0x000000010875d022 +[NSException raise:format:arguments:] + 98
[        ]      3   Foundation                          0x0000000107d25b47 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 194
[        ]      4   Flutter                             0x0000000108f2e5d1 -[FlutterError initWithCode:message:details:] + 282
[        ]      5   Flutter                             0x0000000108f2e4a0 +[FlutterError errorWithCode:message:details:] + 66
[        ]      6   Runner                              0x00000001064ea233 __48-[CloudFunctionsPlugin handleMethodCall:result:]_block_invoke + 1011
[        ]      7   Runner                              0x000000010641d06e __59-[FIRFunctions callFunction:w<…>
[   +5 ms] Service protocol connection closed.
[        ] Lost connection to device.
[   +1 ms] DevFS: Deleting filesystem on the device
(file:///Users/XXX/Library/Developer/CoreSimulator/Devices/0C2AA41D-B010-4578-A915-57FB17B77FCF/data/Containers/Data/Application/E5ADC262-3C2A-4B33-AA65-F9B7D83D7863/tmp/XXX/XXX/)
[        ] Sending to VM service: _deleteDevFS({fsName: XXX})
[ +256 ms] TimeoutException after 0:00:00.250000: Future not completed
[   +3 ms] "flutter run" took 29,659ms.

flutter analyze does not produce output relevant to this issue.

flutter doctor -v:

[✓] Flutter (Channel master, v0.11.4, on Mac OS X 10.14.1 18B75, locale en-US)
    • Flutter version 0.11.4 at /Users/XXX/workspace/private/flutter
    • Framework revision df57dc9da9 (2 days ago), 2018-11-11 22:36:47 -0800
    • Engine revision 5646e86a6f
    • Dart version 2.1.0 (build 2.1.0-dev.9.3 9c07fb64c4)

[✓] Android toolchain - develop for Android devices (Android SDK 27.0.3)
    • Android SDK at /Users/XXX/Library/Android/sdk
    • Android NDK location not configured (optional; useful for native profiling support)
    • Platform android-27, build-tools 27.0.3
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)
    • All Android licenses accepted.

[✓] iOS toolchain - develop for iOS devices (Xcode 10.0)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 10.0, Build version 10A255
    • ios-deploy 1.9.2
    • CocoaPods version 1.5.2

[✓] Android Studio (version 3.1)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 27.1.1
    • Dart plugin version 173.4700
    • Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1024-b01)

[✓] VS Code (version 1.29.0)
    • VS Code at /Applications/Visual Studio Code.app/Contents
    • Flutter extension version 2.20.0

[✓] Connected device (1 available)
    • iPhone XS Max • 0C2AA41D-B010-4578-A915-57FB17B77FCF • ios • iOS 12.0 (simulator)

• No issues found!

Crash log:

Process:               Runner [22235]
Path:                  /Users/USER/Library/Developer/CoreSimulator/Devices/0C2AA41D-B010-4578-A915-57FB17B77FCF/data/Containers/Bundle/Application/44A3851A-B331-4F69-B795-DA357907A250/Runner.app/Runner
Identifier:            Runner
Version:               1.0.0 (7)
Code Type:             X86-64 (Native)
Parent Process:        launchd_sim [6240]
Responsible:           Runner [22235]
User ID:               502

Date/Time:             2018-11-14 10:56:15.501 +0100
OS Version:            Mac OS X 10.14.1 (18B75)
Report Version:        12
Bridge OS Version:     3.0 (14Y667)
Anonymous UUID:        9A7D4753-47DA-3CA9-B350-D853EE76129B

Time Awake Since Boot: 11000 seconds

System Integrity Protection: enabled

Crashed Thread:        0  Dispatch queue: com.apple.main-thread

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Code cannot be nil'
terminating with uncaught exception of type NSException
abort() called
CoreSimulator 572.2 - Device: iPhone XS Max - Runtime: iOS 12.0 (16A366) - DeviceType: iPhone XS Max

Application Specific Backtrace 1:
0   CoreFoundation                      0x000000010875d29b __exceptionPreprocess + 331
1   libobjc.A.dylib                     0x000000010a6f5735 objc_exception_throw + 48
2   CoreFoundation                      0x000000010875d022 +[NSException raise:format:arguments:] + 98
3   Foundation                          0x0000000107d25b47 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 194
4   Flutter                             0x0000000108f2e5d1 -[FlutterError initWithCode:message:details:] + 282
5   Flutter                             0x0000000108f2e4a0 +[FlutterError errorWithCode:message:details:] + 66
6   Runner                              0x00000001064ea233 __48-[CloudFunctionsPlugin handleMethodCall:result:]_block_invoke + 1011
7   Runner                              0x000000010641d06e __59-[FIRFunctions callFunction:withObject:context:completion:]_block_invoke.90 + 414
8   Runner                              0x0000000106433573 __71-[GTMSessionFetcher invokeFetchCallbacksOnCallbackQueueWithData:error:]_block_invoke + 51
9   Runner                              0x00000001064331a6 __66-[GTMSessionFetcher invokeOnCallbackQueue:afterUserStopped:block:]_block_invoke + 582
10  libdispatch.dylib                   0x000000010b8d851d _dispatch_call_block_and_release + 12
11  libdispatch.dylib                   0x000000010b8d9587 _dispatch_client_callout + 8
12  libdispatch.dylib                   0x000000010b8e515c _dispatch_main_queue_callback_4CF + 682
13  CoreFoundation                      0x00000001086c07f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
14  CoreFoundation                      0x00000001086bae86 __CFRunLoopRun + 2342
15  CoreFoundation                      0x00000001086ba221 CFRunLoopRunSpecific + 625
16  GraphicsServices                    0x000000010ef561dd GSEventRunModal + 62
17  UIKitCore                           0x0000000112530115 UIApplicationMain + 140
18  Runner                              0x0000000105ffee20 main + 112
19  libdyld.dylib                       0x000000010b949551 start + 1

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   libsystem_kernel.dylib          0x000000010bc72b86 __pthread_kill + 10
1   libsystem_pthread.dylib         0x000000010bcc5c50 pthread_kill + 285
2   libsystem_c.dylib               0x000000010ba35c45 abort + 127
3   libc++abi.dylib                 0x000000010b7e55b1 abort_message + 231
4   libc++abi.dylib                 0x000000010b7e574d default_terminate_handler() + 265
5   libobjc.A.dylib                 0x000000010a6f5a9d _objc_terminate() + 97
6   libc++abi.dylib                 0x000000010b7f165e std::__terminate(void (*)()) + 8
7   libc++abi.dylib                 0x000000010b7f16d3 std::terminate() + 51
8   libdispatch.dylib               0x000000010b8d959b _dispatch_client_callout + 28
9   libdispatch.dylib               0x000000010b8e515c _dispatch_main_queue_callback_4CF + 682
10  com.apple.CoreFoundation        0x00000001086c07f9 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
11  com.apple.CoreFoundation        0x00000001086bae86 __CFRunLoopRun + 2342
12  com.apple.CoreFoundation        0x00000001086ba221 CFRunLoopRunSpecific + 625
13  com.apple.GraphicsServices      0x000000010ef561dd GSEventRunModal + 62
14  com.apple.UIKitCore             0x0000000112530115 UIApplicationMain + 140
15  com.XXX.ios                     0x0000000105ffee20 main + 112 (main.m:7)
16  libdyld.dylib                   0x000000010b949551 start + 1

Thread 1:
0   libsystem_pthread.dylib         0x000000010bcc2428 start_wqthread + 0
1   ???                             0x0000000000001103 0 + 4355

Thread 2:
0   libsystem_pthread.dylib         0x000000010bcc2428 start_wqthread + 0
1   ???                             0x0000000054485244 0 + 1414025796

Thread 3:: com.apple.uikit.eventfetch-thread
0   libsystem_kernel.dylib          0x000000010bc6cc2a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x000000010bc6d174 mach_msg + 60
2   com.apple.CoreFoundation        0x00000001086c05c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00000001086babf9 __CFRunLoopRun + 1689
4   com.apple.CoreFoundation        0x00000001086ba221 CFRunLoopRunSpecific + 625
5   com.apple.Foundation            0x0000000107da6522 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6   com.apple.Foundation            0x0000000107da6734 -[NSRunLoop(NSRunLoop) runUntilDate:] + 143
7   com.apple.UIKitCore             0x000000011248a63f -[UIEventFetcher threadMain] + 118
8   com.apple.Foundation            0x0000000107dbb932 __NSThread__start__ + 1221
9   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
10  libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
11  libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 4:: Dispatch queue: com.apple.root.default-qos
0   libsystem_kernel.dylib          0x000000010bc74b8e poll + 10
1   com.XXX.ios                     0x000000010654996e pollset_work(grpc_pollset*, grpc_pollset_worker**, long) + 1726 (ev_poll_posix.cc:982)
2   com.XXX.ios                     0x000000010654dfb0 pollset_work(grpc_pollset*, grpc_pollset_worker**, long) + 112 (ev_posix.cc:249)
3   com.XXX.ios                     0x00000001065a7298 grpc_pollset_work(grpc_pollset*, grpc_pollset_worker**, long) + 56 (pollset.cc:48)
4   com.XXX.ios                     0x000000010653acee cq_next(grpc_completion_queue*, gpr_timespec, void*) + 1022 (completion_queue.cc:929)
5   com.XXX.ios                     0x000000010653a073 grpc_completion_queue_next + 99 (completion_queue.cc:1005)
6   com.XXX.ios                     0x00000001064f92e7 __27-[GRPCCompletionQueue init]_block_invoke_2 + 71 (GRPCCompletionQueue.m:57)
7   libdispatch.dylib               0x000000010b8d851d _dispatch_call_block_and_release + 12
8   libdispatch.dylib               0x000000010b8d9587 _dispatch_client_callout + 8
9   libdispatch.dylib               0x000000010b8dbc60 _dispatch_queue_override_invoke + 840
10  libdispatch.dylib               0x000000010b8e84af _dispatch_root_queue_drain + 355
11  libdispatch.dylib               0x000000010b8e8d19 _dispatch_worker_thread2 + 97
12  libsystem_pthread.dylib         0x000000010bcc270e _pthread_wqthread + 619
13  libsystem_pthread.dylib         0x000000010bcc2435 start_wqthread + 13

Thread 5:: io.flutter.1.ui
0   libsystem_kernel.dylib          0x000000010bc6cc2a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x000000010bc6d174 mach_msg + 60
2   com.apple.CoreFoundation        0x00000001086c05c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00000001086babf9 __CFRunLoopRun + 1689
4   com.apple.CoreFoundation        0x00000001086ba221 CFRunLoopRunSpecific + 625
5   io.flutter.flutter              0x0000000108f5ee03 fml::MessageLoopDarwin::Run() + 71
6   io.flutter.flutter              0x0000000108f5bd40 fml::MessageLoopImpl::DoRun() + 32
7   io.flutter.flutter              0x0000000108f5e7a1 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0> >(void*) + 166
8   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
9   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
10  libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 6:: io.flutter.1.gpu
0   io.flutter.flutter              0x00000001091d0d1c avx::memset32(unsigned int*, unsigned int, int) + 40
1   io.flutter.flutter              0x0000000109002474 SkRasterPipelineBlitter::blitRect(int, int, int, int) + 286
2   io.flutter.flutter              0x0000000108fc6f27 SkDraw::drawPaint(SkPaint const&) const + 149
3   io.flutter.flutter              0x0000000108fa92f8 SkBitmapDevice::drawPaint(SkPaint const&) + 40
4   io.flutter.flutter              0x0000000108fb6d17 SkCanvas::internalDrawPaint(SkPaint const&) + 125
5   io.flutter.flutter              0x0000000108fb5251 SkCanvas::drawPaint(SkPaint const&) + 171
6   io.flutter.flutter              0x0000000108fbff7f SkColorSpaceXformCanvas::onDrawPaint(SkPaint const&) + 51
7   io.flutter.flutter              0x0000000108fb5251 SkCanvas::drawPaint(SkPaint const&) + 171
8   io.flutter.flutter              0x0000000108fb9d13 SkCanvas::drawColor(unsigned int, SkBlendMode) + 65
9   io.flutter.flutter              0x0000000108f95c24 shell::Rasterizer::DrawToSurface(flow::LayerTree&) + 202
10  io.flutter.flutter              0x0000000108f95f4e shell::Rasterizer::DoDraw(std::__1::unique_ptr<flow::LayerTree, std::__1::default_delete<flow::LayerTree> >) + 36
11  io.flutter.flutter              0x0000000108f96d10 void std::__1::__invoke_void_return_wrapper<void>::__call<std::__1::__bind<void (shell::Rasterizer::*)(std::__1::unique_ptr<flow::LayerTree, std::__1::default_delete<flow::LayerTree> >), shell::Rasterizer*, std::__1::placeholders::__ph<1> const&>&, std::__1::unique_ptr<flow::LayerTree, std::__1::default_delete<flow::LayerTree> > >(std::__1::__bind<void (shell::Rasterizer::*)(std::__1::unique_ptr<flow::LayerTree, std::__1::default_delete<flow::LayerTree> >), shell::Rasterizer*, std::__1::placeholders::__ph<1> const&>&&&, std::__1::unique_ptr<flow::LayerTree, std::__1::default_delete<flow::LayerTree> >&&) + 58
12  io.flutter.flutter              0x0000000108f9609d flutter::Pipeline<flow::LayerTree>::Consume(std::__1::function<void (std::__1::unique_ptr<flow::LayerTree, std::__1::default_delete<flow::LayerTree> >)>) + 283
13  io.flutter.flutter              0x0000000108f95df7 shell::Rasterizer::Draw(fml::RefPtr<flutter::Pipeline<flow::LayerTree> >) + 293
14  io.flutter.flutter              0x0000000108fa0460 std::__1::__function::__func<shell::Shell::OnAnimatorDraw(fml::RefPtr<flutter::Pipeline<flow::LayerTree> >)::$_23, std::__1::allocator<shell::Shell::OnAnimatorDraw(fml::RefPtr<flutter::Pipeline<flow::LayerTree> >)::$_23>, void ()>::operator()() + 56
15  io.flutter.flutter              0x0000000108f5bc0c fml::MessageLoopImpl::RunExpiredTasks() + 944
16  io.flutter.flutter              0x0000000108f5ecb2 fml::MessageLoopDarwin::OnTimerFire(__CFRunLoopTimer*, fml::MessageLoopDarwin*) + 26
17  com.apple.CoreFoundation        0x00000001086c1344 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
18  com.apple.CoreFoundation        0x00000001086c0f42 __CFRunLoopDoTimer + 1026
19  com.apple.CoreFoundation        0x00000001086c07aa __CFRunLoopDoTimers + 266
20  com.apple.CoreFoundation        0x00000001086bae2c __CFRunLoopRun + 2252
21  com.apple.CoreFoundation        0x00000001086ba221 CFRunLoopRunSpecific + 625
22  io.flutter.flutter              0x0000000108f5ee03 fml::MessageLoopDarwin::Run() + 71
23  io.flutter.flutter              0x0000000108f5bd40 fml::MessageLoopImpl::DoRun() + 32
24  io.flutter.flutter              0x0000000108f5e7a1 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0> >(void*) + 166
25  libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
26  libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
27  libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 7:: io.flutter.1.io
0   libsystem_kernel.dylib          0x000000010bc6cc2a mach_msg_trap + 10
1   libsystem_kernel.dylib          0x000000010bc6d174 mach_msg + 60
2   com.apple.CoreFoundation        0x00000001086c05c4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation        0x00000001086babf9 __CFRunLoopRun + 1689
4   com.apple.CoreFoundation        0x00000001086ba221 CFRunLoopRunSpecific + 625
5   io.flutter.flutter              0x0000000108f5ee03 fml::MessageLoopDarwin::Run() + 71
6   io.flutter.flutter              0x0000000108f5bd40 fml::MessageLoopImpl::DoRun() + 32
7   io.flutter.flutter              0x0000000108f5e7a1 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, fml::Thread::Thread(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)::$_0> >(void*) + 166
8   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
9   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
10  libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 8:
0   libsystem_kernel.dylib          0x000000010bc73052 kevent + 10
1   io.flutter.flutter              0x000000010926f7d8 dart::bin::EventHandlerImplementation::EventHandlerEntry(unsigned long) + 264
2   io.flutter.flutter              0x000000010928a9be dart::bin::ThreadStart(void*) + 30
3   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
4   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
5   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 9:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65cb _pthread_cond_wait + 724
2   io.flutter.flutter              0x000000010949242f dart::Monitor::WaitMicros(long long) + 175
3   io.flutter.flutter              0x000000010952a95f dart::ThreadInterrupter::ThreadMain(unsigned long) + 431
4   io.flutter.flutter              0x0000000109491a57 dart::ThreadStart(void*) + 71
5   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
6   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
7   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 10:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65fe _pthread_cond_wait + 775
2   io.flutter.flutter              0x0000000109492407 dart::Monitor::WaitMicros(long long) + 135
3   io.flutter.flutter              0x000000010952b6be dart::ThreadPool::Worker::Loop() + 190
4   io.flutter.flutter              0x000000010952b4b7 dart::ThreadPool::Worker::Main(unsigned long) + 135
5   io.flutter.flutter              0x0000000109491a57 dart::ThreadStart(void*) + 71
6   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
7   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
8   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 11:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65cb _pthread_cond_wait + 724
2   io.flutter.flutter              0x0000000109492304 dart::Monitor::Wait(long long) + 180
3   io.flutter.flutter              0x000000010965a9ea dart::BackgroundCompiler::Run() + 1018
4   io.flutter.flutter              0x000000010952b62f dart::ThreadPool::Worker::Loop() + 47
5   io.flutter.flutter              0x000000010952b4b7 dart::ThreadPool::Worker::Main(unsigned long) + 135
6   io.flutter.flutter              0x0000000109491a57 dart::ThreadStart(void*) + 71
7   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
8   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
9   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 12:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65cb _pthread_cond_wait + 724
2   io.flutter.flutter              0x0000000109492304 dart::Monitor::Wait(long long) + 180
3   io.flutter.flutter              0x000000010965a9ea dart::BackgroundCompiler::Run() + 1018
4   io.flutter.flutter              0x000000010952b62f dart::ThreadPool::Worker::Loop() + 47
5   io.flutter.flutter              0x000000010952b4b7 dart::ThreadPool::Worker::Main(unsigned long) + 135
6   io.flutter.flutter              0x0000000109491a57 dart::ThreadStart(void*) + 71
7   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
8   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
9   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 13:
0   libsystem_pthread.dylib         0x000000010bcc2428 start_wqthread + 0
1   ???                             0x0000000054485244 0 + 1414025796

Thread 14:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65fe _pthread_cond_wait + 775
2   io.flutter.flutter              0x0000000109492407 dart::Monitor::WaitMicros(long long) + 135
3   io.flutter.flutter              0x000000010952b6be dart::ThreadPool::Worker::Loop() + 190
4   io.flutter.flutter              0x000000010952b4b7 dart::ThreadPool::Worker::Main(unsigned long) + 135
5   io.flutter.flutter              0x0000000109491a57 dart::ThreadStart(void*) + 71
6   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
7   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
8   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 15:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65cb _pthread_cond_wait + 724
2   com.XXX.ios                     0x00000001065e48dd gpr_cv_wait + 109 (sync_posix.cc:79)
3   com.XXX.ios                     0x000000010654f8c7 executor_thread(void*) + 503 (executor.cc:160)
4   com.XXX.ios                     0x00000001065ed5d2 grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*)::'lambda'(void*)::operator()(void*) const + 210 (thd_posix.cc:106)
5   com.XXX.ios                     0x00000001065ed4f8 grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*)::'lambda'(void*)::__invoke(void*) + 24 (thd_posix.cc:79)
6   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
7   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
8   libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 16:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65cb _pthread_cond_wait + 724
2   com.XXX.ios                     0x00000001065e48dd gpr_cv_wait + 109 (sync_posix.cc:79)
3   com.XXX.ios                     0x00000001065f2431 wait_until(long) + 417 (timer_manager.cc:186)
4   com.XXX.ios                     0x00000001065f208f timer_main_loop() + 191 (timer_manager.cc:240)
5   com.XXX.ios                     0x00000001065f1f8e timer_thread(void*) + 30 (timer_manager.cc:269)
6   com.XXX.ios                     0x00000001065ed5d2 grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*)::'lambda'(void*)::operator()(void*) const + 210 (thd_posix.cc:106)
7   com.XXX.ios                     0x00000001065ed4f8 grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*)::'lambda'(void*)::__invoke(void*) + 24 (thd_posix.cc:79)
8   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
9   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
10  libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

Thread 17:
0   libsystem_kernel.dylib          0x000000010bc701b2 __psynch_cvwait + 10
1   libsystem_pthread.dylib         0x000000010bcc65cb _pthread_cond_wait + 724
2   com.XXX.ios                     0x00000001065e494b gpr_cv_wait + 219 (sync_posix.cc:89)
3   com.XXX.ios                     0x00000001065f2431 wait_until(long) + 417 (timer_manager.cc:186)
4   com.XXX.ios                     0x00000001065f208f timer_main_loop() + 191 (timer_manager.cc:240)
5   com.XXX.ios                     0x00000001065f1f8e timer_thread(void*) + 30 (timer_manager.cc:269)
6   com.XXX.ios                     0x00000001065ed5d2 grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*)::'lambda'(void*)::operator()(void*) const + 210 (thd_posix.cc:106)
7   com.XXX.ios                     0x00000001065ed4f8 grpc_core::(anonymous namespace)::ThreadInternalsPosix::ThreadInternalsPosix(char const*, void (*)(void*), void*, bool*)::'lambda'(void*)::__invoke(void*) + 24 (thd_posix.cc:79)
8   libsystem_pthread.dylib         0x000000010bcc3339 _pthread_body + 126
9   libsystem_pthread.dylib         0x000000010bcc62a7 _pthread_start + 70
10  libsystem_pthread.dylib         0x000000010bcc2445 thread_start + 13

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

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x0000000108f015c0  rcx: 0x00007ffee9c000e8  rdx: 0x0000000000000000
  rdi: 0x0000000000000303  rsi: 0x0000000000000006  rbp: 0x00007ffee9c00120  rsp: 0x00007ffee9c000e8
   r8: 0x00007ffee9bfffa8   r9: 0x00007ffee9c00180  r10: 0x0000000000000000  r11: 0x0000000000000206
  r12: 0x0000000000000303  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x000000000000002d
  rip: 0x000000010bc72b86  rfl: 0x0000000000000206  cr2: 0x000028c78684e000

Logical CPU:     0
Error Code:      0x00000000
Trap Number:     222

Binary Images:
       0x105ffd000 -        0x106828ff7 +com.XXX.ios (1.0.0 - 7) <3CCC48A6-85B9-392D-BC16-95AD2BFD8E68> /Users/USER/Library/Developer/CoreSimulator/Devices/0C2AA41D-B010-4578-A915-57FB17B77FCF/data/Containers/Bundle/Application/44A3851A-B331-4F69-B795-DA357907A250/Runner.app/Runner
       0x106efd000 -        0x106f44bd7 +dyld_sim (625.11.5) <1F9ECE6E-EF05-342B-934E-5C116AC62C03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim
       0x106f94000 -        0x106fe2ff7 +libc++.1.dylib (400.9.4) <86060660-D45A-3AA0-A233-A45AB9B876A6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++.1.dylib
       0x107030000 -        0x10728dff3 +libicucore.A.dylib (62107.0.2) <1DD0C49E-7EB5-32E8-921C-DE01645DABE3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libicucore.A.dylib
       0x10738e000 -        0x10751fffb +libsqlite3.dylib (274.20) <C4955D6D-2DA8-38B7-A4F5-4BDE83117B3A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libsqlite3.dylib
       0x107551000 -        0x107563ff7 +libz.1.dylib (70.200.4) <1829D440-A461-3F31-831C-31BDD0C49521> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libz.1.dylib
       0x107569000 -        0x107925fff  com.apple.CFNetwork (974.2.1 - 974.2.1) <9126AFE5-497B-31A2-AB0B-3D5CEDB31C23> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CFNetwork.framework/CFNetwork
       0x107cf7000 -        0x10800efff  com.apple.Foundation (6.9 - 1556) <5C8BC8B5-AF6E-3BBA-B7EB-E7FF91FE35F4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Foundation.framework/Foundation
       0x10831c000 -        0x10831cff7  com.apple.MobileCoreServices (932.2 - 932.2) <27867EDB-1561-33C4-A91D-37644A33D96E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
       0x108320000 -        0x108423ff7  com.apple.Security (10.0 - 58286.202.3) <93D872EE-F849-3339-A830-57007F9A2D37> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Security.framework/Security
       0x108507000 -        0x10853efff  com.apple.StoreKit (1.0 - 1) <DC16881C-55AD-390C-B758-4DA44EAE64EE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/StoreKit.framework/StoreKit
       0x10858d000 -        0x1085edff7  com.apple.SystemConfiguration (1.17 - 1.17) <3283BE70-7BD0-3B52-9F7E-7EE789016A79> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
       0x108625000 -        0x108625fff +io.flutter.flutter.app (1.0 - 1.0) <85C06DB4-9499-35E5-863E-B437CDDFBD88> /Users/USER/Library/Developer/CoreSimulator/Devices/0C2AA41D-B010-4578-A915-57FB17B77FCF/data/Containers/Bundle/Application/44A3851A-B331-4F69-B795-DA357907A250/Runner.app/Frameworks/App.framework/App
       0x10862b000 -        0x10862cff7 +libSystem.B.dylib (1252.200.5) <B4781DBF-3C1A-3F44-BF94-671484FF3AFA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libSystem.B.dylib
       0x108633000 -        0x1089cdfff  com.apple.CoreFoundation (6.9 - 1556) <F8DA51F8-5683-3CE7-847F-9231226D2EC3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
       0x108b9f000 -        0x108cd9ff7  com.apple.SafariServices (12.0 - 604.1) <A9757DDD-0E80-3F61-AA70-3C2D4813E8C8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/SafariServices.framework/SafariServices
       0x108e24000 -        0x108e24fff  com.apple.UIKit (1.0 - 61000) <6D10B63C-78B9-3E8A-8297-67EE0FBFB3CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UIKit.framework/UIKit
       0x108e28000 -        0x108e2cffb +libcache.dylib (81) <D117AADC-1719-3CF3-986F-3548DB4E69F5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcache.dylib
       0x108e32000 -        0x108e3cff7 +libcommonCrypto.dylib (60118.200.6) <F636801B-58ED-3F06-857A-57F7FEC7472D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcommonCrypto.dylib
       0x108e4b000 -        0x108ec96a7  dyld (635.2) <1780094A-8FE2-3EAA-B4A3-C4CF14BC5196> /usr/lib/dyld
       0x108f2c000 -        0x109ee8ff7 +io.flutter.flutter (1.0 - 1.0) <08017F89-0239-36D9-96E9-D5C08145D06B> /Users/USER/Library/Developer/CoreSimulator/Devices/0C2AA41D-B010-4578-A915-57FB17B77FCF/data/Containers/Bundle/Application/44A3851A-B331-4F69-B795-DA357907A250/Runner.app/Frameworks/Flutter.framework/Flutter
       0x10a6f0000 -        0x10ae70fef +libobjc.A.dylib (750) <A68506DC-BA2F-3A48-AEFA-ACF78941C61E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc.A.dylib
       0x10b027000 -        0x10b69afff  com.apple.CoreGraphics (2.0 - 1245.8) <EE495192-DCB1-39EE-9AF7-DCDE1F2C696D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
       0x10b7e4000 -        0x10b7f8fff +libc++abi.dylib (400.17) <E26EBA68-4702-308A-A813-419D0A913332> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libc++abi.dylib
       0x10b812000 -        0x10b819ff7 +libcompiler_rt.dylib (63.2) <964F83B9-E2D9-390D-BFC5-4F3FF63B0DAD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcompiler_rt.dylib
       0x10b823000 -        0x10b82cff3 +libcopyfile.dylib (146.200.3) <EEE54053-F9A3-3490-8E75-9E68680AE526> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcopyfile.dylib
       0x10b833000 -        0x10b8b7fff +libcorecrypto.dylib (602.200.50) <B2F4C05C-CF14-3E03-93D4-3481F752A3F1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libcorecrypto.dylib
       0x10b8d5000 -        0x10b911fff +libdispatch.dylib (1008.200.78) <4DE4FC4C-91B8-34CE-B0F6-6F1C8EABA102> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdispatch.dylib
       0x10b948000 -        0x10b973ffb +libdyld.dylib (625.11.5) <6F11C511-22B0-31B0-9063-2F4E42387E84> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libdyld.dylib
       0x10b995000 -        0x10b995ff7 +liblaunch.dylib (1336.200.98) <EAF4A2E5-15B4-3513-AF2B-6664D1B89A3D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/liblaunch.dylib
       0x10b99c000 -        0x10b9a1fff +libmacho.dylib (918.1.1) <F6193EDC-2DE5-381C-B946-AF7AB94CAD98> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libmacho.dylib
       0x10b9a8000 -        0x10b9a9ff3 +libremovefile.dylib (45.200.2) <9DA69CCF-1A8E-39BC-A29B-F3CBF6552EC6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libremovefile.dylib
       0x10b9af000 -        0x10b9c5fff +libsystem_asl.dylib (356.200.4) <F775277A-BD07-30D5-882A-8EBB67D86627> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_asl.dylib
       0x10b9d4000 -        0x10b9d4fff +libsystem_blocks.dylib (73) <4098F8D2-10ED-3D0A-AD56-EBD51649D574> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_blocks.dylib
       0x10b9d9000 -        0x10ba5dff7 +libsystem_c.dylib (1272.200.26) <21E84D3C-3578-39A9-B062-FFA19BF0FC0E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_c.dylib
       0x10ba89000 -        0x10ba8cff7 +libsystem_configuration.dylib (963.200.27) <80911E5E-FD2F-31D9-985E-C1CFAA09E99D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_configuration.dylib
       0x10ba93000 -        0x10ba98ff3 +libsystem_containermanager.dylib (136.200.32) <3A8E9599-EBDB-34F5-839D-071FD20A665E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_containermanager.dylib
       0x10baa0000 -        0x10baa1ffb +libsystem_coreservices.dylib (65) <96190E6D-9C42-3C6C-A640-FFAD32E57916> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_coreservices.dylib
       0x10baa7000 -        0x10baacffb +libsystem_darwin.dylib (1272.200.26) <7F2120ED-62D2-3A40-BDC5-B7BFCB88003E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_darwin.dylib
       0x10bab8000 -        0x10babeff7 +libsystem_dnssd.dylib (878.200.35) <2E15C0CC-A43A-30DE-8824-A356FC575399> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_dnssd.dylib
       0x10bac5000 -        0x10bb06ff7 +libsystem_info.dylib (517.200.9) <E5E9B858-1209-3D24-99F2-B701019F5022> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_info.dylib
       0x10bb1b000 -        0x10bb60ff3 +libsystem_m.dylib (3158.200.7) <21FCE15C-CB4A-3C83-9FEA-F86B19377036> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_m.dylib
       0x10bb6c000 -        0x10bb8fff7 +libsystem_malloc.dylib (166.200.60) <54BF1F59-9B24-31FE-8333-FCA68C6F2B62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_malloc.dylib
       0x10bba1000 -        0x10bba7fff +libsystem_notify.dylib (172.200.21) <50086943-60B6-3A23-BDBB-516A7E0DE20E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_notify.dylib
       0x10bbae000 -        0x10bbb0ff7 +libsystem_sandbox.dylib (851.200.150) <F31C92B9-D333-356E-AA6F-472EDE4343DE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sandbox.dylib
       0x10bbb7000 -        0x10bbb8ffb +libsystem_sim_kernel.dylib (193.200.9) <498A80DB-6E1D-3C35-B176-2A670BA0DCD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel.dylib
       0x10bbbf000 -        0x10bbc2fe3 +libsystem_sim_platform.dylib (193.200.9) <E7A9448B-FBC6-307C-BBB0-A9F8FAF57072> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform.dylib
       0x10bbc9000 -        0x10bbc9ffb +libsystem_sim_pthread.dylib (193.200.9) <369990AC-4CC3-38AD-8EA3-5A2434D6F043> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread.dylib
       0x10bbcf000 -        0x10bbe4ff7 +libsystem_trace.dylib (906.200.86) <AF30E669-048A-3D6D-A6E1-BA624E9586CD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_trace.dylib
       0x10bbf6000 -        0x10bbfcfff +libunwind.dylib (128.1) <6E44D882-2C32-32AE-9281-B1C0C45FB8F3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libunwind.dylib
       0x10bc03000 -        0x10bc31ff7 +libxpc.dylib (1336.200.98) <28B7F54A-6A8C-33A0-BA46-FFA5278B041E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libxpc.dylib
       0x10bc5b000 -        0x10bc5bff7 +libsystem_sim_pthread_host.dylib (193.200.9) <DF6488D4-3D48-3ED2-83B4-9BB01BF6F04D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_pthread_host.dylib
       0x10bc60000 -        0x10bc60ff7 +libsystem_sim_platform_host.dylib (193.200.9) <62731E44-01CF-37B0-A15B-483C16E795CE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_platform_host.dylib
       0x10bc66000 -        0x10bc66ff7 +libsystem_sim_kernel_host.dylib (193.200.9) <68D03B9D-5AA6-31E7-AE28-6C724E31BCD8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/system/libsystem_sim_kernel_host.dylib
       0x10bc6c000 -        0x10bc93ff7  libsystem_kernel.dylib (4903.221.2) <0E882078-7330-3B49-AA5D-3CDB5645A4E5> /usr/lib/system/libsystem_kernel.dylib
       0x10bcae000 -        0x10bcb7fef  libsystem_platform.dylib (177.200.16) <B75B04AD-69FE-3ADE-84D2-C17972FC8F49> /usr/lib/system/libsystem_platform.dylib
       0x10bcc0000 -        0x10bccafff  libsystem_pthread.dylib (330.220.2) <4958273C-4273-3501-8137-E44249E10D9C> /usr/lib/system/libsystem_pthread.dylib
       0x10bcd5000 -        0x10bcf4ff3 +libMobileGestalt.dylib (645.200.76) <F810F3AB-2291-3C52-B397-F873ED40B181> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestalt.dylib
       0x10bd3f000 -        0x10bdadff3  com.apple.framework.IOKit (2.0.2 - 1483.200.58) <49C32E75-3214-353F-92A9-2CD8E94E1987> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x10bdf2000 -        0x10bed5ff3 +libxml2.2.dylib (32.6) <034B5608-4E85-3266-9C24-981F76BC0B8B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libxml2.2.dylib
       0x10bf19000 -        0x10c20ffff +libnetwork.dylib (1229.202.1) <E507070F-0278-3395-BD49-6AA25C137FF6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libnetwork.dylib
       0x10c2de000 -        0x10c2f4ff3 +libapple_nghttp2.dylib (1.24.1) <5685C6A5-DC0A-3BEC-92DE-ECC88CC39BE2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libapple_nghttp2.dylib
       0x10c301000 -        0x10c311fff +libbsm.0.dylib (39.200.18) <65D81D56-9D47-301E-A62B-4745CD51F326> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbsm.0.dylib
       0x10c31c000 -        0x10c331fff +libcoretls.dylib (155.200.6) <83705371-8057-3BCA-83EC-82529B48B43A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls.dylib
       0x10c33e000 -        0x10c33fff3 +libcoretls_cfhelpers.dylib (155.200.6) <F7A89225-8BE7-3D22-9FDF-D57203BBD8B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcoretls_cfhelpers.dylib
       0x10c346000 -        0x10c36fff3 +libarchive.2.dylib (54.200.3) <DC4AA9F6-F076-387D-858A-8A497ED86053> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libarchive.2.dylib
       0x10c37c000 -        0x10c3adff7 +libCRFSuite.dylib (41.15.4) <AAE13E8F-6610-31C1-83B2-2418A99C4741> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCRFSuite.dylib
       0x10c3c4000 -        0x10c3c5fff +liblangid.dylib (128) <BA1F3586-8DDE-3FF2-BF2E-BC38C3BE5CD3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblangid.dylib
       0x10c3ca000 -        0x10c502fff  com.apple.CoreServices (932.2 - 932.2) <B2A25DFD-C21F-3721-BFD3-60ADE60AA698> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreServices.framework/CoreServices
       0x10c5fd000 -        0x10c62dffb  com.apple.MobileInstallation (2.0 - 1.0) <4F0EE129-51A3-316C-ACE1-3BF76F2641F0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
       0x10c656000 -        0x10c659ff3  com.apple.MobileSystemServices (1.0 - 1) <6971B364-E904-3820-8D62-9B5AACD542BD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
       0x10c661000 -        0x10c66fff7 +libbz2.1.0.dylib (38.200.3) <B0190AD8-D513-32C0-B1C0-849748C74794> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libbz2.1.0.dylib
       0x10c675000 -        0x10c68dfff +liblzma.5.dylib (10.200.3) <AACAADDF-054E-3C6E-A8B8-58495EB7DE72> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/liblzma.5.dylib
       0x10c695000 -        0x10c736ff7  com.apple.CoreMedia (1.0 - 2280.130.16) <1A49673C-7F90-383A-B3B5-06AFFC59F63C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMedia.framework/CoreMedia
       0x10c7e4000 -        0x10c806ff7  com.apple.CoreVideo (1.8 - 0.0) <48738271-8337-3BE7-8E01-CA357F9FFC8C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreVideo.framework/CoreVideo
       0x10c822000 -        0x10c82effb  com.apple.opengles (17.0.34 - 17.0.34) <8915F241-7F27-374C-8083-A299200D2D2E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/OpenGLES
       0x10c83c000 -        0x10cd3ffff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <0CE73C18-8A1F-397D-B5C5-7834563A3D12> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
       0x10cf63000 -        0x10d13dff7  com.apple.QuartzCore (1.11 - 693.16.1.4) <9166B8B8-AF31-3FF7-BED0-E449B238A71C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/QuartzCore.framework/QuartzCore
       0x10d22d000 -        0x10d391fff  com.apple.CoreText (352.0 - 584.24) <0923160E-8AEC-36C2-AA1B-1C8076C7F20F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreText.framework/CoreText
       0x10d462000 -        0x10d98bfff  com.apple.ImageIO.framework (3.3.0 - 1796.5) <DD5D8BFE-F1A9-33EF-AF4C-706436E68BC9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ImageIO.framework/ImageIO
       0x10daba000 -        0x10dabafff  com.apple.Accelerate (1.11 - Accelerate 1.11) <84A743D2-543D-3F35-9AA4-C542CDFDE14B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Accelerate
       0x10dabe000 -        0x10dac1ff3  com.apple.iphonesimulator.SimulatorClient (1.0 - 1) <9758E788-2711-3C42-9C42-7CCF1E6735A6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SimulatorClient.framework/SimulatorClient
       0x10dac7000 -        0x10db50fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <30332C90-52C6-34DC-9AAE-04764287E8B6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreAudio.framework/CoreAudio
       0x10db80000 -        0x10e48dfc7  com.apple.vImage (8.1 - ???) <D8D22A04-CCDD-392B-B358-F15DD769B79C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
       0x10e527000 -        0x10e527fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <A2002D83-CC54-377C-BFE2-BAE0B5B6FE66> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
       0x10e52b000 -        0x10e542fdf +libcompression.dylib (52.200.13) <69F78D88-0469-32EF-BCB6-A30E628FD695> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcompression.dylib
       0x10e54b000 -        0x10e69ffe7 +libvMisc.dylib (671.200.22) <2CFB7A08-24D9-306E-A1B6-E561F0EB49BB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
       0x10e6bd000 -        0x10e84cfdf +libvDSP.dylib (671.200.22) <6C3BBA05-A19A-3E12-9171-B577835FF440> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
       0x10e85f000 -        0x10ea09fe3 +libBLAS.dylib (1243.200.4) <B3EFD255-E5B2-3244-B880-5A33AFE506E2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
       0x10ea31000 -        0x10edebfff +libLAPACK.dylib (1243.200.4) <F0AEAF47-62C4-3998-9C1E-E9E87401A6E8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
       0x10ee36000 -        0x10ee4bffb +libLinearAlgebra.dylib (1243.200.4) <6B909AD6-71F6-35F1-97FF-610E7DB1561B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
       0x10ee55000 -        0x10ee67ff7 +libSparseBLAS.dylib (1243.200.4) <0C00C8E6-E96C-3BBA-8103-F24BA9E029E4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
       0x10ee70000 -        0x10ee75ff3 +libQuadrature.dylib (3.200.2) <30BAA841-86FD-375B-904C-9338C5EF497A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
       0x10ee7a000 -        0x10eebdfff +libBNNS.dylib (38.200.5) <F145D8A7-0748-3101-8A4C-EF7B767944E1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
       0x10eec8000 -        0x10ef31ffb +libSparse.dylib (79.200.5) <8544942E-BFD0-38ED-9E56-D906E03C6061> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
       0x10ef4a000 -        0x10ef5dfff  com.apple.GraphicsServices (1.0 - 1.0) <AE64D8B8-DEBD-3085-AF6C-F1891F40417F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
       0x10ef78000 -        0x10ef89fff +libGSFontCache.dylib (126.8) <DDD72453-01ED-3ABB-87C0-74A21F1E961F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
       0x10f245000 -        0x10f340ff3  com.apple.UIFoundation (1.0 - 550.34) <77A2986C-52F7-3689-AE11-D8D26B55F1A2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
       0x10f3ee000 -        0x10f402ff7 +libAccessibility.dylib (2402.6.13) <15EF1223-8801-3C69-A35D-D3B9BB059C15> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAccessibility.dylib
       0x10f42b000 -        0x10f480ffb  com.apple.OTSVG (1.0 - ???) <7FFC764C-44B2-3157-91D8-ABCB84FF7B30> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
       0x10f4f5000 -        0x10f4f5ffb  com.apple.FontServices (1.0 - 1) <4E3063F4-4213-3DE8-BD30-E016E5D99CC3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/FontServices
       0x10f4fa000 -        0x10f607fff +libFontParser.dylib (228.6) <F2B7D1B9-F756-320B-9FAF-B30F2C11DFC7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
       0x10f6e4000 -        0x10f7a3ff7  com.apple.CoreUI (1.0 - 498.40.1) <AA35FFEC-7CAF-3B6D-B7ED-B3E219F54BB7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
       0x10f91c000 -        0x10f9e8ffb  com.apple.TextureIO (3.8.4 - 3.8.1) <A1C514D3-F88A-3465-9AD0-23614FC965D5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
       0x10fa12000 -        0x10faa1fff  com.apple.Metal (157.53 - 157.53) <A24B5C2A-6F76-3356-A037-93CBBAA0BC7B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Metal.framework/Metal
       0x10fb9f000 -        0x10fc9afcf +libate.dylib (1.13.8) <9C1F60C0-D9C1-3897-957E-3536327FABC9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libate.dylib
       0x10fcad000 -        0x10ff55fff  com.apple.CoreImage (12.0.0 - 700.4.240) <EAB0666D-73CD-3AA7-AEAF-6432CDE6E487> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreImage.framework/CoreImage
       0x11013b000 -        0x110143fff  com.apple.IOSurface (255.1 - 255.1) <5DBA5CDC-0600-3E45-BCA4-78B7C63740C2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/IOSurface.framework/IOSurface
       0x110155000 -        0x11019eff7  com.apple.AppleJPEG (1.0 - 1) <68FE42A0-157A-33B6-99B5-9A091ACA8AAB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
       0x1101ad000 -        0x1101b2ff3 +libCoreFSCache.dylib (163.22) <265F2DD7-F39B-315E-968C-FFEBE1334CD9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
       0x1101b8000 -        0x110252ff7  com.apple.ColorSync (4.13.0 - 3340) <27C3C9D7-9618-3CDB-9397-02F0A4863D8D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
       0x110286000 -        0x11028ffff +libGFXShared.dylib (17.0.34) <B0B026D9-B7C7-30FA-900E-5D5A6FCA7E25> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
       0x110298000 -        0x1102dbff7 +libGLImage.dylib (17.0.34) <BFE417B5-9D82-354F-B269-F3A62494949B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
       0x1102e7000 -        0x1102e9fff +libCVMSPluginSupport.dylib (17.0.34) <95085256-F812-34AC-BBEC-545D9EEFE8E9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
       0x1102f0000 -        0x1102f8fff +libCoreVMClient.dylib (163.22) <E9E23542-8B6A-38CA-B2CF-E87E666C721C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
       0x110301000 -        0x110fcdfbf +libLLVMContainer.dylib (602.2.46) <DA95F296-5679-3049-9EA9-6FD87BBB1F06> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/OpenGLES.framework/libLLVMContainer.dylib
       0x111361000 -        0x111365fff  com.apple.AggregateDictionary (1.0 - 1) <8E69611C-E636-38D7-93FE-8EFCC9888F96> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
       0x11136e000 -        0x111531ff7 +libFosl_dynamic.dylib (18.3.2) <2DF1761B-15E7-3381-A790-DDF7F7CE8225> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libFosl_dynamic.dylib
       0x111582000 -        0x111861ff7  com.apple.VideoToolbox (1.0 - 2280.130.16) <446C390B-154E-3CBE-9217-FDCC7BB2BE9F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
       0x1118fc000 -        0x11190bff7  com.apple.GraphVisualizer (1.0 - 5) <9731BF75-8C46-33AD-9DD7-4C8B6D923A79> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
       0x111918000 -        0x111d3cfff  com.apple.vision.FaceCore (3.1.12 - 3.1.12) <7177A299-0D46-31BF-94E4-F2C7B134CE28> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
       0x111f45000 -        0x111f4bff7  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <81E37CBF-FF10-320C-B92D-75C81EC1BE50> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
       0x111f5f000 -        0x111f69fff  com.apple.MediaAccessibility (1.0 - 114.4) <8AA32290-9CED-3D01-BE47-F8DDE98FAE5E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
       0x111f7a000 -        0x111f7fffb  com.apple.ConstantClasses (1.0 - 1) <FAF83F09-AE36-3CB5-92C5-BA4A54D2D9F6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
       0x111f8a000 -        0x111fb2ff7  com.apple.applesauce (1.0 - ???) <7490F6FA-D441-351F-B1DA-61CD0AB4777A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
       0x111fbf000 -        0x112018fff  com.apple.DocumentManager (1.0 - 68.100.37) <902194E7-7A55-34ED-956D-7B50D60276A1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
       0x112073000 -        0x11210dfff  com.apple.FileProvider (125.129 - 125.129) <A19DCCFF-13A2-343C-806C-78FEFD2DE71B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/FileProvider.framework/FileProvider
       0x112196000 -        0x113398fff  com.apple.UIKitCore (1.0 - 61000) <9BACC3A5-10C6-3D77-95BC-D9803623BCA7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
       0x11443d000 -        0x114447ff3  com.apple.mobileicons.framework (1.0 - 372.0) <D5D38196-91A3-3CEE-90D1-04063F68AABD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
       0x114455000 -        0x1144e6fff  com.apple.Network (1.0 - 1) <BD857B87-9FA4-31DD-ACC1-9C0CFEC44160> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Network.framework/Network
       0x11454c000 -        0x11455fff7  com.apple.DocumentManagerCore (1.0 - 68.100.37) <09E5DDAC-E40C-3E96-93D5-1287BFCF495C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
       0x114578000 -        0x11459aff7  com.apple.pluginkit.framework (1.0 - 1) <75EDD461-CDD2-3D66-847E-509558FCF467> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
       0x1145b5000 -        0x1145b8ff7  com.apple.dt.XCTTargetBootstrap (1.0 - 1) <BCDF8626-9C1E-340E-99DE-6350E2F4D00D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
       0x1145c1000 -        0x114751ff7  com.apple.WebKitLegacy (8606 - 8606.1.36.0.3) <3F8F99EC-B9A2-31D7-83AB-C4B80CFE58AB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
       0x1148b7000 -        0x11530fff3  com.apple.JavaScriptCore (8606 - 8606.1.36.0.3) <F7528F72-3B96-3C8B-97AA-DFBDC16E5187> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
       0x1155c6000 -        0x1155dcffb  com.apple.AssertionServices (1.0 - 1) <AC68CDFC-8D16-366F-B9A9-AE48D9A98860> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
       0x115604000 -        0x115637ffb  com.apple.UserNotifications (1.0 - ???) <76B4E899-2BDF-3216-BDD9-52ECFE13D53B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/UserNotifications.framework/UserNotifications
       0x115672000 -        0x1156b4fff  com.apple.AppSupport (1.0.0 - 29) <D2AB170D-EC58-33F7-9B1F-6358D87DC882> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
       0x1156fa000 -        0x115734ff3  com.apple.BackBoardServices (1.0 - 1.0) <E7834212-AD15-3BEF-82AD-4AC6F60F094B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
       0x11577c000 -        0x1157ecfff  com.apple.BaseBoard (360.18.4 - 360.18.4) <FFD44561-DAD8-3256-980E-F0F8462A5EFE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
       0x11586d000 -        0x1158d6ff7  com.apple.FrontBoardServices (486.43.7 - 486.43.7) <074F3015-4D1C-3A36-94BB-BF2F537C0719> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
       0x11595c000 -        0x115975fff  com.apple.MobileAssets (1.0 - 437.200.49) <91585232-492E-34C5-987A-D4076A0CE624> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
       0x115993000 -        0x1159ebfff  com.apple.PhysicsKit (1.0 - 1) <777ED7D6-B490-3BBA-A0E0-368A964F6846> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
       0x115a20000 -        0x115b05ff7  com.apple.ProofReader (2.4 - 430) <9B74C7F0-4125-3EC1-BBC2-539113C9280C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
       0x115b60000 -        0x115b7cfff  com.apple.PrototypeTools (1.0 - 1) <0B02B76E-DDF4-3965-AD7F-54BE035B2C4C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
       0x115ba0000 -        0x115c0afff  com.apple.TextInput (1.0 - 1.0) <ACA4D484-9923-3EEA-9EA7-5148A6369AC4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TextInput.framework/TextInput
       0x115c97000 -        0x115ca1ffb  com.apple.UIKitServices (1.0 - 1) <596579E8-C3FC-3CA7-B069-052925E52F2B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
       0x115cb2000 -        0x11768eff3  com.apple.WebCore (8606 - 8606.1.36.0.3) <0C1CFA8B-FEE7-3FD5-9703-2ACD28C9D7B7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/WebCore
       0x1185aa000 -        0x118b39fe7 +libwebrtc.dylib (7606.1.36.0.3) <51823123-32B2-32C3-BC17-1D40057B6CC9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
       0x118d2b000 -        0x118d31fff  com.apple.URLFormatting (59 - 59.34) <8EDE0A87-D8FB-3D0B-B9C1-DA8D445E5AF8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
       0x118d3b000 -        0x118d43fff  com.apple.CorePhoneNumbers (1.0 - 1) <F2E83F5D-E586-34A0-B664-CF6EC0D5743B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
       0x118d4c000 -        0x118d56fff +libAudioStatistics.dylib (975.60.2) <E2D88BCC-3049-33F2-9E72-465FCBA7F045> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAudioStatistics.dylib
       0x118d63000 -        0x118d81fff  com.apple.ProtocolBuffer (1 - 263) <3C078B90-8E01-3E05-A7D8-5C9AFC643DD5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
       0x118da3000 -        0x118de7ff7  com.apple.awd (1.0 - 930.11) <817422F0-9A1F-3968-BD36-B016AC5A3A8D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
       0x118e1b000 -        0x118e24ff7  com.apple.RTCReporting (9.35.24 - 9.35.24) <F17A1C5A-1676-3C4C-8EEC-59E8F0FDCE25> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
       0x118e33000 -        0x118e77fff  com.apple.SpringBoardServices (1.0 - 1.0) <97E798C9-D253-37D0-841B-4ED1DDCDCAD9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
       0x118ed6000 -        0x118eddff7  com.apple.TCC (1.0 - 1) <9286BC69-9F44-34BC-948D-E5F947DA091A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TCC.framework/TCC
       0x118ee9000 -        0x118ff6ff7 +libAWDSupportFramework.dylib (865) <1C93B464-DF3C-36AD-A5B4-DEF0BEF0F3DE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libAWDSupportFramework.dylib
       0x119133000 -        0x119144fff +libprotobuf-lite.dylib (865) <AEB5B54C-9AFE-3B2F-80F0-C115D7528751> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf-lite.dylib
       0x11915f000 -        0x11919dff7 +libTelephonyUtilDynamic.dylib (3608) <00F884E6-9C72-355E-9A36-983FF7D8FEE9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libTelephonyUtilDynamic.dylib
       0x1191e9000 -        0x11924afff +libprotobuf.dylib (865) <5B89616B-5A6D-3300-B264-B85169EFBF26> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libprotobuf.dylib
       0x1192ad000 -        0x1192ecff3  com.apple.StreamingZip (1.0 - 1) <15F185FD-2A5D-30DE-96FA-B245752E0C37> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
       0x11930d000 -        0x11934efff  com.apple.Lexicon-framework (1.0 - 33.15.10) <414804B6-67DD-30E1-9637-007593F00A62> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
       0x119361000 -        0x119456ff7  com.apple.LanguageModeling (1.0 - 159.15.15) <06160E60-060E-33F8-A397-8E9A89B1FF13> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
       0x11948a000 -        0x11948efff  com.apple.LinguisticData (1.0 - 238.15.29) <F86F7492-1C66-3A98-92EF-AF5B750BFF38> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
       0x119495000 -        0x1194a8fff  com.apple.CoreEmoji (1.0 - 69.15.9) <7CE50007-F775-3D6A-98C9-226D0A1AD4D4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
       0x1194c3000 -        0x1194d3ffb +libcmph.dylib (6.15.1) <41AACEA6-B2EB-33B2-89E2-067033AC8C86> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcmph.dylib
       0x1194dd000 -        0x1195ceff7 +libiconv.2.dylib (51.200.6) <5DBAD973-DB57-3DD1-9BFC-BF518D659379> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libiconv.2.dylib
       0x1195e1000 -        0x1195e1ff3 +libcharset.1.dylib (51.200.6) <7003F28B-2FA1-3963-9313-493D384AA9C9> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcharset.1.dylib
       0x1195e6000 -        0x119647ff7  com.apple.CoreNLP (1.0 - 130.15.22) <62B973B8-CB47-3B02-A080-2BC9B17DD990> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
       0x11969e000 -        0x119761fff +libmecab_em.dylib (779.15.23) <B1430335-3CC0-30EC-B9C3-251D9BD87FD8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libmecab_em.dylib
       0x11978a000 -        0x11978fffb +libgermantok.dylib (17.15.2) <2ED83508-E33A-350D-B9A3-ED09DA12EEC3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libgermantok.dylib
       0x119795000 -        0x119796fff +libThaiTokenizer.dylib (2.2) <63B12D6B-054F-3D91-8152-56B5CD5F0CBE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libThaiTokenizer.dylib
       0x11979c000 -        0x1197a5fff +libChineseTokenizer.dylib (28.15.3) <10A7A279-B558-3D18-8908-F5921A8118AE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libChineseTokenizer.dylib
       0x1197b3000 -        0x119813ff7  com.apple.Accounts (113 - 113) <A07F8195-0278-39FD-89AE-88A2814569E5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accounts.framework/Accounts
       0x119872000 -        0x119985ffb  com.apple.AppleAccount (1.0 - 1.0) <D8CF02ED-99A4-3A8B-B73C-9C3A48D728B8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
       0x1199fb000 -        0x119d77ff7 +CoreData (865) <F401DB1D-B433-318D-8CA1-FD83C0B27289> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreData.framework/CoreData
       0x119fa5000 -        0x11a0a8ff3  com.apple.managedconfiguration (1.0 - 1.0) <C5CD8B64-6D7C-33CA-9D04-2789B1E1E794> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
       0x11a1aa000 -        0x11a1c8ffb  com.apple.SetupAssistant (1.0 - 1) <BEE96B1D-52D4-3CEC-A693-89DCE8720AF2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
       0x11a1ec000 -        0x11a1f0ff3  com.apple.AppleIDSSOAuthentication (1.0 - 1) <8D71B9EE-D440-3C19-8B95-CE2CC8812691> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
       0x11a1fa000 -        0x11a212ff7  com.apple.aps.framework (4.0 - 4.0) <EC4275E5-0CC5-3F0D-B06A-61CE622B1C03> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
       0x11a232000 -        0x11a285ffb  com.apple.AuthKit (1.0 - 1) <B0731E8D-8468-30A2-B610-7F03CBB0AAA6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
       0x11a2de000 -        0x11a357fff  com.apple.corelocation (2245.4.104) <D03B9FBB-F5E0-3281-BBEA-FF78B794B279> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreLocation.framework/CoreLocation
       0x11a38f000 -        0x11a5bfff7 +StoreServices (1445.0.89) <F60756FE-84A8-36B7-BED3-9572AD3FA59F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
       0x11a7ff000 -        0x11a807fff  com.apple.datamigration (1.0 - 1.0) <9B7C7D5F-311A-314C-8DC4-C3CE781CD3F0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
       0x11a816000 -        0x11a841fff  com.apple.persistentconnection (1.0 - 1.0) <6DDCF8B5-C890-319B-8D9F-F90CE55D943C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
       0x11a86f000 -        0x11a94dff7  com.apple.CoreTelephony (113 - 6366.11.0.1) <44889EE6-EC3E-39C7-A604-8F69A51CF2C8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
       0x11aa26000 -        0x11aa3cfff  com.apple.commonutilities (8.0 - 900) <6B609274-7762-345F-B45F-5ACF8E45C5B7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
       0x11aa54000 -        0x11aa86ff3  com.apple.bom (14.0 - 197) <4638FE85-485F-3309-BC88-39581D1DBF4B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Bom.framework/Bom
       0x11aa9b000 -        0x11aaa1ff7 +libcupolicy.dylib (6366.11.0.1) <C6F343CA-CF39-37EB-9441-8AA9393753F7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libcupolicy.dylib
       0x11aaaa000 -        0x11aaaffff  com.apple.CoreTime (258) <D72DCDBF-284E-34B8-99DF-D770CF59A52F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
       0x11aab8000 -        0x11ac09ff3  com.apple.CoreUtils (5.7 - 570.70) <BEF9343A-8CBA-3AEF-AD40-171D0D4D2D7C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
       0x11ad06000 -        0x11ad11fff  com.apple.AppleIDAuthSupport (1.0 - 1) <8E3D42F3-0AA3-3EC2-8295-A1C1859C4198> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
       0x11ad20000 -        0x11ad20fff  com.apple.PhoneNumbers (1.0 - 1) <6745E2D6-EE3B-3275-A8DD-5D6032FF8033> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
       0x11ad25000 -        0x11ad7cfc9  com.apple.ROCKit (24 - 24) <9828AB18-EE4E-3944-B780-89C6C75F05A8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
       0x11adb2000 -        0x11ade2fff  com.apple.CoreBluetooth (1.0 - 1) <EF59DEA7-8E5A-3E1A-9407-198FF7E3C7A2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
       0x11ae0e000 -        0x11aeaafff  com.apple.accounts.AccountsDaemon (113 - 113) <88A3E0DC-E91B-3BF0-AB2F-1208423798C1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
       0x11af09000 -        0x11af32ffb  com.apple.GSS (4.0 - 2.0) <55E1D5CB-903B-3845-A49C-9341B5646758> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/GSS.framework/GSS
       0x11af53000 -        0x11af55fff  com.apple.OAuth (25 - 25) <6C1A3948-596A-3905-8082-37AD30B52C89> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/OAuth.framework/OAuth
       0x11af5d000 -        0x11af62ff7 +libheimdal-asn1.dylib (520.200.17) <A8746EE2-23F7-3817-9FB5-CF09FDE36950> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libheimdal-asn1.dylib
       0x11af6a000 -        0x11afd8ff3  com.apple.Heimdal (4.0 - 2.0) <991E1406-1F27-3EF5-B4E6-044D213602BE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
       0x11b010000 -        0x11b028ff3 +libresolv.9.dylib (65.200.2) <690AD25D-75A1-3F0B-B820-5F7326464BAC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libresolv.9.dylib
       0x11b034000 -        0x11b036ff7  com.apple.CommonAuth (4.0 - 2.0) <3B1D44CD-426E-3934-9274-B54B7F469258> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
       0x11b03c000 -        0x11ba6eff7  com.apple.GeoServices (1.0 - 1364.30.2.5.69) <20462BF8-4BA1-3454-866A-76845836294C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
       0x11c205000 -        0x11c254ffb +CoreLocationProtobuf (25.0.5) <03442AB8-DF19-3891-A5E8-935A74AEDF11> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
       0x11c2a8000 -        0x11c2c7fff  com.apple.CacheDelete (1.0 - 1) <13717954-8238-3C5B-84EB-C31AC48B5A6F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
       0x11c2e1000 -        0x11c3a4ff7  com.apple.AppleMediaServices (1.0 - 1) <823FE6E5-013B-3111-A6D9-BFAB28570CF8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
       0x11c459000 -        0x11c4daff7  com.apple.CoreSymbolication (10.0 - 64235.3.1) <F8F3ABB4-AFEE-3BC7-9B7E-6CB51D6CEBB4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
       0x11c52e000 -        0x11c548fff  com.apple.SafariFoundation (1.0 - 1) <BFA5CF48-C851-3CE6-8EEE-187CF6369BF2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
       0x11c567000 -        0x11c5dcff3  com.apple.CoreSuggestions (1.0 - 680.111) <8CFD7B70-69D9-3E88-9166-666964B3C226> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
       0x11c655000 -        0x11c7cdff7  com.apple.Sharing (1176.11 - 1176.11) <B221F100-C008-34E8-AACE-6D4F60EC75F8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Sharing.framework/Sharing
       0x11c936000 -        0x11c939fff  com.apple.SharedWebCredentials (1.8 - 180.5) <DDDA81A3-BFE5-308C-A6E4-70CF82517C8C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
       0x11c940000 -        0x11c94afff  com.apple.AuthenticationServices (12.0 - 1.0) <61D101B4-FD51-3CB7-B030-BDC2A3751E43> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
       0x11c95d000 -        0x11cd82fff  com.apple.MediaPlayer (1.0 - 1.0) <33B36485-A5A9-39D1-A285-00817FE373D8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
       0x11d1a3000 -        0x11d2c5fff  com.apple.preferences-framework (1 - 1.0) <7648D3E7-B112-3A3A-9AF4-1969C4CDEEEF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Preferences.framework/Preferences
       0x11d3e7000 -        0x11d651ff7  com.apple.MapKit (1.0 - 1.0) <0F7D2034-A9EC-3F36-B087-C1CBA9A1F0EA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MapKit.framework/MapKit
       0x11d87c000 -        0x11d88ffff  com.apple.LocalAuthentication (1.0 - 425.202.1) <83A10DE4-E5DA-302E-9B17-42A8DD7F8B87> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
       0x11d8a5000 -        0x11d9c1ff3  com.apple.contacts (1.0 - 2402) <98F02F7F-3BDC-3033-9920-563D8C4197E6> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Contacts.framework/Contacts
       0x11db17000 -        0x11db60ff7  com.apple.Safari.SafeBrowsing (606 - 606.1.36.0.3) <C9F5A7F6-856C-33BF-A67C-003D39CE4A3B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
       0x11dba8000 -        0x11dc6fff7  com.apple.TelephonyUtilities (1.0 - 1.0) <A680CCD5-BADC-37C3-8BCF-5AEC95681304> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
       0x11dd41000 -        0x11ddaafff  com.apple.WebBookmarks (1.0 - 1.0) <FEC4A619-9049-390C-BB87-F6249479E8F3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
       0x11ddf2000 -        0x11e2adffb  com.apple.WebKit (8606 - 8606.1.36.0.3) <3B711BB4-DED3-3EC6-A161-1F3716F3761F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/WebKit.framework/WebKit
       0x11e7bb000 -        0x11e7feff7  com.apple.WebUI (1.0 - 1.0) <8323C9DE-C1F6-3F37-9372-5C2182F7E99B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/WebUI.framework/WebUI
       0x11e845000 -        0x11e89efff  com.apple.Safari.Core (606 - 606.1.36.0.3) <D9236015-9BBA-3141-8DF3-2314630C3E07> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
       0x11e909000 -        0x11e90afff +libCTGreenTeaLogger.dylib (6366.11.0.1) <E458079E-4F74-31F0-9E4A-A9CB691375FA> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libCTGreenTeaLogger.dylib
       0x11e911000 -        0x11ea35fff  com.apple.cloudkit.CloudKit (736.129 - 736.129) <04AD2B86-F275-3E47-ADC5-08EE68ADD941> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CloudKit.framework/CloudKit
       0x11eb63000 -        0x11ebafff7  com.apple.ProtectedCloudStorage (1.0 - 1) <F047F58D-F513-3F67-A497-FBEB906EA900> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
       0x11ebf6000 -        0x11ed40ff3  com.apple.SearchFoundation (1.0 - 213.1.40) <28130603-B8D5-37D3-BC80-AD4B60CD196D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
       0x11ef74000 -        0x11efabffb  com.apple.proactive.support.ProactiveSupport (1.0 - 126.32.1) <B6D6ECFC-BEE5-3DFD-BF64-EE1A7C9DBCB2> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
       0x11efdd000 -        0x11efe7fff  com.apple.proactive.support.ProactiveEventTracker (1.0 - 126.32.1) <CDBE9595-7832-3336-BF33-4605D32A3171> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
       0x11eff7000 -        0x11f2d9ffb  com.apple.Intents (1.0 - 1) <EFBB995B-0727-3E9A-B7C6-5A314AED92E4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Intents.framework/Intents
       0x11f5e0000 -        0x11f644fff  com.apple.CoreSpotlight (1.0 - 231.46) <5E122930-DA0C-3176-93FA-737EB8E5BB9C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
       0x11f6bd000 -        0x11f6bffff  com.apple.InternationalTextSearch (1.0 - 1) <536D9957-2AF0-3EE0-8B3D-C67333425682> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
       0x11f6c7000 -        0x11f6cefff  com.apple.IntentsFoundation (1.0 - 1) <28604B81-22FB-3446-8BE6-DCE6C99684CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
       0x11f6db000 -        0x11f772fff  com.apple.AddressBookLegacy (1.0 - 30) <85A8C0A4-9854-3289-BAE9-33DFF2EDE948> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
       0x11f7f1000 -        0x11f816ff3  com.apple.CellularPlanManager (1.0 - 6366.11.0.1) <A727AE27-7043-3D0D-B560-A98EE8089C69> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
       0x11f856000 -        0x11f864fff  com.apple.IntlPreferences (1.0 - 227.15.8) <3C4DD2CB-BC91-31A8-A479-B774BB54E36C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
       0x11f876000 -        0x11f8a6fff  com.apple.contacts.vCard (1.0 - ???) <7EF1746A-644F-3E81-B1B8-AC10DF9C3B39> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/vCard.framework/vCard
       0x11f8eb000 -        0x11f955fff  com.apple.AddressBook.ContactsFoundation (8.0 - ???) <9B7E9389-6665-34DE-8EFE-1BB486DA169B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
       0x11f9fa000 -        0x11fa2affb  com.apple.dataaccess.dataaccessexpress.framework (1.0 - 1.0) <1AD5E407-DACC-3AE5-BCBA-1209A9D1C5D3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
       0x11fa5f000 -        0x11fa63ff3  com.apple.InternationalSupport (1.0 - 10.15.6) <72880D5C-1C7D-318E-B926-C3AA09D99F1F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
       0x11fa6b000 -        0x11fa8bff3  com.apple.spotlight.metadata.utilities (1.0 - 1191.45) <1C599F41-8BCD-3F75-B498-B7712E41DEF5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
       0x11fa9d000 -        0x11faa8fff  com.apple.BluetoothManager (1.0 - 1) <23A70B24-CD4F-361E-9D06-BC10BA6FC8FB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
       0x11fab8000 -        0x11faf2ff7  com.apple.Rapport (1.6 - 160.62) <6704EFC6-0331-3C5E-8134-731F326DF3E1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Rapport.framework/Rapport
       0x11fb3c000 -        0x11fb3fffb +libutil.dylib (51.200.4) <31CD7D51-4B83-3142-9D62-D08DF8C0EC20> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libutil.dylib
       0x11fb46000 -        0x11fb53ff3  com.apple.MobileBluetooth (1.0 - 1.0) <B6F7BB11-06C4-3C6F-9ED9-37DD913AD8F4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
       0x11fb5f000 -        0x11fc55ff7  com.apple.iTunesCloud (1.0 - 1) <03ED385E-0F40-39B5-B817-2BFED849C5FE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
       0x11fd7d000 -        0x11fe14ff7  com.apple.MediaPlatform (1.0 - 1) <C7C6867E-DB43-3E2A-AEE8-4D8AD1D03B7F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
       0x11fed0000 -        0x1201fbfff  com.apple.MediaLibraryCore (1.0 - 1) <61FBC097-0B5E-33D3-81CC-8B550BBE6670> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
       0x12043b000 -        0x12045fff7  com.apple.MediaServices (1.0 - 1) <900C7F0C-4E23-3CE8-A82E-9D7C6EA8E57B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
       0x120490000 -        0x120519fff  com.apple.itunesstore (1) <667CE25E-A50D-31DD-AED4-A6E8C6483416> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
       0x120596000 -        0x1205d3fff  com.apple.Celestial (1.0 - 2280.130.16) <EB47D675-239E-3CFF-ACEE-38CFFCD0E038> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Celestial.framework/Celestial
       0x120641000 -        0x12083cff7  com.apple.MusicLibrary (1.0.0 - 18) <4846A3CA-8987-37CF-B4A0-DAA7D0FA1D67> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
       0x1209a4000 -        0x120b7cff3  com.apple.MediaRemote (1.0 - 1) <1357AD30-74A8-3F09-9DC5-11C8E651B594> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
       0x120d4d000 -        0x120d9afff  com.apple.HomeSharing (1.0 - 1) <ED07B5EB-DEF8-30DB-B4A2-33A228353F31> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
       0x120def000 -        0x120fe7fff  com.apple.avfoundation (2.0 - 1540.115.3) <6ED06E74-DFD0-32AC-B645-C5070BAA9322> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/AVFoundation
       0x121269000 -        0x12127aff7  com.apple.RemoteTextInput (1.0 - 1) <BCEE0654-ACB1-32E4-8D4A-4BCC2A4E081A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
       0x121292000 -        0x1216acff7  com.apple.MediaToolbox (1.0 - 2280.130.16) <0A81C5BE-8EBD-36E3-AC90-1E3AED7FF004> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
       0x12188e000 -        0x12197efff  com.apple.audio.AVFAudio (1.0 - ???) <FAEB6167-677C-3CE1-A879-5307C4C90BC5> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
       0x121a19000 -        0x121a23ff7  com.apple.DAAPKit (1.0 - 1) <0CC8CE49-520F-305C-B1E7-9719FE2A8959> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
       0x121a33000 -        0x121c04ff7  com.apple.CoreDuet (1.0 - 1) <C1AA93DB-D8F6-3115-B57C-255D8AA3E14F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
       0x121d62000 -        0x121d63fff  com.apple.corebrightness (1.0 - 1) <F6519A67-17A7-3044-98F0-DBBD02CE8093> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
       0x121d6b000 -        0x121db7ff7  com.apple.facetimeservices (10.0 - 1000) <C6D65A44-11C1-30BF-8FBD-327C2D7935FD> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTServices.framework/FTServices
       0x121ddf000 -        0x121f18ff7  com.apple.coremotion (2245.4.104) <E4F54A39-97F3-3D34-806E-299E94A733FF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreMotion.framework/CoreMotion
       0x121f95000 -        0x121faaff3  com.apple.MetalKit (1.0 - 113) <311482FD-6217-37A2-919C-DC946AE7E519> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/MetalKit.framework/MetalKit
       0x121fc4000 -        0x121fe6fff  com.apple.coreduetcontext (1.0 - 1) <9C07A174-515D-3F7A-8F14-D8F8B11D9A81> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
       0x122015000 -        0x122017fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <EB075147-5858-32A5-8C30-83D4D5CE112C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
       0x12201d000 -        0x12202efff  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <2B84F69C-B8EB-3503-8DE5-BBFF46DAE47C> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
       0x122040000 -        0x122047ffb  com.apple.StatsKit (1.0 - 1) <01778E17-BD38-3B4F-BF16-746A7A799CA3> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/StatsKit.framework/StatsKit
       0x122051000 -        0x1220acffb  com.apple.imfoundation (10.0 - 1000) <A59CF2D9-5F7B-355E-BA95-D6DF3E0FD6E1> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
       0x122107000 -        0x122108fff  com.apple.marco (10.0 - 1000) <93E9CAC2-AEE3-35C9-855C-661689385CB0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Marco.framework/Marco
       0x12210f000 -        0x12220bfff  com.apple.idsfoundation (10.0 - 1000) <92DAC206-AB46-342B-8C16-F16EE583E3CF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
       0x1222ad000 -        0x1222adff7  com.apple.ftawd (8.0 - 900) <9E2C0D53-1C98-315F-98B5-B1BAADBC457B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
       0x1222b3000 -        0x1222e3ffb +libtidy.A.dylib (16.1) <EA76C44A-5B11-3785-AC9E-0EC612B23E55> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libtidy.A.dylib
       0x1222f9000 -        0x1222faff7  com.apple.diagnosticlogcollection (10.0 - 1000) <6BF212C7-636A-3C1C-BA43-1FBA4774F05E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
       0x122300000 -        0x122317ff3  com.apple.Engram (1.0 - 1) <C09520D3-01EA-3A40-8110-A5A67DE7DCA8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Engram.framework/Engram
       0x12232a000 -        0x1234acff7  com.apple.ModelIO (1.0 - 1) <45E9E4EF-FCA1-3EBA-9AAF-043217A6E7B8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ModelIO.framework/ModelIO
       0x1235eb000 -        0x12375cff7  com.apple.ContactsUI (1.0.0 - 473) <93CD61C9-7CCC-303B-8DDD-93BF73CF2D88> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/ContactsUI.framework/ContactsUI
       0x1238ec000 -        0x123912ffb  com.apple.AppSupportUI (1.0 - ???) <56A59F34-E3C1-3C1C-A40D-D62AF8846AC7> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
       0x123934000 -        0x123a31ff7  com.apple.Navigation (1.0 - 1) <51B01931-1DF5-3654-A3D1-E05FE2C67936> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Navigation.framework/Navigation
       0x123b30000 -        0x124222fff  com.apple.VectorKit (1.0 - 1360.30.2.5.58) <6A296519-610A-3893-A4FA-06CE0FC66E7B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
       0x124676000 -        0x124683fff  com.apple.PersonaKit (1.0 - 1) <5E3E002E-5F84-33E5-90D9-0AA964A89CD8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
       0x124694000 -        0x1246a0ff7  com.apple.PersonaUI (1.0 - 1) <1900AE9C-9AEF-3597-A952-331C525129CB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
       0x1246b2000 -        0x1246b6ffb  com.apple.communicationsfilter (10.0 - 1000) <DB87216B-D32A-3854-A87A-47E5BBDAFD91> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
       0x1246c0000 -        0x1246d8ffb  com.apple.contacts.donation (1.0 - 1) <474049F0-8EA7-3F8C-9AAA-8F324846D654> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
       0x1246fc000 -        0x124755fff  com.apple.Contacts.ContactsUICore (1.0 - 999.9.9) <9E4CE11C-F28F-3E73-828C-BDEF73C14FBC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
       0x1247c5000 -        0x1247d0ff7  com.apple.corerecents (1.0 - 1) <DBC4A73C-CF29-3693-8429-23A3466F3D64> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
       0x1247e5000 -        0x1248f0ff7  com.apple.ids (10.0 - 1000) <FFFE6A6D-3025-3B3C-975B-0CAA9E1F5D5F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IDS.framework/IDS
       0x12495f000 -        0x124963ff3  com.apple.incomingcallfilter (10.0 - 1000) <2902094A-C9E0-385E-B5FE-2D584F90063D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
       0x12496b000 -        0x124971ff7  com.apple.CoreAuthentication.SharedUtils (1.0 - 425.202.1) <7D027D7C-8473-3AB2-809F-CBF249DE6B42> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
       0x12497c000 -        0x12498bfff  com.apple.coretelephony.CTCarrierSpace (1.0 - 1) <3978D189-0EFA-36CC-ACBC-B3C92358479F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
       0x1249a3000 -        0x124a7bfff  com.apple.CorePDF (5.0 - 414) <816E7E1B-0CF0-35CC-96F2-4160CB212B23> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
       0x124b0d000 -        0x124b62ff7  com.apple.CorePrediction (1.0 - 1) <40F4F3BB-0F11-36E6-8643-B70217A7359E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
       0x124b92000 -        0x124c66ffb  com.apple.PDFKit (1.0 - 737.3) <47D13F08-6D32-3185-BF31-C9D40A3F3151> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/PDFKit.framework/PDFKit
       0x124d05000 -        0x124d09ff7  com.apple.CoreOptimization (1.0 - 1) <45756109-02C3-3681-AAA6-5437D3D8CF82> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
       0x124d10000 -        0x124d43ff3  com.apple.datadetectorscore (7.0 - 590.24) <45716E3A-1370-3DE9-B673-81E9296AEF5D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
       0x124d6e000 -        0x124fbeff7  com.apple.Safari.Shared (606 - 606.1.36.0.3) <52659DA5-A45A-3445-8A0C-ADF99A1F25CE> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
       0x1251a7000 -        0x125206fff  com.apple.RemoteManagement (1.0 - 1.94) <DF156EA1-9D9E-39ED-A3EE-E6A3CF3A6566> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/RemoteManagement.framework/RemoteManagement
       0x12525e000 -        0x125265fff  com.apple.CertUI (1.0 - 1) <15FE4DC1-90F3-3514-8692-6A533B9CDABC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CertUI.framework/CertUI
       0x125272000 -        0x125315ff3  com.apple.siri.parsec.CoreParsec (1.0 - 213.1.40) <7BD6F8AE-3D8A-38B4-A0DA-46B570205B58> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
       0x1253f1000 -        0x1253f3ffb  com.apple.ParsecSubscriptionServiceSupport (1.0 - 977) <47A4D4C4-EE7D-3B28-9BF4-93963F1FD004> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
       0x1253fb000 -        0x12549bff3  com.apple.sociald.Social (87 - 87) <99F2396A-C0DF-387D-8812-CD01A9E94E8B> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Social.framework/Social
       0x125548000 -        0x125552ff7  com.apple.siri.context.ContextKit (1.0 - 1) <5FB375E2-4590-369B-911E-168B2AAC3D3A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
       0x125595000 -        0x1255e6ffb  com.apple.DeviceManagement (1.0 - 20.71) <A2DCD8A5-6EDB-3B7A-ACB3-148101B1CF11> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
       0x125667000 -        0x12568bff3  com.apple.UsageTracking (1.0 - 49) <87794502-3B49-3A88-9984-68B37AD6E6F8> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
       0x1256a3000 -        0x12571fff3  com.apple.VideoSubscriberAccount.VideoSubscriberAccountFramework (1.0 - 270.2) <B0F2572B-BEBF-3C4D-86A4-83F41BAB22DB> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
       0x1257a6000 -        0x125846fff  com.apple.bulletinboard (1.0 - 1) <883BB968-D345-3AC9-AD8C-89EC5AF561E0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
       0x1258e5000 -        0x12593afff  com.apple.ToneLibrary (1.0 - 1) <7115951D-AB04-3F82-8131-9AD3A2C10190> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
       0x125985000 -        0x125998ffb  com.apple.AssetsLibrary (1.0 - 1) <4BA14229-3B11-35C5-89EE-F11D97EAD423> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
       0x1259b3000 -        0x1259d9ffb  com.apple.DCIMServices (1.0 - 1) <88626AC4-69D4-34F0-97CD-6AB9F6972309> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
       0x125a0b000 -        0x125f3eff7  com.apple.PhotoLibraryServices (1.0.0 - 1.0) <82C83197-EAA9-393D-A3B5-D7BD6D9CBE3F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
       0x1263a9000 -        0x1263d9ff3  com.apple.AssetsLibraryServices (1.0 - 1) <81EE861A-7853-3A53-8E62-3B31E484939D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
       0x126420000 -        0x126450fff  com.apple.PhotosFormats (1.0 - 1) <D4AE89D5-EE93-33F6-8740-82414931E540> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
       0x126488000 -        0x12671bfff  com.apple.VN (2.0.62 - 2.0.62) <3EA06912-41A5-3E14-A52F-F88012D60C65> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Vision.framework/Vision
       0x1268f7000 -        0x1269c8ff7  com.apple.MMCS (1.3 - 438.19) <07DBC6DA-A579-3DC8-8997-D621BAFB9213> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MMCS.framework/MMCS
       0x126ab4000 -        0x126cd1fff  com.apple.CoreML (1.0 - 1) <1C8B2B4B-DF32-35CC-9D98-F774BDD6E780> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/CoreML.framework/CoreML
       0x126e14000 -        0x12706eff7  com.apple.vision.EspressoFramework (1.0 - 120) <2092F4A5-5017-3492-B550-55CBC4F1B055> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Espresso.framework/Espresso
       0x1271f4000 -        0x12726ffff  com.apple.Quagga (1.0 - 1) <0FA5EDB2-B1D5-3FC4-99DE-11616B638D1F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Quagga.framework/Quagga
       0x127283000 -        0x1272b0fff  com.apple.Futhark-Sim (1.0 - 1) <1A6BEFF1-F4DC-346C-AC71-FF8EB224731E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Futhark.framework/Futhark
       0x1272ba000 -        0x12737eff7  com.apple.Montreal (1.0 - 42.15.8) <B05B4055-41CD-3D83-880D-931753B4C0B4> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Montreal.framework/Montreal
       0x127392000 -        0x1273d9ff7  com.apple.ChunkingLibrary (194 - 194) <61F0ABB5-CF83-3335-AA86-4866DC3A9BA0> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
       0x12742b000 -        0x12745fff3  com.apple.C2 (1.3 - 438.19) <87AB1D85-71CF-3709-AABE-AD506E87EF0F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/C2.framework/C2
       0x127497000 -        0x1274b5ffb  com.apple.AssetCacheServices (83.3 - 83.3) <A9E167AA-BC06-3AAC-84F5-96FC510051DF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
       0x1274e4000 -        0x1274f9ffb  com.apple.UserManagement (1.0 - 1) <DF35A71B-B78E-3396-98D7-61812AB0CC83> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
       0x127518000 -        0x127533ff7  com.apple.mediastream (1.0 - 1) <17DA5CDB-9F4C-3941-877B-07DD7B503C85> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
       0x127558000 -        0x12773ffff  com.apple.mobilespotlight.index (10.7.0 - 1191.45) <E7882C1F-DB37-3176-97F6-30ADD218D847> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
       0x127806000 -        0x127927ff7  com.apple.NLP (1.0 - 122.15.20) <CD30AB89-CA05-318B-BC42-BF4B9551A39F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/NLP.framework/NLP
       0x127993000 -        0x1279f2fff  com.apple.PhotoFoundation (3.0 - 3402.9.240) <2A9E0445-AEAC-3D28-8A92-2C07EC3EC711> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
       0x127aca000 -        0x127c42ff7  com.apple.CloudPhotoLibrary (1.0 - 3402.9.170) <0891D01F-44E7-3A0F-81AC-C702681379AF> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
       0x127d78000 -        0x127d96ff3  com.apple.CloudPhotoServices (1.0 - 3402.9.170) <5E73126E-55B1-3DF0-8134-473B62264146> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
       0x127db6000 -        0x127ef7ffb  com.apple.CoreMediaStream (2.0 - 520.1) <8F422E1A-0B66-310B-AF91-9A862AAF7DED> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
       0x127fdb000 -        0x127fe2fff  com.apple.XPCKit (1.0 - 1) <AE12039C-DD79-3218-B6D2-07D298537D08> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
       0x127fef000 -        0x128034ff7  com.apple.Catalyst (1.0 - 5.5) <9B2C28EC-025C-3D97-9197-07BB1EB7BD2E> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
       0x12807e000 -        0x128089fff  com.apple.framework.ctcategories (1.0 - 1.0.45) <0EB9E030-2CC3-303C-9F70-2281D930D721> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/Categories.framework/Categories
       0x128098000 -        0x1281b4ff7  com.apple.ConfigurationEngineModel (1.0 - 20.71) <6C0699CF-E0D6-3571-AFA3-EE3BD277702A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
       0x128346000 -        0x12834ffff  com.apple.FamilyCircle (1.0 - 1) <0BBFDE37-BB63-3D28-9339-C696AF70E544> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
       0x12841c000 -        0x12841dffb +liblog_network.dylib (1229.202.1) <CBB26F78-4321-3714-A5FF-AC2E9E6A1C6A> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/log/liblog_network.dylib
       0x12a66a000 -        0x12a675fff +libMobileGestaltExtensions.dylib (645.200.76) <121B975A-B84E-318F-B300-D24706A5A095> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libMobileGestaltExtensions.dylib
       0x12a685000 -        0x12a688047 +libobjc-trampolines.dylib (750) <C8A4D6CD-EFF6-31ED-8051-4152964FF772> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libobjc-trampolines.dylib
       0x12a849000 -        0x12a87bfff +libTrueTypeScaler.dylib (228.6) <E3BF9E81-6EA9-3695-811C-95C904482D83> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
       0x12b751000 -        0x12b767fff +libCGInterfaces.dylib (506.19) <746F6138-A311-3C52-89E5-8B170CC295EC> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
       0x12c500000 -        0x12c529ff7  com.apple.CoreServicesInternal (357 - 357) <FBD63E37-865E-321D-844E-F39ED6A6EA8D> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
       0x12c600000 -        0x12c65dff7 +libusrtcp.dylib (1229.202.1) <E3F04BE9-B730-3BC2-92D5-F217F304199F> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libusrtcp.dylib
       0x12c8c0000 -        0x12c996ff7 +libboringssl.dylib (109.202.1) <8098AB14-F2FD-3337-A735-1FC6910E4C32> /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/usr/lib/libboringssl.dylib

External Modification Summary:
  Calls made by other processes targeting this process:
    task_for_pid: 13
    thread_create: 0
    thread_set_state: 0
  Calls made by this process:
    task_for_pid: 0
    thread_create: 0
    thread_set_state: 0
  Calls made by all processes on this machine:
    task_for_pid: 4398994
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=499.7M resident=0K(0%) swapped_out_or_unallocated=499.7M(100%)
Writable regions: Total=772.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=772.3M(100%)

                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        2 
CoreAnimation                     12.8M        3 
CoreServices                       248K        2 
CoreUI image data                    4K        2 
CoreUI image file                    8K        2 
Foundation                           4K        2 
Kernel Alloc Once                    8K        2 
MALLOC                           268.5M       36 
MALLOC guard page                   32K        9 
MALLOC_NANO (reserved)           384.0M        2         reserved VM address space (unallocated)
SQLite page cache                  192K        3 
STACK GUARD                       56.1M       20 
Stack                             20.1M       24 
VM_ALLOCATE                       95.3M       95 
VM_ALLOCATE (reserved)            2836K        2         reserved VM address space (unallocated)
__DATA                            49.8M      434 
__DATA_DIRTY                        16K        4 
__FONT_DATA                          4K        2 
__LINKEDIT                       159.1M      346 
__TEXT                           340.6M      345 
__UNICODE                          560K        2 
mapped file                       50.7M       28 
shared memory                       24K        4 
===========                     =======  ======= 
TOTAL                              1.4G     1348 
TOTAL, minus reserved VM space     1.0G     1348 
kroikie commented 4 years ago

@andreashaese

The issue at https://github.com/flutter/flutter/issues/24341 has been closed and moved here. Future collaboration on this issue will be done here.

iapicca commented 4 years ago

Hi @andreashaese If you are still experiencing this issue with the latest version of Flutter and FlutterFire plugin can you please provide your updated flutter doctor -v and your and your flutter run --verbose/flutter build --verbose ? Also, to better address the issue, would be helpful if you could post a self contained app on github or the steps to reproduce it. Thank you

kroikie commented 4 years ago

I'm not sure this is still an issue, but we should leave it open till we are sure.

zinodaks commented 4 years ago

I am facing this issue , I don't know how to fix it. If anyone found the fix can you please post it

zinodaks commented 4 years ago

importing dart.io seemed to solve this problem , I read somewhere that lower level exceptions can be caught by importing 'dart.io' and it worked.

iapicca commented 4 years ago

@kroikie can you confirm @zinodaks workaround?

google-oss-bot commented 4 years ago

Hey @kroikie. We need more information to resolve this issue but there hasn't been an update in 7 weekdays. I'm marking the issue as stale and if there are no new updates in the next 7 days I will close it automatically.

If you have more information that will help us get to the bottom of this, just add a comment!

google-oss-bot commented 4 years ago

Since there haven't been any recent updates here, I am going to close this issue.

@kroikie if you're still experiencing this problem and want to continue the discussion just leave a comment here and we are happy to re-open this.