Posts

Post not yet marked as solved
2 Replies
1.1k Views
My app want Converting iphone12 HDR Video to SDR,to edit。 follow the doc Apple-HDR-Convert. My code setting the pixBuffAttributes        [pixBuffAttributes setObject:(id)(kCVImageBufferYCbCrMatrix_ITU_R_709_2) forKey:(id)kCVImageBufferYCbCrMatrixKey];       [pixBuffAttributes setObject:(id)(kCVImageBufferColorPrimaries_ITU_R_709_2) forKey:(id)kCVImageBufferColorPrimariesKey];       [pixBuffAttributes setObject:(id)kCVImageBufferTransferFunction_ITU_R_709_2 forKey:(id)kCVImageBufferTransferFunctionKey];       playerItemOutput = [[AVPlayerItemVideoOutput alloc] initWithPixelBufferAttributes:pixBuffAttributes]; but I get the playerItemOutput's output buffer  CFTypeRef colorAttachments = CVBufferGetAttachment(pixelBuffer, kCVImageBufferYCbCrMatrixKey, NULL);     CFTypeRef colorPrimaries = CVBufferGetAttachment(pixelBuffer, kCVImageBufferColorPrimariesKey, NULL);     CFTypeRef colorTransFunc = CVBufferGetAttachment(pixelBuffer, kCVImageBufferTransferFunctionKey, NULL);      NSLog(@"colorAttachments = %@", colorAttachments);     NSLog(@"colorPrimaries = %@", colorPrimaries);     NSLog(@"colorTransFunc = %@", colorTransFunc); log output: colorAttachments = ITU_R_2020 colorPrimaries = ITU_R_2020 colorTransFunc = ITU_R_2100_HLG pixBuffAttributes setting output format invalid,please help!
Posted
by TianYing.
Last updated
.
Post not yet marked as solved
0 Replies
382 Views
My app want Converting iphone12 HDR Video to SDR,to edit。 follow the doc Apple-HDR-Convert. My code setting the pixBuffAttributes        [pixBuffAttributes setObject:(id)(kCVImageBufferYCbCrMatrix_ITU_R_709_2) forKey:(id)kCVImageBufferYCbCrMatrixKey];       [pixBuffAttributes setObject:(id)(kCVImageBufferColorPrimaries_ITU_R_709_2) forKey:(id)kCVImageBufferColorPrimariesKey];       [pixBuffAttributes setObject:(id)kCVImageBufferTransferFunction_ITU_R_709_2 forKey:(id)kCVImageBufferTransferFunctionKey];       playerItemOutput = [[AVPlayerItemVideoOutput alloc] initWithPixelBufferAttributes:pixBuffAttributes]; but I get the playerItemOutput's output buffer   CFTypeRef colorAttachments = CVBufferGetAttachment(pixelBuffer, kCVImageBufferYCbCrMatrixKey, NULL);     CFTypeRef colorPrimaries = CVBufferGetAttachment(pixelBuffer, kCVImageBufferColorPrimariesKey, NULL);     CFTypeRef colorTransFunc = CVBufferGetAttachment(pixelBuffer, kCVImageBufferTransferFunctionKey, NULL);      NSLog(@"colorAttachments = %@", colorAttachments);     NSLog(@"colorPrimaries = %@", colorPrimaries);     NSLog(@"colorTransFunc = %@", colorTransFunc); log output: colorAttachments = ITU_R_2020 colorPrimaries = ITU_R_2020 colorTransFunc = ITU_R_2100_HLG pixBuffAttributes setting output format invalid,please help!
Posted
by TianYing.
Last updated
.
Post marked as solved
7 Replies
2.1k Views
- My app implement transitions animation between two video with AVFoundation's AVVideoComposition. In iOS13 after export to local file,it has no transitions animation in video. - I used AVMutableVideoComposition build transform in video layer. - playerItem.videoComposition: play playerItem has transitions animation - but used AVAssetExportSession.videoComposition export to loacl file, has NO any effect In iOS 13.My sample code for verify the question:- (void)testTransformPlayerImage { NSString *moviePath = [[NSBundle mainBundle] pathForResource:@"111" ofType:@"MP4"]; AVAsset *asset = [AVURLAsset assetWithURL:[NSURL fileURLWithPath:moviePath]]; AVAssetTrack *origAssetTrack = [asset tracksWithMediaType:AVMediaTypeVideo].firstObject; AVMutableComposition *composition = [AVMutableComposition composition]; composition.naturalSize = CGSizeMake(KVideoPixelsWidth, kVideoPixelsHeight); AVMutableVideoComposition *videoComposition = [AVMutableVideoComposition videoComposition]; videoComposition.frameDuration = CMTimeMake(1, 30); videoComposition.renderSize = CGSizeMake(KVideoPixelsWidth, kVideoPixelsHeight);; ////////////////////////// AVMutableVideoCompositionInstruction *transformInstruction = [AVMutableVideoCompositionInstruction videoCompositionInstruction]; transformInstruction.timeRange = origAssetTrack.timeRange; AVMutableVideoCompositionLayerInstruction *transformLayerInstruction = [AVMutableVideoCompositionLayerInstruction videoCompositionLayerInstructionWithAssetTrack:origAssetTrack]; CGAffineTransform startTransform = CGAffineTransformIdentity; CGAffineTransform endTransform = CGAffineTransformIdentity; endTransform = CGAffineTransformTranslate(endTransform, 0, 500); [transformLayerInstruction setTransformRampFromStartTransform:startTransform toEndTransform:endTransform timeRange:origAssetTrack.timeRange]; transformInstruction.layerInstructions = [NSArray arrayWithObject:transformLayerInstruction]; videoComposition.instructions = @[transformInstruction]; /* has effect AVPlayerItem *playerItem = [AVPlayerItem playerItemWithAsset:asset]; playerItem.videoComposition = videoComposition; combineResultTestViewController *vc = [[combineResultTestViewController alloc] initWithPlayerItem:playerItem]; [self.navigationController pushViewController:vc animated:YES]; */ //export no effect NSString *outputPath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"828.mp4"]; AVAssetExportSession *exportSession = [[AVAssetExportSession alloc] initWithAsset:asset presetName:AVAssetExportPreset1280x720]; exportSession.outputURL = [NSURL fileURLWithPath:outputPath]; exportSession.outputFileType = AVFileTypeQuickTimeMovie; exportSession.videoComposition = videoComposition; [exportSession exportAsynchronouslyWithCompletionHandler:^{ dispatch_async(dispatch_get_main_queue(), ^{ AVAsset *outputAsset = [AVURLAsset assetWithURL:[NSURL fileURLWithPath:outputPath]]; combineResultTestViewController *vc = [[combineResultTestViewController alloc] initWithAsset:outputAsset]; [self.navigationController pushViewController:vc animated:YES]; }); }];}What did I do wrong?
Posted
by TianYing.
Last updated
.
Post not yet marked as solved
3 Replies
3.6k Views
what I do I used AVFoundation for merge multiple videosused [AVMutableCompositionTrack scaleTimeRange] to change video speed[layerInstruction setTransformRampFromStartTransform:startTransform toEndTransform:endTransform timeRange:transTimeRange]and add transform between two videosand so onwhat happend when i preview total merge videos(iphone8), or use AVAssetExportSession export to local (iPhoneXR), APP received AVAudioSessionMediaServicesWereResetNotification notify. and my all AVPlayerItem received AVPlayerItemStatusFailed (KVO @"status"), process failed~!I can't location code in my project when crashedzhen i find the crash log in device (mediaserverd)Incident Identifier: 3423F244-30C8-4BF6-8B17-973A484A56D9 CrashReporter Key: df68ba962d120b617cde7167c3ce094db3dcaa19 Hardware Model: iPhone10,1 Process: mediaserverd [26] Path: /usr/sbin/mediaserverd Identifier: mediaserverd Version: ??? Code Type: ARM-64 (Native) Role: Unspecified Parent Process: launchd [1] Coalition: com.apple.mediaserverd [15] Date/Time: 2019-06-10 18:23:34.8714 +0800 Launch Time: 2019-06-03 09:52:03.1229 +0800 OS Version: iPhone OS 12.3.1 (16F203) Baseband Version: 3.60.01 Report Version: 104 Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x000000011d6d4000 VM Region Info: 0x11d6d4000 is not in any region. Bytes after previous region: 1474561 Bytes before following region: 25378816 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL MALLOC_LARGE 000000011d544000-000000011d56c000 [ 160K] rw-/rwx SM=PRV ---> GAP OF 0x199c000 BYTES MALLOC_LARGE 000000011ef08000-000000011f008000 [ 1024K] rw-/rwx SM=PRV Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [26] Triggered by Thread: 15 Thread 0 name: Dispatch queue: com.apple.main-thread Thread 0: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 mediaserverd 0x0000000104d27158 0x104d24000 + 12632 6 libdyld.dylib 0x00000001fcca68e0 start + 4 Thread 1 name: HAL Async Logger Thread 1: 0 libsystem_kernel.dylib 0x00000001fcde7130 semaphore_wait_trap + 8 1 CoreAudio 0x0000000200562068 ca::mach::semaphore::wait+ 196712 () + 24 2 CoreAudio 0x0000000200564324 ca::concurrent::details::worker_thread::run+ 205604 (ca::thread::attributes) + 36 3 CoreAudio 0x0000000200564970 decltype(*(std::__1::forward<ca::concurrent::details::worker_thread*>(fp0)).*fp(std::__1::forward<ca::thread::attributes>(fp1))) std::__1::__invoke<void (ca::concurrent::details::worker_thread::*)(ca::thread::attributes), ca::concurrent::details::worker_thread*, ca::thread::attributes, void>(void (ca::concurrent::details::worker_thread::*&&)+ 207216 (ca::thread::attributes), ca::concurrent::details::worker_thread*&&, ca::thread::attributes&&) + 156 4 CoreAudio 0x0000000200564724 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ca::concurrent::details::worker_thread::*)(ca::thread::attributes), ca::concurrent::details::worker_thread*, ca::thread::attributes> >+ 206628 (void*) + 64 5 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 6 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 7 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 2 name: FigTransportConnectionUSB.messagesending Thread 2: 0 libsystem_kernel.dylib 0x00000001fcde7130 semaphore_wait_trap + 8 1 libdispatch.dylib 0x00000001fcc64964 _dispatch_sema4_wait$VARIANT$armv81 + 24 2 libdispatch.dylib 0x00000001fcc653e0 _dispatch_semaphore_wait_slow + 128 3 CoreMedia 0x00000002007f532c usb_messageSendingThreadMain + 44 4 CoreMedia 0x000000020073dd08 figThreadMain + 268 5 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 6 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 7 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 3 name: FigTransportConnectionUSB.server Thread 3: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 CoreMedia 0x00000002007f64e8 usb_serverThreadMain + 224 7 CoreMedia 0x000000020073dd08 figThreadMain + 268 8 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 9 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 10 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 4: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 VirtualAudio 0x000000010b08d9c4 0x10b088000 + 22980 7 VirtualAudio 0x000000010b08d8d4 0x10b088000 + 22740 8 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 9 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 10 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 5 name: Audio HAL Overload Reporting Spool Thread 5: 0 libsystem_kernel.dylib 0x00000001fcde7130 semaphore_wait_trap + 8 1 CoreAudio 0x0000000200562068 ca::mach::semaphore::wait+ 196712 () + 24 2 CoreAudio 0x0000000200564324 ca::concurrent::details::worker_thread::run+ 205604 (ca::thread::attributes) + 36 3 CoreAudio 0x0000000200564970 decltype(*(std::__1::forward<ca::concurrent::details::worker_thread*>(fp0)).*fp(std::__1::forward<ca::thread::attributes>(fp1))) std::__1::__invoke<void (ca::concurrent::details::worker_thread::*)(ca::thread::attributes), ca::concurrent::details::worker_thread*, ca::thread::attributes, void>(void (ca::concurrent::details::worker_thread::*&&)+ 207216 (ca::thread::attributes), ca::concurrent::details::worker_thread*&&, ca::thread::attributes&&) + 156 4 CoreAudio 0x0000000200564724 void* std::__1::__thread_proxy<std::__1::tuple<std::__1::unique_ptr<std::__1::__thread_struct, std::__1::default_delete<std::__1::__thread_struct> >, void (ca::concurrent::details::worker_thread::*)(ca::thread::attributes), ca::concurrent::details::worker_thread*, ca::thread::attributes> >+ 206628 (void*) + 64 5 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 6 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 7 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 6 name: com.apple.CoreMotion.MotionThread Thread 6: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 CoreMotion 0x0000000202b2fc08 0x202abb000 + 478216 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 7 name: CommonUtilities-WiFi-Thread Thread 7: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 CommonUtilities 0x00000001ffc8f6b4 0x1ffc82000 + 54964 7 Foundation 0x00000001fdcdb6a4 __NSThread__start__ + 984 8 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 9 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 10 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 8 name: com.apple.coremedia.readcache Thread 8: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x000000020073b100 WaitOnConditionTimed + 88 3 CoreMedia 0x00000002006abcf8 FigSemaphoreWaitRelative + 168 4 MediaToolbox 0x00000002019f309c FigReadCacheThread + 1796 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 9 name: com.apple.coreaudio.AQClient Thread 9: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 AudioToolbox 0x000000020125e7d8 GenericRunLoopThread::Entry+ 2299864 (void*) + 156 6 AudioToolbox 0x00000002014ed4f8 CAPThread::Entry+ 4982008 (CAPThread*) + 88 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 10 name: com.apple.coremedia.imagequeue.coreanimation.common Thread 10: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x000000020073b100 WaitOnConditionTimed + 88 3 CoreMedia 0x00000002006abcf8 FigSemaphoreWaitRelative + 168 4 MediaToolbox 0x0000000201bd824c piqca_SharedPollingThread + 420 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 11 name: com.apple.coremedia.networkbuffering Thread 11: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 CoreMedia 0x00000002006b4c50 FigThreadGlobalNetworkBufferingRunloop + 24 7 CoreMedia 0x000000020073dd08 figThreadMain + 268 8 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 9 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 10 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 12 name: AVDFrameReceiver Thread 12: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 AVD.videodecoder 0x00000002245912e4 AVDFrameReceiverEntry+ 119524 (void*) + 252 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 13: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 14 name: audio IO: VAD [vdef] AggDev 23 Thread 14: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714d8 _pthread_cond_wait$VARIANT$armv81 + 680 2 CoreAudio 0x00000002005eaf2c HALB_Guard::WaitFor+ 757548 (unsigned long long) + 144 3 CoreAudio 0x000000020053dd94 HALS_IOContext::IOWorkLoop_SleepUntilWakeTime+ 48532 (unsigned long long) + 128 4 CoreAudio 0x00000002005352cc HALS_IOContext::IOWorkLoop+ 13004 () + 3652 5 CoreAudio 0x0000000200534108 HALS_IOContext::IOThreadEntry+ 8456 (void*) + 324 6 CoreAudio 0x00000002005d31c4 invocation function for block in HALS_IOContext::HALS_IOContext+ 659908 (HALS_System*, HALS_Client*, HALS_System::PowerState) + 16 7 CoreAudio 0x0000000200533ca0 HALB_IOThread::Entry+ 7328 (void*) + 80 8 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 9 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 10 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 15 name: Dispatch queue: com.apple.coremedia.basicvideocompositor.layerprocessing Thread 15 Crashed: 0 MediaToolbox 0x0000000201e2e3c8 bvc_SimpleMixingOpaque_420v_420v_420v_arm + 312 1 MediaToolbox 0x0000000201cfe9fc __bvc_mixBuffers_block_invoke + 732 2 libdispatch.dylib 0x00000001fcc95814 _dispatch_client_callout2 + 16 3 libdispatch.dylib 0x00000001fcc7aeb4 _dispatch_apply_serial + 116 4 libdispatch.dylib 0x00000001fcc957d4 _dispatch_client_callout + 16 5 libdispatch.dylib 0x00000001fcc76bf4 _dispatch_sync_invoke_and_complete + 56 6 libdispatch.dylib 0x00000001fcc7ad98 dispatch_apply_f$VARIANT$armv81 + 852 7 MediaToolbox 0x0000000201cfcd58 bvc_mixBuffers + 1296 8 MediaToolbox 0x0000000201cfc318 __basicVideoCompositor_RenderFrame_block_invoke_4 + 2300 9 libdispatch.dylib 0x00000001fcc94a38 _dispatch_call_block_and_release + 24 10 libdispatch.dylib 0x00000001fcc957d4 _dispatch_client_callout + 16 11 libdispatch.dylib 0x00000001fcc70dec _dispatch_lane_serial_drain$VARIANT$armv81 + 548 12 libdispatch.dylib 0x00000001fcc7192c _dispatch_lane_invoke$VARIANT$armv81 + 408 13 libdispatch.dylib 0x00000001fcc79e08 _dispatch_workloop_worker_thread + 584 14 libsystem_pthread.dylib 0x00000001fce75114 _pthread_wqthread + 304 15 libsystem_pthread.dylib 0x00000001fce77cd4 start_wqthread + 4 Thread 16: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 17: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 18: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 19: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 20: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 21: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 22: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 23: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 24: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 25 name: com.apple.coremedia.audioqueue.source Thread 25: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a85cf4 faq_enqueueSourceDataThread + 56 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 26 name: com.apple.coremedia.audioqueue.source Thread 26: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a85cf4 faq_enqueueSourceDataThread + 56 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 27 name: com.apple.coremedia.videoprocessor Thread 27: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 28 name: com.apple.coremedia.videomediaconverter Thread 28: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 29 name: AVDFrameReceiver Thread 29: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 AVD.videodecoder 0x00000002245912e4 AVDFrameReceiverEntry+ 119524 (void*) + 252 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 30 name: com.apple.coremedia.videomediaconverter Thread 30: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 31 name: D5500FrameReceiver Thread 31: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 H264**.videodecoder 0x00000002245a1bf8 D5500FrameReceiverEntry+ 52216 (void*) + 252 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 32 name: com.apple.coremedia.audiomentor Thread 32: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a04d70 audioMentorThread + 6844 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 33 name: com.apple.coremedia.audiomentor Thread 33: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a04d70 audioMentorThread + 6844 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 34 name: com.apple.coremedia.videomentor Thread 34: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a27de4 videoMentorThread + 5004 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 35 name: com.apple.coremedia.videomentor Thread 35: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a27de4 videoMentorThread + 5004 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 36: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 37: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 38: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 39 name: AQConverterThread Thread 39: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 AudioToolbox 0x00000002014ec194 CAGuard::Wait+ 4977044 () + 68 3 AudioToolbox 0x0000000201369234 AQConverterManager::AQConverterThread::Run+ 3392052 () + 884 4 AudioToolbox 0x0000000201368e7c AQConverterManager::AQConverterThread::ConverterThreadEntry+ 3391100 (void*) + 12 5 AudioToolbox 0x00000002014ed4f8 CAPThread::Entry+ 4982008 (CAPThread*) + 88 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 40: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 41: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 42: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 43: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 44: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 45: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 46: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 47: 0 libsystem_kernel.dylib 0x00000001fcde7148 semaphore_timedwait_trap + 8 1 libdispatch.dylib 0x00000001fcc64a4c _dispatch_sema4_timedwait$VARIANT$armv81 + 64 2 libdispatch.dylib 0x00000001fcc653a8 _dispatch_semaphore_wait_slow + 72 3 libdispatch.dylib 0x00000001fcc787c8 _dispatch_worker_thread + 344 4 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 5 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 6 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 48: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 49: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 50: 0 libsystem_pthread.dylib 0x00000001fce77cd0 start_wqthread + 0 Thread 51 name: com.apple.coremedia.audioqueue.source Thread 51: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a85cf4 faq_enqueueSourceDataThread + 56 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 52 name: com.apple.coremedia.audioqueue.source Thread 52: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a85cf4 faq_enqueueSourceDataThread + 56 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 53 name: com.apple.coremedia.mediaprocessor.audiocompression Thread 53: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 54 name: com.apple.coremedia.remakerOfflineMixer Thread 54: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 55 name: com.apple.coremedia.mediaprocessor.videocompression Thread 55: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 56 name: com.apple.coremedia.remaker.videoprocessor Thread 56: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 IOKit 0x00000001fd518584 io_connect_method + 412 3 IOKit 0x00000001fd4b1ff4 IOConnectCallMethod + 172 4 IOKit 0x00000001fd4b21a0 IOConnectCallStructMethod + 52 5 IOSurfaceAccelerator 0x00000001ff3eccf0 convertToTransform + 192 6 IOSurfaceAccelerator 0x00000001ff3ecc24 IOSurfaceAcceleratorTransferSurface + 40 7 ************ 0x0000000200c3b95c figIOSurfaceAcceleratedPixelTransfer_TransferM2 + 2756 8 ************ 0x0000000200c39b08 VTPixelTransferSessionTransferImage + 6204 9 MediaToolbox 0x0000000201cf0f68 videoprocessor_processUntilHighWaterMet + 5876 10 MediaToolbox 0x0000000201a247e4 activitySchedulerOnThread + 116 11 CoreMedia 0x000000020073dd08 figThreadMain + 268 12 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 13 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 14 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 57 name: com.apple.coremedia.videomediaconverter Thread 57: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 58 name: AVDFrameReceiver Thread 58: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 AVD.videodecoder 0x00000002245912e4 AVDFrameReceiverEntry+ 119524 (void*) + 252 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 59 name: com.apple.coremedia.videomediaconverter Thread 59: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a24804 activitySchedulerOnThread + 148 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 60 name: D5500FrameReceiver Thread 60: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 H264**.videodecoder 0x00000002245a1bf8 D5500FrameReceiverEntry+ 52216 (void*) + 252 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 61 name: com.apple.coremedia.audiomentor Thread 61: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a04d70 audioMentorThread + 6844 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 62 name: com.apple.coremedia.audiomentor Thread 62: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a04d70 audioMentorThread + 6844 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 63 name: com.apple.coremedia.videomentor Thread 63: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a2a824 videoMentorThreadWaitForOutputQueueToDropBelowHighWater + 240 5 MediaToolbox 0x0000000201a2a640 videoMentorThreadGenerateAndEnqueueFrame + 80 6 MediaToolbox 0x0000000201b2cdcc videoMentorThreadForwardPlayback + 6100 7 MediaToolbox 0x0000000201a27500 videoMentorThread + 2728 8 CoreMedia 0x000000020073dd08 figThreadMain + 268 9 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 10 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 11 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 64 name: com.apple.coremedia.videomentor Thread 64: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a2a824 videoMentorThreadWaitForOutputQueueToDropBelowHighWater + 240 5 MediaToolbox 0x0000000201a2a640 videoMentorThreadGenerateAndEnqueueFrame + 80 6 MediaToolbox 0x0000000201b2cdcc videoMentorThreadForwardPlayback + 6100 7 MediaToolbox 0x0000000201a27500 videoMentorThread + 2728 8 CoreMedia 0x000000020073dd08 figThreadMain + 268 9 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 10 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 11 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 65 name: com.apple.coremedia.formatwriter.qtmovie Thread 65: 0 libsystem_kernel.dylib 0x00000001fcdf1ee4 __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x00000001fce714a4 _pthread_cond_wait$VARIANT$armv81 + 628 2 CoreMedia 0x00000002006abda8 WaitOnCondition + 16 3 CoreMedia 0x00000002006abcf0 FigSemaphoreWaitRelative + 160 4 MediaToolbox 0x0000000201a3e984 writingThread + 928 5 CoreMedia 0x000000020073dd08 figThreadMain + 268 6 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 7 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 8 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 66 name: AVEFrameReceiver Thread 66: 0 libsystem_kernel.dylib 0x00000001fcde70f4 mach_msg_trap + 8 1 libsystem_kernel.dylib 0x00000001fcde65a0 mach_msg + 72 2 CoreFoundation 0x00000001fd1e6a10 __CFRunLoopServiceMachPort + 236 3 CoreFoundation 0x00000001fd1e1920 __CFRunLoopRun + 1360 4 CoreFoundation 0x00000001fd1e10b0 CFRunLoopRunSpecific + 436 5 CoreFoundation 0x00000001fd1e1e0c CFRunLoopRun + 80 6 H264H9.videoencoder 0x000000022461bef0 H264VideoEncoderFrameReceiverEntry+ 278256 (void*) + 252 7 libsystem_pthread.dylib 0x00000001fce742c0 _pthread_body + 128 8 libsystem_pthread.dylib 0x00000001fce74220 _pthread_start + 44 9 libsystem_pthread.dylib 0x00000001fce77cdc thread_start + 4 Thread 15 crashed with ARM Thread State (64-bit): x0: 0x0000000000000168 x1: 0x0000000000000001 x2: 0x000000016bf9a470 x3: 0x000000016bf9a0e8 x4: 0x000000016bf9a450 x5: 0x000000016bf9a0c8 x6: 0x000000016bf9a430 x7: 0x000000016bf9a0a8 x8: 0x0000000201cfd344 x9: 0x0000000000000030 x10: 0x0000000000000002 x11: 0x0000000000000030 x12: 0x000000011f319010 x13: 0x000000003432358f x14: 0x000000011d6d4000 x15: 0x0000000000000000 x16: 0xfffffffffffffd6c x17: 0x0000000034323076 x18: 0x0000000000000000 x19: 0x000000016bf9a2f0 x20: 0x0000000000000000 x21: 0x0000000000000000 x22: 0x000000016bf9a200 x23: 0x0000000000000001 x24: 0x0000000000000001 x25: 0x000000016bf9b0e0 x26: 0x0000000000000000 x27: 0x0000000fffffc034 x28: 0x00000001053f0c50 fp: 0x000000016bf9a090 lr: 0x0000000201cfe9fc sp: 0x000000016bf9a090 pc: 0x0000000201e2e3c8 cpsr: 0x60000000 Binary Images: 0x104d24000 - 0x104d3ffff mediaserverd arm64 <0e80e6fc24eb3aaa9d7f38c75ef39421> /usr/sbin/mediaserverd 0x104e14000 - 0x104e1ffff AirPlayHalogen arm64 <5cae939f8bb335ae81bbb58e63bd6034> /Library/Audio/Plug-Ins/HAL/AirPlayHalogen.driver/AirPlayHalogen 0x104e50000 - 0x104ea7fff dyld arm64 <9c893b6aa3b13d9596326ef6952e7195> /usr/lib/dyld 0x104f10000 - 0x104f2ffff AppleAOPAudioPlugin arm64 <6f247c05c6c339baae0fc822a58e711f> /Library/Audio/Plug-Ins/HAL/AppleAOPAudioPlugin.driver/AppleAOPAudioPlugin 0x104f88000 - 0x104f97fff AppleTimeSyncAudioClock arm64 <b3cf0f870d2631b196c2cc9a5be08451> /Library/Audio/Plug-Ins/HAL/AppleTimeSyncAudioClock.driver/AppleTimeSyncAudioClock 0x104fa4000 - 0x104fe3fff BTAudioHALPlugin arm64 <b2a2889a631b3fe7b3baa1e6baa4aab8> /Library/Audio/Plug-Ins/HAL/BTAudioHALPlugin.driver/BTAudioHALPlugin 0x105608000 - 0x10560ffff CarPlayHalogen arm64 <17768a5b97083e6e9f94a4e9447b4d56> /Library/Audio/Plug-Ins/HAL/CarPlayHalogen.driver/CarPlayHalogen 0x10561c000 - 0x105623fff NetworkUplinkClock arm64 <de1fc5117c8a3328a5dc60e2eb581943> /Library/Audio/Plug-Ins/HAL/NetworkUplinkClock.driver/NetworkUplinkClock 0x10562c000 - 0x105643fff OctaviaHalogen arm64 <bdc33ac8ecec3b5a8b8347603eb34f9f> /Library/Audio/Plug-Ins/HAL/OctaviaHalogen.driver/OctaviaHalogen 0x105678000 - 0x10567bfff IOUSBDeviceLib arm64 <f6ede354a4053a9d85f684d1bca9480b> /System/Library/Extensions/IOUSBDeviceFamily.kext/PlugIns/IOUSBDeviceLib.plugin/IOUSBDeviceLib 0x1094a4000 - 0x1094b3fff MetalFilter arm64 <cc8cf52de3703a85b80dbbda3e3f8e86> /System/Library/VideoProcessors/MetalFilter.bundle/MetalFilter 0x10b088000 - 0x10b58ffff VirtualAudio arm64 <61325f37713337a79f77afdade6b0937> /Library/Audio/Plug-Ins/HAL/VirtualAudio.plugin/VirtualAudio 0x10b7c8000 - 0x10b7cbfff AppleSPULib arm64 <ec3e43c0d0f53e39ade066ba3d3a6142> /System/Library/Extensions/AppleSPU.kext/PlugIns/AppleSPULib.plugin/AppleSPULib 0x10df40000 - 0x10df4ffff IOHIDLib arm64 <5bd3772dcce53df98e1f83ac30788e2c> /System/Library/Extensions/IOHIDFamily.kext/PlugIns/IOHIDLib.plugin/IOHIDLib 0x10ff50000 - 0x10ff57fff BarcodeScanner.videoprocessor arm64 <51bdbeb7d6c33124a71e5bd7161234c0> /System/Library/VideoProcessors/BarcodeScanner.videoprocessor 0x1fc3bf000 - 0x1fc3c0fff libSystem.B.dylib arm64 <2d9d93c74687353281fc2f486a371680> /usr/lib/libSystem.B.dylib 0x1fc3c1000 - 0x1fc416fff libc++.1.dylib arm64 <e1843de67f9234e6a7c59cfb6ffe5e76> /usr/lib/libc++.1.dylib 0x1fc417000 - 0x1fc429fff libc++abi.dylib arm64 <b2407b2b53073779b86b8765c6ea72c2> /usr/lib/libc++abi.dylib 0x1fc42a000 - 0x1fcbb1fff libobjc.A.dylib arm64 <c48d66667b893a29959044bb49a1973e> /usr/lib/libobjc.A.dylib 0x1fcbb2000 - 0x1fcbb6fff libcache.dylib arm64 <22202d885c35395a9734dc0d7dc02b29> /usr/lib/system/libcache.dylib 0x1fcbb7000 - 0x1fcbc2fff libcommonCrypto.dylib arm64 <0670536269b63ab289d61f36dd2aa431> /usr/lib/system/libcommonCrypto.dylib 0x1fcbc3000 - 0x1fcbc7fff libcompiler_rt.dylib arm64 <14258a4709af3ffba47a04bc00b9646a> /usr/lib/system/libcompiler_rt.dylib 0x1fcbc8000 - 0x1fcbd0fff libcopyfile.dylib arm64 <903036d60844385987e8bec76e22bcad> /usr/lib/system/libcopyfile.dylib 0x1fcbd1000 - 0x1fcc34fff libcorecrypto.dylib arm64 <9f7915fc35b737e880ff06f14f73d523> /usr/lib/system/libcorecrypto.dylib 0x1fcc35000 - 0x1fcca4fff libdispatch.dylib arm64 <94dcbc89bacb39beadffccea74e7bdb6> /usr/lib/system/libdispatch.dylib 0x1fcca5000 - 0x1fcccefff libdyld.dylib arm64 <39ee943ad0ca301180519d4a1173734f> /usr/lib/system/libdyld.dylib 0x1fcccf000 - 0x1fcccffff liblaunch.dylib arm64 <729cfcd40d393f308cdbb266917306db> /usr/lib/system/liblaunch.dylib 0x1fccd0000 - 0x1fccd5fff libmacho.dylib arm64 <0cc10aed9fe1322fa37cdd01e6c3e771> /usr/lib/system/libmacho.dylib 0x1fccd6000 - 0x1fccd7fff libremovefile.dylib arm64 <5a2545f357d6342d9641ec17eedebf59> /usr/lib/system/libremovefile.dylib 0x1fccd8000 - 0x1fcceffff libsystem_asl.dylib arm64 <40fd59634e5532d49a4f441f37283d0e> /usr/lib/system/libsystem_asl.dylib 0x1fccf0000 - 0x1fccf0fff libsystem_blocks.dylib arm64 <8dd7ed74d37d3dde8eb600edf862c82f> /usr/lib/system/libsystem_blocks.dylib 0x1fccf1000 - 0x1fcd72fff libsystem_c.dylib arm64 <5dcc765a916a3daeb108d6502c377ae4> /usr/lib/system/libsystem_c.dylib 0x1fcd73000 - 0x1fcd77fff libsystem_configuration.dylib arm64 <99cc1779fbeb371a8dc9971a007cf6e1> /usr/lib/system/libsystem_configuration.dylib 0x1fcd78000 - 0x1fcd7efff libsystem_containermanager.dylib arm64 <b342816916ef3f3e9e22cf2f1544acfd> /usr/lib/system/libsystem_containermanager.dylib 0x1fcd7f000 - 0x1fcd80fff libsystem_coreservices.dylib arm64 <90373e3876e03823a8ed93ea69564b3d> /usr/lib/system/libsystem_coreservices.dylib 0x1fcd81000 - 0x1fcd87fff libsystem_darwin.dylib arm64 <24fd8e0c02383189a10f80ac34a9755c> /usr/lib/system/libsystem_darwin.dylib 0x1fcd88000 - 0x1fcd8efff libsystem_dnssd.dylib arm64 <1fb1d15c469934529208e8bd6ad41085> /usr/lib/system/libsystem_dnssd.dylib 0x1fcd8f000 - 0x1fcdcefff libsystem_info.dylib arm64 <82fee029e7e039cfbf2b75818cd69028> /usr/lib/system/libsystem_info.dylib 0x1fcdcf000 - 0x1fcdf9fff libsystem_kernel.dylib arm64 <cc9f9508b5bf3478a442f3cec1591804> /usr/lib/system/libsystem_kernel.dylib 0x1fcdfa000 - 0x1fce27fff libsystem_m.dylib arm64 <fa8fefc7c2f33c228b635f1526ee1943> /usr/lib/system/libsystem_m.dylib 0x1fce28000 - 0x1fce4afff libsystem_malloc.dylib arm64 <3cf7982226b039749f8eebd3f328c63e> /usr/lib/system/libsystem_malloc.dylib 0x1fce4b000 - 0x1fce56fff libsystem_networkextension.dylib arm64 <16d95a4894953f70bdbd6b2e6fa2ada3> /usr/lib/system/libsystem_networkextension.dylib 0x1fce57000 - 0x1fce5dfff libsystem_notify.dylib arm64 <3e85f77a7641310c827a7e926a8bf673> /usr/lib/system/libsystem_notify.dylib 0x1fce5e000 - 0x1fce68fff libsystem_platform.dylib arm64 <8b5dd1f4cd3c3c99b2911f7290ddf050> /usr/lib/system/libsystem_platform.dylib 0x1fce69000 - 0x1fce79fff libsystem_pthread.dylib arm64 <beb13d8311cd3aa1a18dea822da57c69> /usr/lib/system/libsystem_pthread.dylib 0x1fce7a000 - 0x1fce7cfff libsystem_sandbox.dylib arm64 <1328091ae30237658e045dcbb41772f9> /usr/lib/system/libsystem_sandbox.dylib 0x1fce7d000 - 0x1fce84fff libsystem_symptoms.dylib arm64 <a31d562710bd3d99a1cff7b78de4491a> /usr/lib/system/libsystem_symptoms.dylib 0x1fce85000 - 0x1fce9afff libsystem_trace.dylib arm64 <813eaa7de9753714a813eabaea1e39e2> /usr/lib/system/libsystem_trace.dylib 0x1fce9b000 - 0x1fcea0fff libunwind.dylib arm64 <e00ff283d08538c1b34675a5e665bcdc> /usr/lib/system/libunwind.dylib 0x1fcea1000 - 0x1fcecefff libxpc.dylib arm64 <7047fecf09023c959ca2a8499239f4a2> /usr/lib/system/libxpc.dylib 0x1fcecf000 - 0x1fd12afff libicucore.A.dylib arm64 <9015b4c283943ee891433bd65535e6bf> /usr/lib/libicucore.A.dylib 0x1fd12b000 - 0x1fd13cfff libz.1.dylib arm64 <869dd3bee3ba3e7abd0cbad2f428cdbc> /usr/lib/libz.1.dylib 0x1fd13d000 - 0x1fd499fff CoreFoundation arm64 <8f67863fa23e377190d7993168740877> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation 0x1fd49a000 - 0x1fd4aafff libbsm.0.dylib arm64 <4524c293a9ab3f40bd476f0e665dfc55> /usr/lib/libbsm.0.dylib 0x1fd4ab000 - 0x1fd4abfff libenergytrace.dylib arm64 <4733292256c23d85910a258f21770d6c> /usr/lib/libenergytrace.dylib 0x1fd4ac000 - 0x1fd53afff IOKit arm64 <8cbd79075b063189808df404fe3ae179> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x1fd53b000 - 0x1fd622fff libxml2.2.dylib arm64 <1b51169d88b436ac8b374a52fc7ee591> /usr/lib/libxml2.2.dylib 0x1fd623000 - 0x1fd630fff libbz2.1.0.dylib arm64 <0c1876f0044234339a72c5d1f1ab2c9b> /usr/lib/libbz2.1.0.dylib 0x1fd631000 - 0x1fd649fff liblzma.5.dylib arm64 <dbbb8e6e5cd333969343748c303a771d> /usr/lib/liblzma.5.dylib 0x1fd64a000 - 0x1fd7c3fff libsqlite3.dylib arm64 <48776c5c404d3ed589a60f07eb2e995b> /usr/lib/libsqlite3.dylib 0x1fd7c4000 - 0x1fd7f8fff libMobileGestalt.dylib arm64 <0d11307f9a3e3ddb80779e03e5e6a31c> /usr/lib/libMobileGestalt.dylib 0x1fd7f9000 - 0x1fdba6fff CFNetwork arm64 <f76b7b973d7d306484d1922a6b85d0f8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork 0x1fdba7000 - 0x1fde91fff Foundation arm64 <25293172df9f3fb99e4ffd4ea250557e> /System/Library/Frameworks/Foundation.framework/Foundation 0x1fde92000 - 0x1fdfa0fff Security arm64 <198a5510ae6c3605898d3b06c7dec3d9> /System/Library/Frameworks/Security.framework/Security 0x1fdfa1000 - 0x1fe00afff SystemConfiguration arm64 <67fe60d5ad553f63a9f973e11e5a9dad> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration 0x1fe00b000 - 0x1fe03dfff libCRFSuite.dylib arm64 <c2a13500b7e33a71b9c36cb6bb890286> /usr/lib/libCRFSuite.dylib 0x1fe03e000 - 0x1fe054fff libapple_nghttp2.dylib arm64 <1637a851ff65353888978ec0c4d1e0ac> /usr/lib/libapple_nghttp2.dylib 0x1fe055000 - 0x1fe07efff libarchive.2.dylib arm64 <598c101a5eaa3da89ddf37e4a8003757> /usr/lib/libarchive.2.dylib 0x1fe07f000 - 0x1fe146fff libboringssl.dylib arm64 <257b28e49d1132538179c8d287e8ad16> /usr/lib/libboringssl.dylib 0x1fe147000 - 0x1fe15dfff libcoretls.dylib arm64 <89b2a60485493023b95e8ec9e624c5f7> /usr/lib/libcoretls.dylib 0x1fe15e000 - 0x1fe15ffff libcoretls_cfhelpers.dylib arm64 <83728d8a332239578fb6ace719b8e0ac> /usr/lib/libcoretls_cfhelpers.dylib 0x1fe160000 - 0x1fe161fff liblangid.dylib arm64 <eb6be37c1f11338088aaf9cc9b08cc6b> /usr/lib/liblangid.dylib 0x1fe162000 - 0x1fe4d2fff libnetwork.dylib arm64 <c8c1090660d536519b1fad5945225560> /usr/lib/libnetwork.dylib 0x1fe4d3000 - 0x1fe506fff libpcap.A.dylib arm64 <ba41e93b1cca3f14847891c4cf5750cf> /usr/lib/libpcap.A.dylib 0x1fe507000 - 0x1fe564fff libusrtcp.dylib arm64 <3d2ea758e1c3378b9a889d7f84a7a7d4> /usr/lib/libusrtcp.dylib 0x1fe565000 - 0x1fe571fff IOSurface arm64 <24abbc56094a3cdcb452e7e7e58e8ce7> /System/Library/Frameworks/IOSurface.framework/IOSurface 0x1fe572000 - 0x1fe624fff libBLAS.dylib arm64 <1227677a0887399cabb9f71366fe24db> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib 0x1fe625000 - 0x1fe941fff libLAPACK.dylib arm64 <ce98dc1d007d31619daf31c5adac2442> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib 0x1fe942000 - 0x1febb0fff vImage arm64 <41f05566962d355e91f4477b4e772f70> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage 0x1febb1000 - 0x1febc2fff libSparseBLAS.dylib arm64 <338f8bc90d683be99382785725295111> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib 0x1febc3000 - 0x1fec1dfff libvMisc.dylib arm64 <bc70159cdf0e3898a103465d9b005d36> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib 0x1fec1e000 - 0x1fec4cfff libBNNS.dylib arm64 <eb84695115b436b0bc094c2093447946> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib 0x1fec4d000 - 0x1fec61fff libLinearAlgebra.dylib arm64 <20ba3f17bfc0399bb11c86ba2229eb39> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib 0x1fec62000 - 0x1fec66fff libQuadrature.dylib arm64 <f28bbbb64cec3491afa2b8e612bcb6c9> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib 0x1fec67000 - 0x1fecd5fff libSparse.dylib arm64 <115f63580cd03880bd3532006327fc91> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib 0x1fecd6000 - 0x1fed66fff libvDSP.dylib arm64 <7e74fa8ecbaf3facb1ac7c3e5b7b2843> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib 0x1fed67000 - 0x1fed67fff vecLib arm64 <a1abbd2b223933ba966abab8ce22b3be> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib 0x1fed68000 - 0x1fed68fff Accelerate arm64 <17b91b414a5c3add8f30fe76901ab19a> /System/Library/Frameworks/Accelerate.framework/Accelerate 0x1fed69000 - 0x1fed80fff libcompression.dylib arm64 <14d85278114631f8b8384811ef3ba90d> /usr/lib/libcompression.dylib 0x1fed81000 - 0x1ff325fff CoreGraphics arm64 <d0efda4febfd32be87af4ca6191fa356> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 0x1ff326000 - 0x1ff32bfff IOAccelerator arm64 <82d5bf7d8aa23351881345c17cc0f5d1> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator 0x1ff32c000 - 0x1ff331fff libCoreFSCache.dylib arm64 <b15618da4b7f347a9df5eb993d690b9f> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib 0x1ff332000 - 0x1ff3d6fff Metal arm64 <20bff78b5b9f3877a27d0083a594eb63> /System/Library/Frameworks/Metal.framework/Metal 0x1ff3d7000 - 0x1ff3e9fff GraphicsServices arm64 <e8535e857a0c368483051d66703ec391> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices 0x1ff3ea000 - 0x1ff3eafff MobileCoreServices arm64 <84949e37138737c488acfe4d81f23634> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices 0x1ff3eb000 - 0x1ff3edfff IOSurfaceAccelerator arm64 <bbde7ec6029033c48544300be8e04ae3> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator 0x1ff3ee000 - 0x1ff430fff AppleJPEG arm64 <47f914569162375c85d858d2edf92463> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG 0x1ff431000 - 0x1ff9cdfff ImageIO arm64 <d93107d7853e394aa20505d1dbf6facf> /System/Library/Frameworks/ImageIO.framework/ImageIO 0x1ff9ce000 - 0x1ffa3cfff BaseBoard arm64 <345238425f6d348c8cce0c59797c54dd> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard 0x1ffa3d000 - 0x1ffa52fff AssertionServices arm64 <bf3871acff283785bbbc9556abf09265> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices 0x1ffa53000 - 0x1ffa5bfff CorePhoneNumbers arm64 <4123c73c515830768ad46d6c1efbb38c> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers 0x1ffa5c000 - 0x1ffa9ffff AppSupport arm64 <57d2d9ea472335769c846670f9fddccb> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport 0x1ffaa0000 - 0x1ffab8fff CrashReporterSupport arm64 <13c0b22ea99c336b80fb210972762030> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport 0x1ffab9000 - 0x1ffabefff AggregateDictionary arm64 <95a34ce9fd14339383d991821b281389> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary 0x1ffabf000 - 0x1ffb3afff libTelephonyUtilDynamic.dylib arm64 <d77edc67ae16313fb8ac305524407770> /usr/lib/libTelephonyUtilDynamic.dylib 0x1ffb3b000 - 0x1ffb59fff ProtocolBuffer arm64 <91032fdf155b3f87924a7525285f16e4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer 0x1ffb5a000 - 0x1ffb89fff MobileKeyBag arm64 <6dededb77a1e357e8f9e0e4a4637cd8b> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag 0x1ffb8a000 - 0x1ffbc4fff BackBoardServices arm64 <8bdbee668d39300abe172a65eb4a21bf> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices 0x1ffbc5000 - 0x1ffc27fff FrontBoardServices arm64 <3fb118c67c7c30bd8495888e2cae5eeb> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices 0x1ffc28000 - 0x1ffc6dfff SpringBoardServices arm64 <2d2e5ec182f2350ea5a9806c1ec65e8d> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices 0x1ffc6e000 - 0x1ffc81fff PowerLog arm64 <b8b60a56684a357395eb6fb5c65cd5ea> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog 0x1ffc82000 - 0x1ffc9cfff CommonUtilities arm64 <f463a608c90b36f38c8e0cf12e59dd80> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities 0x1ffc9d000 - 0x1ffca8fff liblockdown.dylib arm64 <c0d80ffabcea3568af858400ecd03b7f> /usr/lib/liblockdown.dylib 0x1ffca9000 - 0x1fffcafff CoreData arm64 <77d422003f2d3a87b81a262554be4dd1> /System/Library/Frameworks/CoreData.framework/CoreData 0x1fffcb000 - 0x1fffd2fff TCC arm64 <a94663c4ec093573958c81409e49fe79> /System/Library/PrivateFrameworks/TCC.framework/TCC 0x1fffd3000 - 0x1fffdafff libcupolicy.dylib arm64 <5ddf224db5933b6eac3ee6d462ddb6dc> /usr/lib/libcupolicy.dylib 0x1fffdb000 - 0x2000aefff CoreTelephony arm64 <7faa89592ffa35f5a0b4d1c6e517552a> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony 0x2000af000 - 0x200106fff Accounts arm64 <c2b61ce4ea203a72b1aca9907a9ba1d5> /System/Library/Frameworks/Accounts.framework/Accounts 0x200107000 - 0x20012afff AppleSauce arm64 <c6cedf639f933b688bdf4a5e3ec84673> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce 0x20012b000 - 0x200134fff DataMigration arm64 <1d495a1462093f1c9c5998356a0a4484> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration 0x200135000 - 0x20013bfff Netrb arm64 <aed66358b06736c59dd96692815d6848> /System/Library/PrivateFrameworks/Netrb.framework/Netrb 0x20013c000 - 0x20016dfff PersistentConnection arm64 <9bf92b0151753e6497f8d56bbb89430c> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection 0x20016e000 - 0x20017efff libmis.dylib arm64 <c1a959945e64374cbac9c372f7397df8> /usr/lib/libmis.dylib 0x20017f000 - 0x200284fff ManagedConfiguration arm64 <1ea0f673eed93dc5b0d63b3030b7e57a> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration 0x200285000 - 0x20028afff libReverseProxyDevice.dylib arm64 <7f14b01b25433818b181f6c823088cdf> /usr/lib/libReverseProxyDevice.dylib 0x20028b000 - 0x20029dfff libamsupport.dylib arm64 <eb4d3e6a60ec3bdb82d510289a55208d> /usr/lib/libamsupport.dylib 0x20029e000 - 0x2002a3fff libCoreVMClient.dylib arm64 <b6f900278f8b3bf88858dda31908764e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib 0x2002a4000 - 0x2002a5fff libCVMSPluginSupport.dylib arm64 <515a78781c723fe18fd06ceafb327f49> /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib 0x2002a6000 - 0x2002a9fff libutil.dylib arm64 <7119d758cbad3f929f0db0096ad145ee> /usr/lib/libutil.dylib 0x2002aa000 - 0x2002e7fff libGLImage.dylib arm64 <c977d1a0adbd3f01aeec2d7b2cc4b7b6> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib 0x2002e8000 - 0x200365fff APFS arm64 <ac71d9cf7f743d3d9f3152fc91f06dc6> /System/Library/PrivateFrameworks/APFS.framework/APFS 0x200366000 - 0x200397fff MediaKit arm64 <44a29345438735ebb25a9a2313a7b0df> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit 0x200398000 - 0x2003b2fff libSERestoreInfo.dylib arm64 <97bf44461e753b79b8db1d39ced94382> /usr/lib/updaters/libSERestoreInfo.dylib 0x2003b9000 - 0x2003f4fff DiskImages arm64 <e83b36ea80653f479c7bb16df26e16ef> /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages 0x2003f5000 - 0x2003fefff libGFXShared.dylib arm64 <f7762e821a563726a3356a83d2b97c35> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib 0x2003ff000 - 0x20044cfff libauthinstall.dylib arm64 <144e5c893c6b32c5affa7f008b418cd7> /usr/lib/libauthinstall.dylib 0x20044d000 - 0x200455fff IOMobileFramebuffer arm64 <8d44fa21b7e63f859d5089f705d02a3e> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer 0x200456000 - 0x200460fff OpenGLES arm64 <f1a1ebe122f430a892da5e647cc51578> /System/Library/Frameworks/OpenGLES.framework/OpenGLES 0x200461000 - 0x2004fffff ColorSync arm64 <e89fe66ea7cf33adaf6cc50e8ecca7f2> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync 0x200500000 - 0x20052ffff CoreVideo arm64 <904fb734803c3169a3cd15a5bc1f7617> /System/Library/Frameworks/CoreVideo.framework/CoreVideo 0x200530000 - 0x200531fff libCTGreenTeaLogger.dylib arm64 <2c66984be602379aafea29263178b490> /usr/lib/libCTGreenTeaLogger.dylib 0x200532000 - 0x200683fff CoreAudio arm64 <58d8cad0a77531b492bd63ace658737d> /System/Library/Frameworks/CoreAudio.framework/CoreAudio 0x200684000 - 0x2006a3fff CoreAnalytics arm64 <2cafb69811523cb98123fff76cc629d6> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics 0x2006a4000 - 0x2006a7fff UserFS arm64 <11a8ec06a2403df79847213fc7d494f7> /System/Library/PrivateFrameworks/UserFS.framework/UserFS 0x2006a8000 - 0x20085cfff CoreMedia arm64 <fbe41afac08633d8ad35c681d8d7807f> /System/Library/Frameworks/CoreMedia.framework/CoreMedia 0x20085d000 - 0x20086ffff libprotobuf-lite.dylib arm64 <0e24be4937fd3374be8b526df7c2a6f4> /usr/lib/libprotobuf-lite.dylib 0x200870000 - 0x2008cdfff libprotobuf.dylib arm64 <4c45e56e96d23931801d0b742ac8d67e> /usr/lib/libprotobuf.dylib 0x2008ce000 - 0x200bebfff libAWDSupportFramework.dylib arm64 <562e58f898003072a07cca40b77a0346> /usr/lib/libAWDSupportFramework.dylib 0x200bec000 - 0x200c31fff WirelessDiagnostics arm64 <2a61b25d975b37d8ae38ee7f2d1acef4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics 0x200c32000 - 0x200ceffff ************ arm64 <270622373ffa3607b37bd0aa29973ef0> /System/Library/Frameworks/************.framework/************ 0x200cf0000 - 0x200df4fff libFontParser.dylib arm64 <ef659aa6a27f306a88d08fd3566f309e> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x200df5000 - 0x200df5fff FontServices arm64 <9b1a15c31384324d82f3d0ad3b30af6f> /System/Library/PrivateFrameworks/FontServices.framework/FontServices 0x200df6000 - 0x200f57fff CoreText arm64 <874860ca41c93ca0a5617a84aeea4159> /System/Library/Frameworks/CoreText.framework/CoreText 0x200f58000 - 0x200f66fff IntlPreferences arm64 <3b9fa3a80d813874bf7ed224fca2aef6> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences 0x200f67000 - 0x200f70fff RTCReporting arm64 <6ded5a8713db33fbba202fbe9b6aac9a> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting 0x200f71000 - 0x201022fff CoreBrightness arm64 <8895e1c0d236399db78bde7a3a4f5885> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness 0x201023000 - 0x20102cfff libAudioStatistics.dylib arm64 <873e634c18fd30fbad2c913cf82f51d3> /usr/lib/libAudioStatistics.dylib 0x20102d000 - 0x2015cbfff AudioToolbox arm64 <b29bb470bcf839388f7b218504b625a6> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox 0x2015cc000 - 0x201804fff QuartzCore arm64 <8060fa297c6d3d6d8fc5e517e32949d4> /System/Library/Frameworks/QuartzCore.framework/QuartzCore 0x201805000 - 0x20180ffff MediaAccessibility arm64 <b3592f7724aa38a2882cc7cbe111969a> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility 0x201810000 - 0x201902fff libiconv.2.dylib arm64 <fe16541a8a8436fe8fd4b265547c8414> /usr/lib/libiconv.2.dylib 0x201903000 - 0x20191efff NetworkStatistics arm64 <513eb3085b2a3bf7ad53520aa9637f49> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics 0x20191f000 - 0x20193dfff MPSCore arm64 <cb449b62caa736d182694490ba53305e> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore 0x20193e000 - 0x2019b1fff MPSImage arm64 <a3e10b5d7262304db150f16214ef56bb> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage 0x2019b2000 - 0x2019d6fff MPSMatrix arm64 <20c6f1bd1aa936a99dfc663f000661a4> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix 0x2019d7000 - 0x2019e5fff CoreAUC arm64 <0aef421315bb36768e345479f799bef4> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC 0x2019e6000 - 0x202073fff MediaToolbox arm64 <6e58002c4a683422a1db9ecb5f1b043a> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox 0x202074000 - 0x2021defff MPSNeuralNetwork arm64 <33cf8604bd3f311ebb5e2b787b12bd1f> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork 0x2021df000 - 0x2021dffff MetalPerformanceShaders arm64 <8bfda59148c93272b7138316ddf1054f> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders 0x2021e0000 - 0x2025f2fff FaceCore arm64 <090fc62fbb4d35cebc28aec9cac050c2> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore 0x2025f3000 - 0x202600fff GraphVisualizer arm64 <cf77d192ab3b3d86a90c4250e1489553> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer 0x202601000 - 0x202825fff libFosl_dynamic.dylib arm64 <7ede3433c042323f878768e6b2aeac82> /usr/lib/libFosl_dynamic.dylib 0x202826000 - 0x202abafff CoreImage arm64 <4a7ba5ab212936c6b29dcb977f2a1471> /System/Library/Frameworks/CoreImage.framework/CoreImage 0x202abb000 - 0x202cddfff CoreMotion arm64 <bbcac1b9e7e73eb9b1c2970ab6139963> /System/Library/Frameworks/CoreMotion.framework/CoreMotion 0x202cde000 - 0x202d0cfff CoreBluetooth arm64 <552872c8ba9133b6b8e03b61f089c6bc> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth 0x202d0d000 - 0x202d2efff PlugInKit arm64 <84fb63c398903b8daef3e6eabcb7cd3a> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit 0x202d2f000 - 0x202fbafff ********* arm64 <1876a183dda73974a18dd6754aee48df> /System/Library/PrivateFrameworks/*********.framework/********* 0x202fbb000 - 0x20303cfff Quagga arm64 <f440fa25ee1137faa84c7b9788081ffe> /System/Library/PrivateFrameworks/Quagga.framework/Quagga 0x20303d000 - 0x203133fff AVFAudio arm64 <75d5931f72493d498cbebdf30d4c8c5f> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio 0x203134000 - 0x203330fff AVFoundation arm64 <2fdf6c729aea3bac804f58a4d423858a> /System/Library/Frameworks/AVFoundation.framework/AVFoundation 0x203331000 - 0x20334efff CacheDelete arm64 <530a2ede5dbe30ddab6103fd97b05e8a> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete 0x20334f000 - 0x203388fff StreamingZip arm64 <a9885f96aacf3ea8824b043bbe9ef1f6> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip 0x203389000 - 0x20339bfff CoreEmoji arm64 <8a100e765c883772b9b194a82993f4b1> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji 0x20339c000 - 0x2033ebfff CoreLocationProtobuf arm64 <351352a1039e3c8bb07e5f6a85bf5573> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf 0x2033ec000 - 0x2033f3fff SymptomDiagnosticReporter arm64 <7783836afe7639728b332ded392eff6e> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter 0x2033f4000 - 0x203ddbfff GeoServices arm64 <f41aebadb8da3cc5b19b6355b4fa3468> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices 0x203ddc000 - 0x203df6fff MobileAsset arm64 <3fe229af74fc39ea9ce61f966174b520> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset 0x203df7000 - 0x203e32fff Lexicon arm64 <ff7c96af06ea3dd6a4406579302052bc> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon 0x203e33000 - 0x203e44fff libcmph.dylib arm64 <7b66dd34551b337494f840670cfacc4d> /usr/lib/libcmph.dylib 0x203e45000 - 0x203f54fff LanguageModeling arm64 <6c7318c91c883e029101c8b64b278375> /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling 0x203f6c000 - 0x204006fff CoreLocation arm64 <dc0e318150a73f68ae8b7a133517d30c> /System/Library/Frameworks/CoreLocation.framework/CoreLocation 0x204007000 - 0x204007fff PhoneNumbers arm64 <4f355fec17cb3c77a8ec75e177dcf312> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers 0x204008000 - 0x204012fff libChineseTokenizer.dylib arm64 <7810a2deed8a3e6c8043722f980678af> /usr/lib/libChineseTokenizer.dylib 0x204013000 - 0x2040c3fff libmecab_em.dylib arm64 <ec3fa96fda2a33a49c7faa02c0577008> /usr/lib/libmecab_em.dylib 0x2040c4000 - 0x2040c5fff libThaiTokenizer.dylib arm64 <e152ff6a814236c5988efd45048a5137> /usr/lib/libThaiTokenizer.dylib 0x2040c6000 - 0x2040cafff libgermantok.dylib arm64 <21ccc577cc9f3c90bf8afef330408136> /usr/lib/libgermantok.dylib 0x2040cb000 - 0x20412efff CoreNLP arm64 <c6890c9311cb335c99443e676d4a08f2> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP 0x20413b000 - 0x2042fffff MobileSpotlightIndex arm64 <8c17b55bca703ba98a358c2af8440657> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex 0x204362000 - 0x20500ffff JavaScriptCore arm64 <1bc6cd920d453a83a72a73d261be2117> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore 0x205010000 - 0x205015fff libheimdal-asn1.dylib arm64 <19e762f603693fa380d216de53826807> /usr/lib/libheimdal-asn1.dylib 0x205016000 - 0x205090fff libate.dylib arm64 <d019a3a7803b35feac3e8517819e49c5> /usr/lib/libate.dylib 0x205091000 - 0x205138fff TextureIO arm64 <181bc23c77553f23ac6b4354f6a2c5b3> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO 0x205139000 - 0x2051fcfff CoreUI arm64 <8d6f79d88d713acb98c264f95776b2c3> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI 0x2051fd000 - 0x20520afff MobileIcons arm64 <682eaae2db8c3ed7898a5a5b27930ba8> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons 0x20520b000 - 0x205219fff AppleFSCompression arm64 <76258bbc7d14347388ba91e715d3ef6c> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression 0x20521a000 - 0x205282fff TextInput arm64 <317ba15bc1fb3718a6b1cb0a5d8dace7> /System/Library/PrivateFrameworks/TextInput.framework/TextInput 0x205283000 - 0x2052abfff libxslt.1.dylib arm64 <27d73ee2b97735cc9330e0e1aae1cf2f> /usr/lib/libxslt.1.dylib 0x2052ac000 - 0x2052dffff DataDetectorsCore arm64 <4245d8031493392aaf02727385b6beb7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore 0x2052e0000 - 0x205371fff FileProvider arm64 <5b39368c5ebe36afa34316a0f8746ca1> /System/Library/Frameworks/FileProvider.framework/FileProvider 0x205372000 - 0x205467fff NLP arm64 <552662f61f9b346e81c6fe5385b19f9d> /System/Library/PrivateFrameworks/NLP.framework/NLP 0x205468000 - 0x20553dfff ProofReader arm64 <99365e679484375a939d6c3655540cda> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader 0x20553e000 - 0x205553fff libAccessibility.dylib arm64 <fc3d0ed6be2f38a5a63f2870eceb200e> /usr/lib/libAccessibility.dylib 0x205554000 - 0x205a42fff libwebrtc.dylib arm64 <9ff202110da03d16a9b6683b8f63164a> /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib 0x205a43000 - 0x205aa7fff ContactsFoundation arm64 <b282425c82633b5b95426984c352fc83> /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation 0x205aa8000 - 0x207466fff WebCore arm64 <43e48363fdab3cc792156132de8b84a7> /System/Library/PrivateFrameworks/WebCore.framework/WebCore 0x207467000 - 0x207600fff WebKitLegacy arm64 <6787d083461235548252c2280b10b6b8> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy 0x207601000 - 0x207630fff DataAccessExpress arm64 <361dfa2228e139979f7c748c7d13ffed> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress 0x207631000 - 0x2076cafff AddressBookLegacy arm64 <c509a6761910319e83ddae070619153c> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy 0x2076cb000 - 0x207722fff ProtectedCloudStorage arm64 <a2cc74dd9da83cbba7b1172b89e94366> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage 0x207723000 - 0x207754fff UserNotifications arm64 <941ea9a0cdd03ef2ab89fcff03bfc5b0> /System/Library/Frameworks/UserNotifications.framework/UserNotifications 0x207755000 - 0x207760fff AppleIDAuthSupport arm64 <750450df1fb53cc0bebbd730b41fe74e> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport 0x207761000 - 0x2077b6fff AuthKit arm64 <a39b9c2b9a3c3bc6af9e0a90aab53ddf> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit 0x2077f5000 - 0x2077f5fff UIKit arm64 <b5e5ca22f3003259aeb8210ab28ca482> /System/Library/Frameworks/UIKit.framework/UIKit 0x2077f6000 - 0x207809fff DocumentManagerCore arm64 <72fde387821f32dea89c06e66ecc77da> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore 0x20780a000 - 0x207818fff HangTracer arm64 <1546787d016b3821a3d58be07bfd3e9c> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer 0x207819000 - 0x207867fff PhysicsKit arm64 <49c5ce4ab4053cdda1bdd4de6c7f033d> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit 0x207868000 - 0x20786cfff StudyLog arm64 <361514d41f653348bf94ec1edd7971e4> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog 0x20786d000 - 0x207958fff UIFoundation arm64 <9677209ff8ca3ad48379988a8221181f> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation 0x207959000 - 0x207a79fff CloudKit arm64 <ab26ccf3b57d39b884f0de4f989d1335> /System/Library/Frameworks/CloudKit.framework/CloudKit 0x207a7a000 - 0x207a81fff IntentsFoundation arm64 <b057918f6a18329ea9eb6eb84dae295b> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation 0x207a82000 - 0x207d68fff Intents arm64 <ae09e4adc7613b24b2f872266fa9d213> /System/Library/Frameworks/Intents.framework/Intents 0x207d69000 - 0x207d81fff libresolv.9.dylib arm64 <b7de425b1b823164b94fe08749668b76> /usr/lib/libresolv.9.dylib 0x207d82000 - 0x207d84fff CoreDuetDebugLogging arm64 <298c068f209e39f6bfce6eeea7139345> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging 0x207d85000 - 0x207db6fff libtidy.A.dylib arm64 <69aece969e9d370282486c7af3135cb7> /usr/lib/libtidy.A.dylib 0x207db7000 - 0x207f71fff CoreDuet arm64 <24d6bc0e6e013e31a4278111ed4f61df> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet 0x207f72000 - 0x207f92fff CoreDuetContext arm64 <43a5d9f1e9cd3aa099c7809b29ef4871> /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext 0x207f93000 - 0x207fa4fff CoreDuetDaemonProtocol arm64 <277972f876cb39bd97bd3c20067ea0ee> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol 0x207fa5000 - 0x20800bfff IMFoundation arm64 <73cd34a359d3350e90dc984aea339df4> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation 0x20800c000 - 0x20803dfff vCard arm64 <076debb75e7c3eac938a7ae4cedfc297> /System/Library/PrivateFrameworks/vCard.framework/vCard 0x20803e000 - 0x20814ffff Contacts arm64 <266c860050813d3d8a455b71810784e7> /System/Library/Frameworks/Contacts.framework/Contacts 0x208150000 - 0x208151fff DiagnosticLogCollection arm64 <56261a7d229e30a4bdab9ea0dcbe9f95> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection 0x208152000 - 0x208153fff Marco arm64 <1763514670473edaaef61bee283dae97> /System/Library/PrivateFrameworks/Marco.framework/Marco 0x208154000 - 0x20815bfff MessageProtection arm64 <b2738d4977dd341c8c3d3f9f9a70e2f3> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection 0x20815c000 - 0x208448fff StoreServices arm64 <76bc32ac0c5b3ec6aed6865fb7357039> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices 0x208449000 - 0x20845ffff Engram arm64 <89c5e2d4382c331eb5d49083433d16f7> /System/Library/PrivateFrameworks/Engram.framework/Engram 0x208460000 - 0x20856cfff IDSFoundation arm64 <10e5afe6f2fc33aeb3974b6189c965e9> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation 0x20856d000 - 0x208577fff CaptiveNetwork arm64 <05f935a367443dfa8d0fc4db050923ff> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork 0x208578000 - 0x2085a7fff EAP8021X arm64 <2e3f4aa248ed3dce99b8c8141e52491f> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X 0x2085a8000 - 0x2085e5fff MobileWiFi arm64 <d6f0fe1cdd663e85947bd313450fc1fb> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi 0x2085e6000 - 0x2085e8fff OAuth arm64 <eec14cba7dbf3375970cbf68dd0a534b> /System/Library/PrivateFrameworks/OAuth.framework/OAuth 0x2085e9000 - 0x2085ebfff CommonAuth arm64 <c3eaae4f1d963d2ca44c2cc9ae0b06cf> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth 0x2085ec000 - 0x20865bfff Heimdal arm64 <5df186d100683348a75ddd4b6cacf893> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal 0x20865c000 - 0x208685fff GSS arm64 <d26be6b8e29e3c2ab53d1bad25a1ea0d> /System/Library/Frameworks/GSS.framework/GSS 0x208686000 - 0x20869dfff ApplePushService arm64 <dbdc276bc6dc32b4823031df472c347d> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService 0x20869e000 - 0x20872dfff AccountsDaemon arm64 <a290cbf61db03a699bdf236bfc8b9625> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon 0x20872e000 - 0x20874ffff AppleIDSSOAuthentication arm64 <53515468bf8b3ab589b09ef9b997e37a> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication 0x208750000 - 0x2087d0fff AppleAccount arm64 <e6e0de66e43c3deab8ccea8850b65902> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount 0x2087d1000 - 0x208946fff CoreUtils arm64 <b61b3bea127d3a8a93263116916e3049> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils 0x208947000 - 0x208a40fff IDS arm64 <46b8e141760035ac835ab1fe0f69085f> /System/Library/PrivateFrameworks/IDS.framework/IDS 0x208a41000 - 0x208a67fff MediaServices arm64 <a7966ce0c8483e9c90f529c6a6ecb4fd> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices 0x208a68000 - 0x208c3bfff MediaRemote arm64 <17ac82c12b8e3200986c2aafb1a3d016> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote 0x208c3c000 - 0x208c56fff UserManagement arm64 <ef616c679dd638f4b84fd9983e30d117> /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement 0x208c57000 - 0x208c67fff MobileBluetooth arm64 <6599ffc2cb5e32948e26174df0d748a8> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth 0x208c68000 - 0x208c98fff Bom arm64 <1a5601365b253bc0a0d1893bf2ad8c6f> /System/Library/PrivateFrameworks/Bom.framework/Bom 0x208c99000 - 0x208c9dfff CommunicationsFilter arm64 <80f59aade9ef321185e384ca0c1d009e> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter 0x208c9e000 - 0x208cbefff FTAWD arm64 <c28d2c40b63333caa1fd956be24242ee> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD 0x208cbf000 - 0x208d14fff FTServices arm64 <8f6ec910c08333f5af5b8628b4cca5d2> /System/Library/PrivateFrameworks/FTServices.framework/FTServices 0x208d15000 - 0x208d4bfff WirelessProximity arm64 <e0fbbb2419b036158ceb16323df0a082> /System/Library/PrivateFrameworks/WirelessProximity.framework/WirelessProximity 0x208d58000 - 0x208da6fff ChunkingLibrary arm64 <ceeeff0b4606361b812f4ae3447729e4> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary 0x208da7000 - 0x208db5fff libnetworkextension.dylib arm64 <14e17d913a403f0f816367fbd3299933> /usr/lib/libnetworkextension.dylib 0x209b33000 - 0x209cd0fff NetworkExtension arm64 <a360f71b21f13967b1d02e7970fe2cfe> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension 0x209cd1000 - 0x20a0fbfff SiriTTS arm64 <b58100a0f0d93f41b227ba43fbd194e7> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS 0x20a0fc000 - 0x20a15afff SAObjects arm64 <ffe3dba69a9332f0857e09faf0d882a4> /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects 0x20a15b000 - 0x20a19afff VoiceServices arm64 <8b948beb1f87372c9ce794a0cbb0e2e4> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices 0x20a1ca000 - 0x20a2f3fff AssistantServices arm64 <0f440904786d3662a4346f43d207dff1> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices 0x20a2f4000 - 0x20a311fff AssetCacheServices arm64 <3e3520728b933f09b7e1bced6b06a506> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices 0x20a312000 - 0x20a3c3fff NetworkServiceProxy arm64 <773766cef12b3401b4a062d04f3f909a> /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy 0x20a3c4000 - 0x20a498fff MMCS arm64 <4322e21198fd3360bf6c9d6faaad7125> /System/Library/PrivateFrameworks/MMCS.framework/MMCS 0x20a499000 - 0x20a4a5fff BluetoothManager arm64 <7b94a40b2b9f3be48df7d94524305f3f> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager 0x20a5af000 - 0x20a5ddfff PhotosFormats arm64 <53fa60e2f8f631e983772b02fcf04f3f> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats 0x20a6d1000 - 0x20a82dfff CloudPhotoLibrary arm64 <1128233043d43a3d9ccacc417951c6db> /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary 0x20a913000 - 0x20a945fff AssetsLibraryServices arm64 <b5e3b4b8f5cf3ef3922e02e273d8e79d> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices 0x20a97b000 - 0x20a9a3fff DCIMServices arm64 <2b1bac05d79e3bab8fd4da9fb3582a2b> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices 0x20a9a4000 - 0x20aac2fff CoreMediaStream arm64 <3c582d39f2a130ad9657bd3b36b3c4e0> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream 0x20aac3000 - 0x20aacafff XPCKit arm64 <e0e9575173af3a7f859d14149cea66c0> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit 0x20abab000 - 0x20abc4fff CloudPhotoServices arm64 <943c0f02402b320ca30aab1a49dd7300> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices 0x20abd1000 - 0x20abedfff MediaStream arm64 <d2247e55d4a735a881dcf3dedbfd6bd8> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream 0x20abee000 - 0x20b0effff PhotoLibraryServices arm64 <2869fb68a0533553ae411dcd00e4c293> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices 0x20b0f0000 - 0x20b10bfff PrototypeTools arm64 <be11a66ec6fb3b6b918e711538e3b5d3> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools 0x20b10c000 - 0x20b18bfff CoreSymbolication arm64 <13ffa5ede3b630ad9cbfad6529327e5d> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication 0x20b2db000 - 0x20b2e0fff IncomingCallFilter arm64 <75d0735251a23220801ac4f605ea7070> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter 0x20b4ee000 - 0x20b4f6fff CoreTime arm64 <11887ccfa0683b2fbfa3a178da896a78> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime 0x20b4f7000 - 0x20b547fff CoreAppleCVA arm64 <2290f3e4940f393ea0181118ee48ccb5> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA 0x20b587000 - 0x20b729fff AppleCVA arm64 <f23944c6de9033d2ba885f9142cfd3cc> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA 0x20b72a000 - 0x20b7e1fff Montreal arm64 <10037f1e231037aba6300cc57fe21bac> /System/Library/PrivateFrameworks/Montreal.framework/Montreal 0x20b7e2000 - 0x20bb03fff Espresso arm64 <1e8714a7339e35a4a082a49023f58058> /System/Library/PrivateFrameworks/Espresso.framework/Espresso 0x20bb04000 - 0x20bb0afff MobileSystemServices arm64 <fcadece1491f35689cc8bcc4e6dd4eaf> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices 0x20bb0b000 - 0x20bcf7fff Photos arm64 <c2409886fa8a3aeabcffcb28e45d7057> /System/Library/Frameworks/Photos.framework/Photos 0x20bcf8000 - 0x20bf1bfff CoreML arm64 <5df9cd32f1b836c3b899cbc720433968> /System/Library/Frameworks/CoreML.framework/CoreML 0x20c0f4000 - 0x20c120fff Futhark arm64 <5a58f3f20ea433068150ba0072f1228c> /System/Library/PrivateFrameworks/Futhark.framework/Futhark 0x20c121000 - 0x20c190fff NanoRegistry arm64 <2beb6abe223d393187fe8933d8388940> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry 0x20c191000 - 0x20c1e8fff ToneLibrary arm64 <3747c14e3df837ef85af1c590681570e> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary 0x20c496000 - 0x20c727fff Vision arm64 <6905ff0aebc43bc2b56d0551c87aa5e1> /System/Library/Frameworks/Vision.framework/Vision 0x20cc37000 - 0x20ccccfff BulletinBoard arm64 <828370a11f66361f875ec0a701b619f8> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard 0x20cccd000 - 0x20ccd2fff ConstantClasses arm64 <74d07a639dd83ae4b9603404a9f9c9ba> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses 0x20cd7c000 - 0x20cdd0fff CoreMIDI arm64 <ec4791acab6e3aa081ee912aeea9ad19> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI 0x20e155000 - 0x20e163fff NanoPreferencesSync arm64 <123d13cbc0033f898044329690de3cf6> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync 0x20e59a000 - 0x20e5befff MobileInstallation arm64 <e22a9f03f3d43664bb2b47370178ddd7> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation 0x20e695000 - 0x20e75bfff TelephonyUtilities arm64 <9d66f2e6043d30a3a9c6c27e37d06199> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities 0x20ec17000 - 0x20ec2efff CoreFollowUp arm64 <2c49dd7ee59e301f8c5d6ff6f5df7f79> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp 0x20f3df000 - 0x20f3e2fff FTClientServices arm64 <9d1f004e1e6f3da2b7ac410882c016cf> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices 0x20f402000 - 0x20f5d4fff HealthKit arm64 <ccbde39b39c83abe9de504473320cd5c> /System/Library/Frameworks/HealthKit.framework/HealthKit 0x20f8dc000 - 0x20f8e9fff SetupAssistantSupport arm64 <981dd2ff655935878caceace743fb9b2> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport 0x20f8ea000 - 0x20f913fff SetupAssistant arm64 <b4928283302b38848f8f0c756392a410> /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant 0x20f94f000 - 0x20f95bfff DistributedEvaluation arm64 <4701908297823405bb0d2dadfa5b13c7> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation 0x20f960000 - 0x20f969fff MobileStorage arm64 <89c8d821028e3f4c85b3c5e0c1add5b2> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage 0x20f9a9000 - 0x20fa05fff ImageCapture arm64 <d7df96b988793936a69f07e6f3026421> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture 0x2105e1000 - 0x2105f8fff CoreSDB arm64 <fe4b886eed213b88b21447b186b7d2d8> /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB 0x2105f9000 - 0x210686fff IMSharedUtilities arm64 <05dcfb5808283ad2bfb530a969462ad0> /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities 0x210687000 - 0x21068cfff LinguisticData arm64 <5b4873c9a7353aedb61b0a3b893a936f> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData 0x210dec000 - 0x210f01fff IMDPersistence arm64 <3f2915d2ba5735f898b540bc74a80e33> /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence 0x211b56000 - 0x211d03fff IMCore arm64 <da401ffcb2213e22a98cf7031f34c11c> /System/Library/PrivateFrameworks/IMCore.framework/IMCore 0x211da4000 - 0x211db6fff MobileDeviceLink arm64 <a59dab3dd1443b4b9a756e61710af41c> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink 0x211e93000 - 0x211ed9fff MobileBackup arm64 <ea3928f86cc33f0298a40f4c2135a71c> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup 0x2127b4000 - 0x2127b8fff libIOAccessoryManager.dylib arm64 <efd45cf8877a3d269a277cda6abd060b> /usr/lib/libIOAccessoryManager.dylib 0x212ca3000 - 0x212cc5fff DuetActivityScheduler arm64 <593226c6f20536ffaf7aaff6d215bc6f> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler 0x212da3000 - 0x212da7fff IOABPLib.dylib arm64 <608d1d5a92a439aa8649c0f4150d8512> /usr/lib/IOABPLib.dylib 0x212da8000 - 0x212da9fff LegacyHandle arm64 <edb470a907c637cc84e126bade8dff03> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework/LegacyHandle 0x212ee7000 - 0x212ef2fff MobileActivation arm64 <3411a4ab65563a97bf604d5253c900d9> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation 0x212ef3000 - 0x212ef3fff libAWDProtobufFacetimeiMessage.dylib arm64 <8065491a27b93af9bf5ae377e3b026d7> /usr/lib/libAWDProtobufFacetimeiMessage.dylib 0x212ef4000 - 0x212f0dfff libPCITransport.dylib arm64 <450dad2a3c1634dd9e8a9bf68250ac66> /usr/lib/libPCITransport.dylib 0x212f12000 - 0x212f4bfff ViceroyTrace arm64 <1037c435c60c355e972023ac2a848a93> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework/ViceroyTrace 0x212f4c000 - 0x212f57fff AppConduit arm64 <32dbe66ce8593eed8bb82a5c6b1d6f02> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit 0x212f58000 - 0x212f70fff IAP arm64 <70314781a19f37bb92d601dc9db575e9> /System/Library/PrivateFrameworks/IAP.framework/IAP 0x21301a000 - 0x2131aafff Sharing arm64 <17f0cf3239323b308fdbc394f7e2b7b0> /System/Library/PrivateFrameworks/Sharing.framework/Sharing 0x213229000 - 0x2134c1fff VideoProcessing arm64 <ccee917eb4363e68894e23aad7bb34c7> /System/Library/PrivateFrameworks/VideoProcessing.framework/VideoProcessing 0x2134c2000 - 0x2134dbfff ExternalAccessory arm64 <dd5da468d5c23fb5b55415b12b5ba667> /System/Library/Frameworks/ExternalAccessory.framework/ExternalAccessory 0x213533000 - 0x21353efff SimpleKeyExchange arm64 <4fc94594f54a37939d1c6c1cc97a06b2> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework/SimpleKeyExchange 0x21353f000 - 0x21353ffff snatmap arm64 <06735b6e5d2a3b65802d15a164b55c3a> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework/snatmap 0x2135a7000 - 0x2135eafff ICE arm64 <a260d21084f633bebb503aba1628015a> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework/ICE 0x213903000 - 0x213957fff CallKit arm64 <ab36bd0244783fb18c3ee6dcac7ff6c4> /System/Library/Frameworks/CallKit.framework/CallKit 0x21395f000 - 0x2139b6fff AirPlaySupport arm64 <30a6b54c44603b368b69069161f8f33f> /System/Library/PrivateFrameworks/AirPlaySupport.framework/AirPlaySupport 0x2139b7000 - 0x2139bcfff AppleSRP arm64 <f9c4a19f30253bd9a8610f5f98485819> /System/Library/PrivateFrameworks/AppleSRP.framework/AppleSRP 0x2139bd000 - 0x213a11fff IMAVCore arm64 <9ef6fb8d4c1a3f08a25a3ccf3eed2c20> /System/Library/PrivateFrameworks/IMAVCore.framework/IMAVCore 0x213da8000 - 0x213db4fff WirelessCoexManager arm64 <37aae2e2566d35c7a85e898964d7ce10> /System/Library/PrivateFrameworks/WirelessCoexManager.framework/WirelessCoexManager 0x214051000 - 0x2140b7fff APTransport arm64 <fb76c9a2883c32ad834949a2f0aa56c9> /System/Library/PrivateFrameworks/APTransport.framework/APTransport 0x2140b8000 - 0x2144d1fff AVConference arm64 <906c98655ea63b978a1f8c1c52f6998b> /System/Library/PrivateFrameworks/AVConference.framework/AVConference 0x21467e000 - 0x2146cffff LoggingSupport arm64 <08c3df7b7ab93ac2b6e6f5879a149f4c> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport 0x2146d0000 - 0x21473ffff MediaControlSender arm64 <64a68fdff7c5329ab06409f74278bb19> /System/Library/PrivateFrameworks/MediaControlSender.framework/MediaControlSender 0x214912000 - 0x214921fff Speech arm64 <54267f68891136ac978006eb44822b0a> /System/Library/Frameworks/Speech.framework/Speech 0x2150b1000 - 0x215413fff SDAPI arm64 <f00ed0743407390f8a28cfbf28c0fd7a> /System/Library/PrivateFrameworks/SDAPI.framework/SDAPI 0x216714000 - 0x216c6dfff EmbeddedAcousticRecognition arm64 <2ce90427f91d36d8a402ef06909c8eb3> /System/Library/PrivateFrameworks/EmbeddedAcousticRecognition.framework/EmbeddedAcousticRecognition 0x216d03000 - 0x216d27fff CarKit arm64 <61d9da7a224c38b7a485f6cafc99a41c> /System/Library/PrivateFrameworks/CarKit.framework/CarKit 0x216d93000 - 0x216e31fff GameKitServices arm64 <39c6aff02ba634c8b4c948f18cef9255> /System/Library/PrivateFrameworks/GameKitServices.framework/GameKitServices 0x216efa000 - 0x216fbbfff VoiceTrigger arm64 <c52800e1489c32faa899919b65dac4eb> /System/Library/PrivateFrameworks/VoiceTrigger.framework/VoiceTrigger 0x217022000 - 0x217066fff Catalyst arm64 <6403066ac7153fa5938c35bacd00e75f> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst 0x21734e000 - 0x217353fff kperf arm64 <22b23ecb781b37c180cfdb841b7757e4> /System/Library/PrivateFrameworks/kperf.framework/kperf 0x2173f8000 - 0x217541fff libGLProgrammability.dylib arm64 <2390d8d408fa3d88a82b59c917d16ce2> /System/Library/Frameworks/OpenGLES.framework/libGLProgrammability.dylib 0x2175a5000 - 0x2175c5fff CellularPlanManager arm64 <f1c0256679a03930a086b861698c7ebe> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager 0x2175c6000 - 0x21761bfff DeviceManagement arm64 <078b863814ad36cb87eb81055d8bd03c> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement 0x217783000 - 0x21778bfff kperfdata arm64 <4c56a9b739c639798fba77f34d34c930> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata 0x21778c000 - 0x2177cdfff libFDR.dylib arm64 <e8138843f608339e8d35a9588d87bad3> /usr/lib/libFDR.dylib 0x2177ce000 - 0x2177d5fff libdscsym.dylib arm64 <a1bc7189011637b68798d25c46c5cd7e> /usr/lib/libdscsym.dylib 0x2177d6000 - 0x2177dafff libsysdiagnose.dylib arm64 <11ed8a74482c3d35a913226670bada51> /usr/lib/libsysdiagnose.dylib 0x21780a000 - 0x2178b3fff AutoLoop arm64 <4c9d52e65d7b3e4c88470060f0772d5a> /System/Library/PrivateFrameworks/AutoLoop.framework/AutoLoop 0x217a23000 - 0x217a2bfff IDSKVStore arm64 <0beb681ec400337fae9d710550bc6429> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore 0x217b78000 - 0x217baffff ktrace arm64 <11cbf8b15e4b35f19ef8fb9748bd2ca9> /System/Library/PrivateFrameworks/ktrace.framework/ktrace 0x219dc9000 - 0x219e0cfff BiometricKit arm64 <c484cca8336936379995bc61ead80138> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit 0x21a293000 - 0x21a2b6fff DeviceIdentity arm64 <24adf31e822d3a6f85f3bdb46e93da94> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity 0x21c229000 - 0x21c297fff Rapport arm64 <b444087f777e3043974cb7d55bcf4f67> /System/Library/PrivateFrameworks/Rapport.framework/Rapport 0x21c2d3000 - 0x21c314fff SignpostSupport arm64 <e1d797dae9cf31df90d832584c72eec4> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport 0x21c688000 - 0x21c691fff SoundAutoConfig arm64 <90d5d65cd18c39b58062004053a88827> /System/Library/PrivateFrameworks/SoundAutoConfig.framework/SoundAutoConfig 0x21d20b000 - 0x21d212fff libMatch.1.dylib arm64 <28d2837b88833766bdfba6200ce6a98c> /usr/lib/libMatch.1.dylib 0x21d25b000 - 0x21d270fff libtailspin.dylib arm64 <cdb23798914d30a99a44e2ac60403788> /usr/lib/libtailspin.dylib 0x21d918000 - 0x21d936fff AppleMetalGLRenderer arm64 <7026fc18b5573415b661f037d146bb2c> /System/Library/Extensions/AppleMetalGLRenderer.bundle/AppleMetalGLRenderer 0x21d94c000 - 0x21dd8afff AudioCodecs arm64 <87cdb41e1a6f39ee904e83dfb3062318> /System/Library/Frameworks/AudioToolbox.framework/AudioCodecs 0x21dd8b000 - 0x21e2c0fff libAudioDSP.dylib arm64 <f0f0382be7e736328d2b02c330094f47> /System/Library/Frameworks/AudioToolbox.framework/libAudioDSP.dylib 0x21e2c1000 - 0x21e2e1fff libVibeSynthEngine.dylib arm64 <38d7b9269ca03a1aa9755a441164f089> /System/Library/Frameworks/AudioToolbox.framework/libVibeSynthEngine.dylib 0x21e75c000 - 0x21e843fff GLEngine arm64 <3e621967406336d6bcfc62df36472f5e> /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine 0x21e8cf000 - 0x21e9e7fff H10ISP.mediacapture arm64 <b548c6dcc9013a4785e2222817f5ee3f> /System/Library/MediaCapture/H10ISP.mediacapture 0x21eeca000 - 0x21eecffff AccessoryAudio arm64 <da08335e356b3351b86afab9765936b5> /System/Library/PrivateFrameworks/AccessoryAudio.framework/AccessoryAudio 0x21efe8000 - 0x21f121fff AirPlaySender arm64 <a5ee3a71ee2d3281afe02c52bee94cd1> /System/Library/PrivateFrameworks/AirPlaySender.framework/AirPlaySender 0x21f29a000 - 0x21f378fff AudioServerDriver arm64 <551ca6fbd6743235bc3dcf88ea0f79bf> /System/Library/PrivateFrameworks/AudioServerDriver.framework/AudioServerDriver 0x21febf000 - 0x21fecafff ContextKit arm64 <a8d32f8e0d583dd7b0c75415b1d42810> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit 0x220117000 - 0x22013efff CoreServicesInternal arm64 <72056ec6c0de31c092afd6fd784a0d8e> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal 0x22013f000 - 0x22023afff CoreSpeech arm64 <4998743ea5283f2494f813f2bf9541c6> /System/Library/PrivateFrameworks/CoreSpeech.framework/CoreSpeech 0x2207a3000 - 0x2207b5fff libGSFontCache.dylib arm64 <fef2864c3f6b3d8991045de53fe45098> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib 0x221201000 - 0x221201fff libmetal_timestamp.dylib arm64 <c329ea976a7f3381b7ac7d18dcc1baa6> /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib 0x222218000 - 0x22221cfff InternationalSupport arm64 <071cd5bc30263bacba58a9d92f6a0ff9> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport 0x2239cf000 - 0x2239d9fff SignpostCollection arm64 <179498e0269030eabf6c8aa4b12633e4> /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection 0x223f9c000 - 0x223fcdfff TimeSync arm64 <cd995d16d90938bf96b348f80503db86> /System/Library/PrivateFrameworks/TimeSync.framework/TimeSync 0x224415000 - 0x224418fff XCTTargetBootstrap arm64 <9a025de034363df7b21e84fe72149ded> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap 0x224456000 - 0x224469fff libEDR arm64 <447342f0094d3e62bc9147c343872b1f> /System/Library/PrivateFrameworks/libEDR.framework/libEDR 0x224574000 - 0x224594fff AVD.videodecoder arm64 <4c6be075797034b3b48246e784f5f736> /System/Library/VideoDecoders/AVD.videodecoder 0x224595000 - 0x2245a8fff H264**.videodecoder arm64 <e2dd4dfe75af389a88e7abb3773aa779> /System/Library/VideoDecoders/H264**.videodecoder 0x2245a9000 - 0x2245acfff JPEGH1.videodecoder arm64 <968939f5aedd395383f3e194c0c63dab> /System/Library/VideoDecoders/JPEGH1.videodecoder 0x2245ad000 - 0x2245b8fff MP4VH8.videodecoder arm64 <e28b4f2b0a58317e879422c1a2db7200> /System/Library/VideoDecoders/MP4VH8.videodecoder 0x2245b9000 - 0x2245c1fff Slim.videodecoder arm64 <f0fcc14b40f03fa7a9f146a46299c01b> /System/Library/VideoDecoders/Slim.videodecoder 0x2245c2000 - 0x2245d7fff VCH263.videodecoder arm64 <d8185ff06a0735f7bb709b3d252df06c> /System/Library/VideoDecoders/VCH263.videodecoder 0x2245d8000 - 0x224634fff H264H9.videoencoder arm64 <7171bc49ed7e319d81a2f1a80dd1eaef> /System/Library/VideoEncoders/H264H9.videoencoder 0x224635000 - 0x224691fff H9.videoencoder arm64 <7282300f695a391680a24fef433887fb> /System/Library/VideoEncoders/H9.videoencoder 0x224692000 - 0x224695fff JPEGH1.videoencoder arm64 <1611d97e563b37688bb80b6ce0b116da> /System/Library/VideoEncoders/JPEGH1.videoencoder 0x224696000 - 0x2246b2fff VCH263.videoencoder arm64 <58a409ccc0eb3f68917bd8e1e0c503de> /System/Library/VideoEncoders/VCH263.videoencoder 0x2246b3000 - 0x2246fffff GNR.videoprocessor arm64 <7668b4be486f3602ac8e82a3524e4c78> /System/Library/VideoProcessors/GNR.videoprocessor 0x224700000 - 0x224722fff GyroVideoStabilization.videoprocessor arm64 <444ec3601a9039a48b467cfc4f858fb0> /System/Library/VideoProcessors/GyroVideoStabilization.videoprocessor 0x224723000 - 0x224740fff HDR.videoprocessor arm64 <3f32104a58b53b1097d0918d59bb7735> /System/Library/VideoProcessors/HDR.videoprocessor 0x224769000 - 0x2247bcfff libAWDProtobufBluetooth.dylib arm64 <1866c5c252fc37a899eab860215e948b> /usr/lib/libAWDProtobufBluetooth.dylib 0x224877000 - 0x2248c1fff libAudioIssueDetector.dylib arm64 <28017e4c30aa37c8bb912717b75d6095> /usr/lib/libAudioIssueDetector.dylib 0x224e6e000 - 0x224e7bfff libMobileGestaltExtensions.dylib arm64 <4aa804a8e68d307a828fc11f2799170d> /usr/lib/libMobileGestaltExtensions.dylib 0x224f89000 - 0x224f89fff libcharset.1.dylib arm64 <efab0a6adbe63d5390975e14f5d99652> /usr/lib/libcharset.1.dylib 0x2259f9000 - 0x2259fafff libsandbox.1.dylib arm64 <77c23a293e4e3a04b46d38ade6cddd6f> /usr/lib/libsandbox.1.dylib 0x225a39000 - 0x225a3afff liblog_network.dylib arm64 <8a823aee19803fb4ad2cfe9c8ebc764e> /usr/lib/log/liblog_network.dylib 0x225b20000 - 0x225c02fff AGXMetalA11 arm64 <d67b230b1dc23babb3db9d7e83e05699> /System/Library/Extensions/AGXMetalA11.bundle/AGXMetalA11 0x225ca4000 - 0x225de1fff CoreServices arm64 <1b1fdbf45e42320b9f1f6bfa618a9e18> /System/Library/Frameworks/CoreServices.framework/CoreServices 0x225e0b000 - 0x225e24fff MPSRayIntersector arm64 <c28a99dcbb0d3ae58d4f85c4b493cecd> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector 0x225e51000 - 0x225f77fff Network arm64 <02086028934236b895b241a7d872034a> /System/Library/Frameworks/Network.framework/Network 0x225f87000 - 0x225f95fff ANEServices arm64 <819253d655453afa8d86ddc5fc2d4a96> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices 0x225f9a000 - 0x225f9efff ASEProcessing arm64 <ce74eea9b24b39dab7d850bb29b842bf> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing 0x225f9f000 - 0x225faafff AXCoreUtilities arm64 <0f112a4a8c7331dbbb579e3b1221bb17> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities 0x2261e5000 - 0x2261f4fff AirPlayRoutePrediction arm64 <44169b87f0613ceca3ce9fa044c5d869> /System/Library/PrivateFrameworks/AirPlayRoutePrediction.framework/AirPlayRoutePrediction 0x226229000 - 0x226376fff AppleMediaServices arm64 <2260a47bada638c28e2a7d89638cbe10> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices 0x226377000 - 0x226386fff AppleNeuralEngine arm64 <554f6e2ce89d3a6d9d17ec389c70c143> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine 0x2264ff000 - 0x226534fff C2 arm64 <451d7f65a55334fe8be09713d5fe0dde> /System/Library/PrivateFrameworks/C2.framework/C2 0x2266be000 - 0x2266c8fff Categories arm64 <90bb6e61d77d3b8498462d1594e61fa1> /System/Library/PrivateFrameworks/Categories.framework/Categories 0x226b78000 - 0x226bcbfff DocumentManager arm64 <af64b0093b92309ab36c8cc3ac170e41> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager 0x226d01000 - 0x226d05fff IdleTimerServices arm64 <dde24fcd3cd236e381751df025fdb52e> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices 0x226de7000 - 0x226e0ffff MetadataUtilities arm64 <9aa476a985e83c95bc2482680c97b09c> /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities 0x227f0f000 - 0x227f5bfff OTSVG arm64 <47ac1e162b8c3e108277b2d92663afa5> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG 0x22804f000 - 0x2280a9fff PhotoFoundation arm64 <4f0fa6a6f7a13e3eb274a9ed13421fdb> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation 0x2280f9000 - 0x22813afff PhotosImagingFoundation arm64 <4e41857c14153ed383042ff7c0b710ae> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation 0x22819c000 - 0x2281e9fff ROCKit arm64 <da4e0c8e620e36e295f43d57134925f9> /System/Library/PrivateFrameworks/ROCKit.framework/ROCKit 0x228403000 - 0x228414fff RemoteTextInput arm64 <9da35dcb38883d23980c1fe985637f1a> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput 0x22843c000 - 0x2284d0fff SampleAnalysis arm64 <ef916bf441203d84a17e7d543885c6b7> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis 0x228625000 - 0x228639fff SiriInstrumentation arm64 <db62ec58f2483b55815042242401a51d> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation 0x22867b000 - 0x228682fff StatsKit arm64 <e11d3e5785d2301b914bc9a9adab5f73> /System/Library/PrivateFrameworks/StatsKit.framework/StatsKit 0x22929f000 - 0x22a383fff UIKitCore arm64 <40a93e939f8635c1905c7b947c7c2305> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore 0x22a384000 - 0x22a38efff UIKitServices arm64 <c4f1d7751f2c38e8b95f4b63f0adc5da> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices 0x22a38f000 - 0x22a395fff URLFormatting arm64 <3e29a767b64b37a9baf172222eb1ecc6> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting 0x22a7e2000 - 0x22a8a1fff VCPHEVC.videocodec arm64 <7771b080270e3156a596bbbc38ca0fdc> /System/Library/VideoCodecs/VCPHEVC.videocodec 0x22a8a2000 - 0x22a8dbfff VCPMP4V.videodecoder arm64 <16e717100f873ab69ef901c8ba3a00ee> /System/Library/VideoDecoders/VCPMP4V.videodecoder 0x22a9fa000 - 0x22aa0dfff libWirelessAudioIPC.dylib arm64 <7cbc3074d9213a9dbdee71789236d050> /usr/lib/libWirelessAudioIPC.dylib EOF
Posted
by TianYing.
Last updated
.