Sequel-Ace / Sequel-Ace

MySQL/MariaDB database management for macOS
https://sequel-ace.com
Other
6.71k stars 252 forks source link

Crash when trying to connect after the latest update #1858

Closed medgoprot closed 1 year ago

medgoprot commented 1 year ago

Is Issue Present in Latest Beta? Yes

Description After the last update whenever I try to connect with any remote or local database the app crashes.

Steps To Reproduce

  1. Try to connect to any saved database connection or using quick connect.

Expected Behaviour App opens normally.

Related Issues

Additional Context

crash_logs.txt

Jason-Morcos commented 1 year ago

I just pushed out a beta that I think may fix this - can you give it a try and let me know if it does or doesn't solve this issue? https://github.com/Sequel-Ace/Sequel-Ace/releases

medgoprot commented 1 year ago

@Jason-Morcos Unfortunately I still get a crash when trying to connect. Here's logs if they're any different:

crash_logs.txt

Jason-Morcos commented 1 year ago

@Sequel-Ace/all Is anyone able to reproduce this and identify the cause? I can't get it to crash myself, and Xcode doesn't want to symbolicate anything usefully apparently

robinkunde commented 1 year ago

I looked at the relevant Sequel Ace code as well as the mysqlclient library source. Nothing explictly jumped out at me. I also tried passing NULL to the connection method we're calling and only got it to crash when forcibly passing NULL for the connection, which isn't possible in normal operation AFAICT.

We use UTF8String and cStringUsingEncoding in a number of places. The docs for these methods say that the lifetime of the returned pointer is not guranteed, and that if you need to pass it around, to make a local copy. It sounds like it could be related, but the code in question hasn't been changed in forever. Was 4.0.9 built with a different version of Xcode?

@medgoprot Can you confirm what the latest version is that doesn't crash for you?

Jason-Morcos commented 1 year ago

@medgoprot @azagoru @polycode-nz New beta! Can you please try 4.0.10 beta 2 and see if that resolves this issue? https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/beta%2F4.0.10-20054

Jason-Morcos commented 1 year ago

I looked at the relevant Sequel Ace code as well as the mysqlclient library source. Nothing explictly jumped out at me. I also tried passing NULL to the connection method we're calling and only got it to crash when forcibly passing NULL for the connection, which isn't possible in normal operation AFAICT.

We use UTF8String and cStringUsingEncoding in a number of places. The docs for these methods say that the lifetime of the returned pointer is not guranteed, and that if you need to pass it around, to make a local copy. It sounds like it could be related, but the code in question hasn't been changed in forever. Was 4.0.9 built with a different version of Xcode?

@medgoprot Can you confirm what the latest version is that doesn't crash for you?

Somehow I missed this @robinkunde - Thank you for the investigation! I tried reverting a few of the threading changes I had tried in 4.0.9 that turned out to be unnecessary for fixing the Sonoma hang. Hoping one of those might happen to be the problem. But if not, definitely stumped. 4.0.9 was the first version built with 15 for macOS Sonoma

polycode-nz commented 1 year ago

@Jason-Morcos unfortunately no change.

Just to see when it happens I added a name in the connection panel and clicked Test connection. Results in a modal, insufficient connection details.

Entered a host of 127.0.0.1 and clicked test connection = crash.

Entering full legit details = also crash.

Jason-Morcos commented 1 year ago

Darn, thank you for testing @polycode-nz. Are you able to build the app locally and see where the crash throws in Xcode? I wonder if it's related to the PR to fix backgrounding. Which would be interesting to try reverting next - https://github.com/Sequel-Ace/Sequel-Ace/pull/1849

The only bug reports so far are coming from folks running older major versions of macOS.

Kaspik commented 1 year ago

Maybe it's time to drop old versions of macOS (older than 11.0 for example).

polycode-nz commented 1 year ago

I only recently updated! I'm on Big Sur 11.7.10 (20G1427) release September 11, 2023

GonrasK commented 1 year ago

Same here. It crashes whenever I attempt to connect to any server.

Process:               Sequel Ace [22991]
Path:                  /Applications/Sequel Ace.app/Contents/MacOS/Sequel Ace
Identifier:            com.sequel-ace.sequel-ace
Version:               4.0.9 (20052)
App Item ID:           1518036000
App External ID:       860235150
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Sequel Ace [22991]
User ID:               501

Date/Time:             2023-10-03 10:46:30.250 +0300
OS Version:            Mac OS X 10.15.7 (19H1030)
Report Version:        12

Time Awake Since Boot: 10000 seconds
Time Since Wake:       1800 seconds

System Integrity Protection: enabled

Crashed Thread:        14

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Termination Signal:    Segmentation fault: 11
Termination Reason:    Namespace SIGNAL, Code 0xb
Terminating Process:   exc handler [22991]

I can provide more stack trace if needed. Unfortunately, 4.0.10 (20054) Beta 2 didn't help. Reverted to 4.0.8 Build 20051 and it all works just fine.

medgoprot commented 1 year ago

Can you confirm what the latest version is that doesn't crash for you?

I reverted to version 4.0.8 (20051) which was working fine for me.

New beta! Can you please try 4.0.10 beta 2 and see if that resolves this issue?

Tried it, unfortunately same issue.

lovetheidea commented 1 year ago

Crashing for me too. Im on 4.0.9 | I'm on Big Sur 11.7.10 Not sure if this helps but, output commandline:

2023-10-03 13:58:21.317 Sequel Ace[99855:4372244] [AppCenterCrashes] ERROR: +[MSACWrapperExceptionManager loadWrapperExceptionWithBaseFilename:]/139 Exception data report doesn't exist on disk. File name: last_saved_wrapper_exception 2023-10-03 13:58:21.327 Sequel Ace[99855:4372244] [AppCenterCrashes] ERROR: +[MSACWrapperExceptionManager loadWrapperExceptionWithBaseFilename:]/139 Exception data report doesn't exist on disk. File name: 5B3148A3-924F-4FBC-B597-67773F1DFADD zsh: segmentation fault /Applications/Sequel\ Ace.app/Contents/MacOS/Sequel\ Ace

iblank commented 1 year ago

It's crashing for me on 4.0.9, but I'm on Catalina 10.15.7 (version locked 2013 iMac). I have reverted to 4.0.8 for now.

SanderVanLeeuwen commented 1 year ago

@medgoprot @azagoru @polycode-nz New beta! Can you please try 4.0.10 beta 2 and see if that resolves this issue? https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/beta%2F4.0.10-20054

Same for me, still crashing on Big Sur 11.7.9. Feel free to mention me to test any upcoming betas, I'd love this to be fixed :)

robinkunde commented 1 year ago

@Jason-Morcos All the crashes I'm seeing are from macOS versions 11.7 and older. I do wonder if it has something to do with building on Xcode 15. Could you create a beta of 4.0.8 using Xcode 15 and see if that crashes as well?

Jason-Morcos commented 1 year ago

Worth a try! Thie one's a funky one - but still notarized for security Sequel Ace Beta-4.0.8-xcode15.zip

Jason-Morcos commented 1 year ago

And one other thing to try too - this is the latest 4.0.10 built in Xcode 15 with a special linker flag set called ld64 AND with debugging enabled. That should ideally either not crash, or crash and tell us a better error message. In any case, still notarized for security Sequel Ace-debugging-ld64.zip

polycode-nz commented 1 year ago

@Jason-Morcos both failed with a crash. The report from the ld64 version is (long, lol):

Process: Sequel Ace [76384] Path: /private/var/folders/*/Sequel Ace.app/Contents/MacOS/Sequel Ace Identifier: com.sequel-ace.sequel-ace Version: 4.0.10 (20054) Code Type: X86-64 (Native) Parent Process: ??? [1] Responsible: Sequel Ace [76384] User ID: 501

Date/Time: 2023-10-04 19:47:01.448 +1300 OS Version: macOS 11.7.10 (20G1427) Report Version: 12 Bridge OS Version: 7.6 (20P6072) Anonymous UUID: A8EEA514-7006-428B-BC90-1C0DDD3BF04E

Sleep/Wake UUID: A437C11D-1688-4F41-82DB-E4917A6C949F

Time Awake Since Boot: 70000 seconds Time Since Wake: 140 seconds

System Integrity Protection: enabled

Notes: Translocated Process

Crashed Thread: 14

Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000 Exception Note: EXC_CORPSE_NOTIFY

Termination Signal: Segmentation fault: 11 Termination Reason: Namespace SIGNAL, Code 0xb Terminating Process: exc handler [76384]

VM Regions Near 0: --> __TEXT 10efc9000-10f409000 [ 4352K] r-x/r-x SM=COW /var/folders/*/Sequel Ace.app/Contents/MacOS/Sequel Ace

Thread 0:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x00007fff206d429a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff206d460c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff20801ebf CFRunLoopServiceMachPort + 316 3 com.apple.CoreFoundation 0x00007fff2080059f CFRunLoopRun + 1328 4 com.apple.CoreFoundation 0x00007fff207ff9ac CFRunLoopRunSpecific + 563 5 com.apple.HIToolbox 0x00007fff28a4a1f3 RunCurrentEventLoopInMode + 292 6 com.apple.HIToolbox 0x00007fff28a49f55 ReceiveNextEventCommon + 587 7 com.apple.HIToolbox 0x00007fff28a49cf3 _BlockUntilNextEventMatchingListInModeWithFilter + 70 8 com.apple.AppKit 0x00007fff23009ad2 _DPSNextEvent + 864 9 com.apple.AppKit 0x00007fff230082a5 -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1364 10 com.apple.AppKit 0x00007fff22ffa5c9 -[NSApplication run] + 586 11 com.apple.AppKit 0x00007fff22fce7cc NSApplicationMain + 816 12 libdyld.dylib 0x00007fff20724f3d start + 1

Thread 1: 0 libsystem_pthread.dylib 0x00007fff20705420 start_wqthread + 0

Thread 2: 0 libsystem_pthread.dylib 0x00007fff20705420 start_wqthread + 0

Thread 3: 0 libsystem_pthread.dylib 0x00007fff20705420 start_wqthread + 0

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

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

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

Thread 7: 0 libsystem_kernel.dylib 0x00007fff206d429a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff206d460c mach_msg + 60 2 com.sequel-ace.sequel-ace 0x000000010f341fd5 0x10efc9000 + 3641301 3 libsystem_pthread.dylib 0x00007fff207098fc _pthread_start + 224 4 libsystem_pthread.dylib 0x00007fff20705443 thread_start + 15

Thread 8:: JavaScriptCore bmalloc scavenger 0 libsystem_kernel.dylib 0x00007fff206d6cbe psynch_cvwait + 10 1 libsystem_pthread.dylib 0x00007fff20709e49 _pthread_cond_wait + 1298 2 libc++.1.dylib 0x00007fff20672d72 std::__1::condition_variable::wait(std::1::unique_lock&) + 18 3 com.apple.JavaScriptCore 0x00007fff3781e894 void std::1::condition_variable_any::wait<std::1::unique_lock >(std::1::unique_lock&) + 84 4 com.apple.JavaScriptCore 0x00007fff3782335b bmalloc::Scavenger::threadRunLoop() + 331 5 com.apple.JavaScriptCore 0x00007fff37822ee9 bmalloc::Scavenger::threadEntryPoint(bmalloc::Scavenger) + 9 6 com.apple.JavaScriptCore 0x00007fff37825a77 void std::1::thread_proxy<std::1::tuple<std::1::unique_ptr<std::1::thread_struct, std::1::default_delete >, void ()(bmalloc::Scavenger), bmalloc::Scavenger> >(void) + 39 7 libsystem_pthread.dylib 0x00007fff207098fc _pthread_start + 224 8 libsystem_pthread.dylib 0x00007fff20705443 thread_start + 15

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

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

Thread 11:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x00007fff206d429a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff206d460c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff20801ebf CFRunLoopServiceMachPort + 316 3 com.apple.CoreFoundation 0x00007fff2080059f CFRunLoopRun + 1328 4 com.apple.CoreFoundation 0x00007fff207ff9ac CFRunLoopRunSpecific + 563 5 com.apple.AppKit 0x00007fff2318fb7a _NSEventThread + 124 6 libsystem_pthread.dylib 0x00007fff207098fc _pthread_start + 224 7 libsystem_pthread.dylib 0x00007fff20705443 thread_start + 15

Thread 12:: com.apple.NSURLConnectionLoader 0 libsystem_kernel.dylib 0x00007fff206d429a mach_msg_trap + 10 1 libsystem_kernel.dylib 0x00007fff206d460c mach_msg + 60 2 com.apple.CoreFoundation 0x00007fff20801ebf CFRunLoopServiceMachPort + 316 3 com.apple.CoreFoundation 0x00007fff2080059f CFRunLoopRun + 1328 4 com.apple.CoreFoundation 0x00007fff207ff9ac CFRunLoopRunSpecific + 563 5 com.apple.CFNetwork 0x00007fff24ca9290 0x7fff24a6a000 + 2355856 6 com.apple.Foundation 0x00007fff2158b487 NSThreadstart__ + 1068 7 libsystem_pthread.dylib 0x00007fff207098fc _pthread_start + 224 8 libsystem_pthread.dylib 0x00007fff20705443 thread_start + 15

Thread 13: 0 libsystem_pthread.dylib 0x00007fff20705420 start_wqthread + 0

Thread 14 Crashed: 0 ??? 000000000000000000 0 + 0 1 com.sequel-ace.spmysql 0x000000010f5ae9e9 mysql_options4 + 329 2 com.sequel-ace.spmysql 0x000000010f5ac15c csm_begin_connect(mysql_async_connect*) + 348 3 com.sequel-ace.spmysql 0x000000010f5abf85 mysql_real_connect + 197 4 com.sequel-ace.spmysql 0x000000010f58fe2f -[SPMySQLConnection(PrivateAPI) _makeRawMySQLConnectionWithEncoding:isMasterConnection:] + 1429 5 com.sequel-ace.spmysql 0x000000010f58f615 -[SPMySQLConnection(PrivateAPI) _connect] + 310 6 com.sequel-ace.sequel-ace 0x000000010f0db0f5 0x10efc9000 + 1122549 7 com.sequel-ace.sequel-ace 0x000000010f19aabe 0x10efc9000 + 1907390 8 com.apple.Foundation 0x00007fff2158b487 NSThreadstart__ + 1068 9 libsystem_pthread.dylib 0x00007fff207098fc _pthread_start + 224 10 libsystem_pthread.dylib 0x00007fff20705443 thread_start + 15

Thread 14 crashed with X86 Thread State (64-bit): rax: 0x0000000000000016 rbx: 0x00006000039b58c0 rcx: 0x0000000000000001 rdx: 0x000000010f97bcec rdi: 0x0000000000000038 rsi: 0x00007fff206b6860 rbp: 0x00007000083f57e0 rsp: 0x00007000083f5738 r8: 0x0000600000bac7a8 r9: 0x0000000000000d22 r10: 0x000000010f9902a2 r11: 0x000000010f58f35d r12: 0x0000000000000000 r13: 0x00007000083f5799 r14: 0x0000000000000016 r15: 0x00007faff000a000 rip: 0x0000000000000000 rfl: 0x0000000000010246 cr2: 0x0000000000000000

Logical CPU: 0 Error Code: 0x00000014 (no mapping for user instruction read) Trap Number: 14

Thread 14 instruction stream not available.

Thread 14 last branch register state not available.

Binary Images: 0x10efc9000 - 0x10f408fff +com.sequel-ace.sequel-ace (4.0.10 - 20054) <89987CFB-14A5-32C0-BE03-35C1C2994ED0> /var/folders//Sequel Ace.app/Contents/MacOS/Sequel Ace 0x10f550000 - 0x10f55ffff +com.sequel-ace.net.wafflesoftware.ShortcutRecorder.framework.Leopard (1.0) /var/folders//Sequel Ace.app/Contents/Frameworks/ShortcutRecorder.framework/Versions/A/ShortcutRecorder 0x10f576000 - 0x10f57dfff +com.sequel-ace.querykit (4.0.10 - 20054) <5309BC3C-09B8-3DE6-B27E-1B27819AB569> /var/folders//Sequel Ace.app/Contents/Frameworks/QueryKit.framework/Versions/A/QueryKit 0x10f58c000 - 0x10f983fff +com.sequel-ace.spmysql (4.0.10 - 20054) <55DEF2F2-D0FF-3B5F-84AA-03FFD65FED01> /var/folders//Sequel Ace.app/Contents/Frameworks/SPMySQL.framework/Versions/A/SPMySQL 0x10fce4000 - 0x10fd27fff +libswift_Concurrency.dylib (5.5.2 - 5.7.2.135.5) <0B6348B2-CDC4-3BB2-9B89-64CF509321B8> /var/folders//Sequel Ace.app/Contents/Frameworks/libswift_Concurrency.dylib 0x10fd77000 - 0x10ff62fff +libcrypto.1.1.dylib (0) <40B6EEB9-206B-311D-880F-16656CAA1528> /var/folders//Sequel Ace.app/Contents/Frameworks/SPMySQL.framework/Versions/A/libcrypto.1.1.dylib 0x110004000 - 0x110063fff +libssl.1.1.dylib (0) /var/folders/*/Sequel Ace.app/Contents/Frameworks/SPMySQL.framework/Versions/A/libssl.1.1.dylib 0x1131bb000 - 0x1131cafff libobjc-trampolines.dylib (824.1) /usr/lib/libobjc-trampolines.dylib 0x118a54000 - 0x118ef3fff com.apple.AMDRadeonX6000MTLDriver (4.6.21 - 4.0.6) <553A8FD6-632E-3852-B000-EFB3F9A53D34> /System/Library/Extensions/AMDRadeonX6000MTLDriver.bundle/Contents/MacOS/AMDRadeonX6000MTLDriver 0x11bcfc000 - 0x11bd97fff dyld (852.2) /usr/lib/dyld 0x7fff20441000 - 0x7fff20442fff libsystem_blocks.dylib (79) /usr/lib/system/libsystem_blocks.dylib 0x7fff20443000 - 0x7fff20478fff libxpc.dylib (2038.120.1.701.2) <151C64CA-CA6F-3989-A558-796EB6ED0C11> /usr/lib/system/libxpc.dylib 0x7fff20479000 - 0x7fff20490fff libsystem_trace.dylib (1277.120.1) <1F20357C-395F-3095-B525-AD9403290A92> /usr/lib/system/libsystem_trace.dylib 0x7fff20491000 - 0x7fff2052efff libcorecrypto.dylib (1000.140.4) /usr/lib/system/libcorecrypto.dylib 0x7fff2052f000 - 0x7fff2055bfff libsystem_malloc.dylib (317.140.5) <3AB4C7E9-C49C-3EB7-9370-370F3F655024> /usr/lib/system/libsystem_malloc.dylib 0x7fff2055c000 - 0x7fff205a0fff libdispatch.dylib (1271.120.2) <5D824C33-C5E2-38A8-BD00-D934443DBDAB> /usr/lib/system/libdispatch.dylib 0x7fff205a1000 - 0x7fff205dafff libobjc.A.dylib (824.1) /usr/lib/libobjc.A.dylib 0x7fff205db000 - 0x7fff205ddfff libsystem_featureflags.dylib (28.60.1) <2BAC8770-AFC8-3FE2-B6C6-27CE44B2B2BA> /usr/lib/system/libsystem_featureflags.dylib 0x7fff205de000 - 0x7fff20666fff libsystem_c.dylib (1439.141.1) /usr/lib/system/libsystem_c.dylib 0x7fff20667000 - 0x7fff206bcfff libc++.1.dylib (905.6) <5BA6B5ED-7842-3B13-86B0-00EB511CE2FE> /usr/lib/libc++.1.dylib 0x7fff206bd000 - 0x7fff206d2fff libc++abi.dylib (905.6) /usr/lib/libc++abi.dylib 0x7fff206d3000 - 0x7fff20702fff libsystem_kernel.dylib (7195.141.49.702.12) /usr/lib/system/libsystem_kernel.dylib 0x7fff20703000 - 0x7fff2070efff libsystem_pthread.dylib (454.120.2.700.1) <409239A7-2E4E-31C7-87EB-EE50B7981204> /usr/lib/system/libsystem_pthread.dylib 0x7fff2070f000 - 0x7fff2074afff libdyld.dylib (852.2) /usr/lib/system/libdyld.dylib 0x7fff2074b000 - 0x7fff20754fff libsystem_platform.dylib (254.80.2) <52A77346-8AA5-3BB7-906D-C7503B491CF9> /usr/lib/system/libsystem_platform.dylib 0x7fff20755000 - 0x7fff20780fff libsystem_info.dylib (542.40.4) <406353B2-E48A-3D20-B08F-0AB26ED8A0B3> /usr/lib/system/libsystem_info.dylib 0x7fff20781000 - 0x7fff20c1efff com.apple.CoreFoundation (6.9 - 1778.105) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x7fff20c1f000 - 0x7fff20e56fff com.apple.LaunchServices (1122.45 - 1122.45) <42ED2E08-904B-3B62-B0B6-DACBE4988AAB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices 0x7fff20e57000 - 0x7fff20f2bfff com.apple.gpusw.MetalTools (1.0 - 1) <72285C8A-5F98-31A0-9CA1-30CF4387584B> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools 0x7fff20f2c000 - 0x7fff21188fff libBLAS.dylib (1336.140.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib 0x7fff21189000 - 0x7fff211d6fff com.apple.Lexicon-framework (1.0 - 86.2) <09EC8AE4-7FC7-3D2D-A6DD-C484B664B1D5> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon 0x7fff211d7000 - 0x7fff21245fff libSparse.dylib (106) <0FD77742-B7DB-3296-9D0F-0DEF7EB4FF7D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib 0x7fff21246000 - 0x7fff212c3fff com.apple.SystemConfiguration (1.20 - 1.20) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration 0x7fff212c4000 - 0x7fff212f8fff libCRFSuite.dylib (50) <2DADF4F9-0BD3-33CF-9939-979E69F2453C> /usr/lib/libCRFSuite.dylib 0x7fff212f9000 - 0x7fff21531fff libmecabra.dylib (929.10) <58AA4922-A668-3165-802C-5FB4DF848E40> /usr/lib/libmecabra.dylib 0x7fff21532000 - 0x7fff21890fff com.apple.Foundation (6.9 - 1778.105) <4F4709DD-C198-3AA1-86A0-71D2F2FDD65D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation 0x7fff21891000 - 0x7fff21979fff com.apple.LanguageModeling (1.0 - 247.3) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 0x7fff2197a000 - 0x7fff21ab0fff com.apple.CoreDisplay (237.4 - 237.4) /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay 0x7fff21ab1000 - 0x7fff21d21fff com.apple.audio.AudioToolboxCore (1.0 - 1181.72.5) <541A108B-D52C-3F7B-B004-F31E16243BAF> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/Versions/A/AudioToolboxCore 0x7fff21d22000 - 0x7fff21f07fff com.apple.CoreText (677.6.0.4 - 677.6.0.4) <1E81E372-02B3-3E9C-BB48-33DC80E49158> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText 0x7fff21f08000 - 0x7fff22599fff com.apple.audio.CoreAudio (5.0 - 5.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 0x7fff2259a000 - 0x7fff228f1fff com.apple.security (7.0 - 59754.141.1.702.3) <5A52B8E8-B1AF-3F29-AC97-5DBEE8C6A6AC> /System/Library/Frameworks/Security.framework/Versions/A/Security 0x7fff228f2000 - 0x7fff22b51fff libicucore.A.dylib (66112.1) <9F2A881A-25DA-3386-9DCE-D2B67C2A4141> /usr/lib/libicucore.A.dylib 0x7fff22b52000 - 0x7fff22b5bfff libsystem_darwin.dylib (1439.141.1) <75592BEC-777B-381F-8C07-15B8A4C712A7> /usr/lib/system/libsystem_darwin.dylib 0x7fff22b5c000 - 0x7fff22e47fff com.apple.CoreServices.CarbonCore (1307.3 - 1307.3) <76566083-9F9C-3055-812A-079693A69D32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore 0x7fff22e48000 - 0x7fff22e86fff com.apple.CoreServicesInternal (476.1.1 - 476.1.1) <66BDFBFC-32CC-3015-B7B7-A44800B7C864> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal 0x7fff22e87000 - 0x7fff22ec1fff com.apple.CSStore (1122.45 - 1122.45) <65919E05-BE7E-39AC-8768-B32E41E325C0> /System/Library/PrivateFrameworks/CoreServicesStore.framework/Versions/A/CoreServicesStore 0x7fff22ec2000 - 0x7fff22f70fff com.apple.framework.IOKit (2.0.2 - 1845.120.6) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit 0x7fff22f71000 - 0x7fff22f7cfff libsystem_notify.dylib (279.40.4) <02E22D9D-01E2-361C-BB9A-B5BE18D28280> /usr/lib/system/libsystem_notify.dylib 0x7fff22f7d000 - 0x7fff22fcafff libsandbox.1.dylib (1441.141.13.701.2) <2ABD4C26-BAB5-3E5E-AC6A-57D8B8808707> /usr/lib/libsandbox.1.dylib 0x7fff22fcb000 - 0x7fff23d16fff com.apple.AppKit (6.9 - 2022.70.111) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x7fff23d17000 - 0x7fff23f65fff com.apple.UIFoundation (1.0 - 729) <55B6D90D-A0ED-38D7-B858-1068A31C1C09> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation 0x7fff23f66000 - 0x7fff23f78fff com.apple.UniformTypeIdentifiers (637 - 637) /System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/UniformTypeIdentifiers 0x7fff23f79000 - 0x7fff24103fff com.apple.desktopservices (1.21 - 1346.6.1) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv 0x7fff24117000 - 0x7fff24325fff com.apple.CoreDuet (1.0 - 1) <102D2F72-2F9C-38F5-80E1-49C201300A5F> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet 0x7fff24326000 - 0x7fff243e2fff libboringssl.dylib (351.140.2) <405250D5-AA04-3E3A-A1CE-B8A9C321542D> /usr/lib/libboringssl.dylib 0x7fff243e3000 - 0x7fff24a69fff libnetwork.dylib (2288.140.9) <2DE517EE-E318-366B-A7FA-AD5F62D007CB> /usr/lib/libnetwork.dylib 0x7fff24a6a000 - 0x7fff24f07fff com.apple.CFNetwork (1240.0.4.5 - 1240.0.4.5) <83B8DEAA-82EE-36DD-ADF8-45E8A807BC21> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork 0x7fff24f08000 - 0x7fff24f16fff libsystem_networkextension.dylib (1295.140.4.701.1) <9C5A85AC-C593-34FD-8481-5CFC05DE3897> /usr/lib/system/libsystem_networkextension.dylib 0x7fff24f17000 - 0x7fff24f17fff libenergytrace.dylib (22.100.1) /usr/lib/libenergytrace.dylib 0x7fff24f18000 - 0x7fff24f74fff libMobileGestalt.dylib (978.140.1) /usr/lib/libMobileGestalt.dylib 0x7fff24f75000 - 0x7fff24f8bfff libsystem_asl.dylib (385.0.2) <88F4051D-1CF5-314E-A952-247C38996E16> /usr/lib/system/libsystem_asl.dylib 0x7fff24f8c000 - 0x7fff24fa4fff com.apple.TCC (1.0 - 1) <898C8BE6-EBC0-3BEB-B898-2EF336802530> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 0x7fff24fa5000 - 0x7fff2530afff com.apple.SkyLight (1.600.0 - 588.11) <370EFABF-8439-32C8-9136-0CB058CEE1A1> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight 0x7fff2530b000 - 0x7fff25994fff com.apple.CoreGraphics (2.0 - 1463.19.1) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics 0x7fff25995000 - 0x7fff25a8cfff com.apple.ColorSync (4.13.0 - 3473.8.1) /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync 0x7fff25a8d000 - 0x7fff25ae8fff com.apple.HIServices (1.22 - 716) <76A6ECCF-9098-3A1F-A80B-40408A9AA4A5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices 0x7fff25ae9000 - 0x7fff25b27fff libAWDSupport.dylib (951) <758C0463-6323-3B76-9D92-37C26C4178A9> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupport.dylib 0x7fff25b28000 - 0x7fff25b84fff libprotobuf.dylib (4205) /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib 0x7fff25b85000 - 0x7fff25b96fff libprotobuf-lite.dylib (4205) <77BFA379-7758-3628-8107-5074868900CD> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib 0x7fff25b97000 - 0x7fff25bdbfff com.apple.awd (1.0 - 951) <210CC356-8739-37DD-8255-09E127CDECAC> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics 0x7fff25bdc000 - 0x7fff25d9cfff com.apple.Montreal (1.0 - 142) <71C7DCBC-9BF6-33C7-A61A-F9D78010FCDB> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal 0x7fff25e8f000 - 0x7fff262aefff com.apple.CoreData (120 - 1048) <6D7D0B7E-7646-3F79-8108-0C1D11821749> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData 0x7fff262af000 - 0x7fff262c4fff com.apple.ProtocolBuffer (1 - 285.24.10.20.1) <6EC4B8BC-C44A-3211-A0B5-A7298518231B> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer 0x7fff262c5000 - 0x7fff26479fff libsqlite3.dylib (321.4) <2CBF5CD2-BECF-331B-904C-A88A54C6F6ED> /usr/lib/libsqlite3.dylib 0x7fff2647a000 - 0x7fff264f6fff com.apple.Accounts (113 - 113) <1021C0F9-F834-33DB-A66D-EE4391C58740> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts 0x7fff264f7000 - 0x7fff2650efff com.apple.commonutilities (8.0 - 900) <4D28711F-3425-31EB-A9D5-3FA489461EA3> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities 0x7fff2650f000 - 0x7fff2658efff com.apple.BaseBoard (526 - 526) <8ABD1C28-584C-33E7-8BE8-4EFC5EEF1575> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard 0x7fff2658f000 - 0x7fff265d7fff com.apple.RunningBoardServices (1.0 - 505.100.9) /System/Library/PrivateFrameworks/RunningBoardServices.framework/Versions/A/RunningBoardServices 0x7fff265d8000 - 0x7fff2664cfff com.apple.AE (918.6 - 918.6) <677BFC57-B830-3090-9470-A21CB2A77C76> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE 0x7fff2664d000 - 0x7fff26653fff libdns_services.dylib (1310.140.1) /usr/lib/libdns_services.dylib 0x7fff26654000 - 0x7fff2665bfff libsystem_symptoms.dylib (1431.140.1) /usr/lib/system/libsystem_symptoms.dylib 0x7fff2665c000 - 0x7fff267e7fff com.apple.Network (1.0 - 1) <6A3C9CBC-DE8E-3D0A-BA52-316E70255DCD> /System/Library/Frameworks/Network.framework/Versions/A/Network 0x7fff267e8000 - 0x7fff26817fff com.apple.analyticsd (1.0 - 1) <23CB7B45-967B-37B3-AF21-21B4885790CC> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics 0x7fff26818000 - 0x7fff2681afff libDiagnosticMessagesClient.dylib (112) <8CE0D64A-597F-3048-80C3-590D866D067A> /usr/lib/libDiagnosticMessagesClient.dylib 0x7fff2681b000 - 0x7fff26867fff com.apple.spotlight.metadata.utilities (1.0 - 2150.30) <9B61E5D5-27C3-3282-A650-A2D15FA76FF7> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities 0x7fff26868000 - 0x7fff26902fff com.apple.Metadata (10.7.0 - 2150.30) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata 0x7fff26903000 - 0x7fff26909fff com.apple.DiskArbitration (2.7 - 2.7) <21325211-A5F7-3AB9-BDFE-6B6DC06E587E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration 0x7fff2690a000 - 0x7fff26f71fff com.apple.vImage (8.1 - 544.6) <1DD123D7-ACC3-3FCB-838E-C91C6E4D31B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage 0x7fff26f72000 - 0x7fff2724ffff com.apple.QuartzCore (1.11 - 927.24) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore 0x7fff27250000 - 0x7fff27291fff libFontRegistry.dylib (309.0.0.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib 0x7fff27292000 - 0x7fff273d2fff com.apple.coreui (2.1 - 692.1) <0E2AE064-FD25-31B4-97EC-BA0AC0C16169> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI 0x7fff273d3000 - 0x7fff274befff com.apple.ViewBridge (553.1 - 553.1) /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge 0x7fff274bf000 - 0x7fff274cafff com.apple.PerformanceAnalysis (1.278.3 - 278.3) <24DDF51B-8405-30AF-9879-5172C325BF0C> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis 0x7fff274cb000 - 0x7fff274dafff com.apple.OpenDirectory (11.7 - 230.40.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory 0x7fff274db000 - 0x7fff274fafff com.apple.CFOpenDirectory (11.7 - 230.40.1) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory 0x7fff274fb000 - 0x7fff27507fff com.apple.CoreServices.FSEvents (1290.120.6 - 1290.120.6) <78184C84-4633-3867-AACD-8F0256F40D5A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents 0x7fff27508000 - 0x7fff2752cfff com.apple.coreservices.SharedFileList (144 - 144) <243CAB7D-EA1A-3322-9833-B4B24F63AB3E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList 0x7fff2752d000 - 0x7fff2752ffff libapp_launch_measurement.dylib (14.1) <2AE731D8-757E-3A23-8375-9D266B762CC3> /usr/lib/libapp_launch_measurement.dylib 0x7fff27530000 - 0x7fff27577fff com.apple.CoreAutoLayout (1.0 - 21.10.1) <32846C89-8FED-3225-B370-34FB1DA82A85> /System/Library/PrivateFrameworks/CoreAutoLayout.framework/Versions/A/CoreAutoLayout 0x7fff27578000 - 0x7fff2765afff libxml2.2.dylib (34.26) <29CE75F5-D4D3-35BD-9B89-3B8970980C55> /usr/lib/libxml2.2.dylib 0x7fff2765b000 - 0x7fff276a8fff com.apple.CoreVideo (1.8 - 0.0) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo 0x7fff276a9000 - 0x7fff276abfff com.apple.loginsupport (1.0 - 1) /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport 0x7fff276ac000 - 0x7fff276d3fff com.apple.aps.framework (4.0 - 4.0) /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService 0x7fff276d4000 - 0x7fff276effff com.apple.UserManagement (1.0 - 1) /System/Library/PrivateFrameworks/UserManagement.framework/Versions/A/UserManagement 0x7fff276f0000 - 0x7fff27881fff com.apple.cloudkit.CloudKit (990 - 990) <732C028A-288F-3DCB-AE2A-591E60F0D5C8> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit 0x7fff27904000 - 0x7fff27c93fff com.apple.CoreML (1.0 - 1) <923DFBD2-EF2B-3B39-9E10-4A4070EBA2EC> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML 0x7fff27c94000 - 0x7fff285e5fff libwebrtc.dylib (7611.3.10.1.19) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib 0x7fff285e6000 - 0x7fff28662fff com.apple.corelocation (2420.19.23 - 2420.19.23) <958D7B80-9E0B-31A4-A5ED-DCB20F4A571C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation 0x7fff28663000 - 0x7fff28673fff libsystem_containermanager.dylib (318.100.4.700.1) <45445167-AFC7-3406-A858-9AE8D8F45907> /usr/lib/system/libsystem_containermanager.dylib 0x7fff28674000 - 0x7fff28685fff com.apple.IOSurface (290.8.2 - 290.8.2) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface 0x7fff28686000 - 0x7fff2868ffff com.apple.IOAccelerator (442.10 - 442.10) <19FBA808-F918-3BB2-BE78-A1B0D10D724D> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator 0x7fff28690000 - 0x7fff287b3fff com.apple.Metal (244.303 - 244.303) /System/Library/Frameworks/Metal.framework/Versions/A/Metal 0x7fff287b4000 - 0x7fff287d0fff com.apple.audio.caulk (1.0 - 70) /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x7fff287d1000 - 0x7fff288bbfff com.apple.CoreMedia (1.0 - 2780.10.4.1.1) <237F9A0B-FE1F-3E4D-BE4D-8E27989EA845> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia 0x7fff288bc000 - 0x7fff28a18fff libFontParser.dylib (305.6.0.6) /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib 0x7fff28a19000 - 0x7fff28d14fff com.apple.HIToolbox (2.1.1 - 1062) <621A473B-BE8A-3381-970A-25F253BE208A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox 0x7fff28d15000 - 0x7fff28d28fff com.apple.framework.DFRFoundation (1.0 - 267) /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation 0x7fff28d29000 - 0x7fff28d2cfff com.apple.dt.XCTTargetBootstrap (1.0 - 18119.2) <41D5117E-E262-3638-B01E-494487E7DB39> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap 0x7fff28d2d000 - 0x7fff28d56fff com.apple.CoreSVG (1.0 - 149) <6215F1BD-17B3-3B6E-8FB1-3C0AD5AD3C26> /System/Library/PrivateFrameworks/CoreSVG.framework/Versions/A/CoreSVG 0x7fff28d57000 - 0x7fff28f94fff com.apple.ImageIO (3.3.0 - 2130.16.2) <15C8679A-DFE6-3664-977F-A82A97FD59C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO 0x7fff28f95000 - 0x7fff29310fff com.apple.CoreImage (16.3.0 - 1140.2) <3C2DE86C-89FA-3EC1-ACFE-6BE95F54B123> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage 0x7fff29311000 - 0x7fff29377fff com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <02F2E0C6-0C0F-3390-A63B-189832967015> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/MPSCore 0x7fff29378000 - 0x7fff2937bfff libsystem_configuration.dylib (1109.140.1) <53B71513-3009-3A8C-A5AA-9C15DD0AB54E> /usr/lib/system/libsystem_configuration.dylib 0x7fff2937c000 - 0x7fff29380fff libsystem_sandbox.dylib (1441.141.13.701.2) <1E19BC49-484C-32BB-8BB7-99D41C63F86E> /usr/lib/system/libsystem_sandbox.dylib 0x7fff29381000 - 0x7fff29382fff com.apple.AggregateDictionary (1.0 - 1) /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary 0x7fff29383000 - 0x7fff29386fff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <15CBB967-FAAE-3A22-A87F-4833A9D835E3> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo 0x7fff29387000 - 0x7fff29388fff liblangid.dylib (136) /usr/lib/liblangid.dylib 0x7fff29389000 - 0x7fff2942dfff com.apple.CoreNLP (1.0 - 245.2) /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP 0x7fff2942e000 - 0x7fff29434fff com.apple.LinguisticData (1.0 - 399) /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData 0x7fff29435000 - 0x7fff29addfff libBNNS.dylib (288.100.5) <1E45AC70-6C75-3F27-9252-40DF6B2D674A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib 0x7fff29ade000 - 0x7fff29cb0fff libvDSP.dylib (760.100.3) <7F1276C0-C9F6-3C6F-A0F7-1EB4EA666BD8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib 0x7fff29cb1000 - 0x7fff29cc2fff com.apple.CoreEmoji (1.0 - 128.4) <011AA15B-6988-3F36-81A3-2B52B561D6E0> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji 0x7fff29cc3000 - 0x7fff29ccdfff com.apple.IOMobileFramebuffer (343.0.0 - 343.0.0) <28991DA2-1726-3F77-A9C5-4BB5AAEFA166> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/Versions/A/IOMobileFramebuffer 0x7fff29cce000 - 0x7fff29da0fff com.apple.framework.CoreWLAN (16.0 - 1657) /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN 0x7fff29da1000 - 0x7fff29fa2fff com.apple.CoreUtils (6.6 - 660.37) /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils 0x7fff29fa3000 - 0x7fff29fc5fff com.apple.MobileKeyBag (2.0 - 1.0) <104A49DA-4F43-3D53-B537-F28E10F0C4E4> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag 0x7fff29fc6000 - 0x7fff29fd6fff com.apple.AssertionServices (1.0 - 505.100.9) <1B805E53-D42F-3019-88F0-64D3BD287DDB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices 0x7fff29fd7000 - 0x7fff2a062fff com.apple.securityfoundation (6.0 - 55240.40.4) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation 0x7fff2a063000 - 0x7fff2a06cfff com.apple.coreservices.BackgroundTaskManagement (1.0 - 104) <8CF5B495-3026-3CE1-9EFC-8D7D71380A43> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement 0x7fff2a06d000 - 0x7fff2a071fff com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 0x7fff2a072000 - 0x7fff2a074fff libquarantine.dylib (119.40.4) <21C63859-6DFB-3463-9ADF-BB44FB28067C> /usr/lib/system/libquarantine.dylib 0x7fff2a075000 - 0x7fff2a080fff libCheckFix.dylib (31) <1C2B822D-29D6-36E2-BBA3-F72DE49E038B> /usr/lib/libCheckFix.dylib 0x7fff2a081000 - 0x7fff2a098fff libcoretls.dylib (169.100.1) /usr/lib/libcoretls.dylib 0x7fff2a099000 - 0x7fff2a0a9fff libbsm.0.dylib (68.40.1) <0CF67F8A-268D-320A-A3A4-D7C2D9AB8027> /usr/lib/libbsm.0.dylib 0x7fff2a0aa000 - 0x7fff2a0f3fff libmecab.dylib (929.10) <47A982DF-1436-366E-AC45-1DA068832AED> /usr/lib/libmecab.dylib 0x7fff2a0f4000 - 0x7fff2a0f9fff libgermantok.dylib (24) <189F508A-723B-345D-918F-178CF15077F3> /usr/lib/libgermantok.dylib 0x7fff2a0fa000 - 0x7fff2a10ffff libLinearAlgebra.dylib (1336.140.1) <27358E5F-256F-309F-AAC8-BAC4A56C7BF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib 0x7fff2a110000 - 0x7fff2a32efff com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork 0x7fff2a32f000 - 0x7fff2a37efff com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <3993AC67-62B4-3E49-B5BF-E8F814CE6C97> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector 0x7fff2a37f000 - 0x7fff2a4e0fff com.apple.MLCompute (1.0 - 1) <6026D664-0453-321F-81FE-A40AD902849E> /System/Library/Frameworks/MLCompute.framework/Versions/A/MLCompute 0x7fff2a4e1000 - 0x7fff2a517fff com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix 0x7fff2a518000 - 0x7fff2a56efff com.apple.MetalPerformanceShaders.MPSNDArray (1.0 - 1) /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/MPSNDArray 0x7fff2a56f000 - 0x7fff2a5fffff com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <0B333F06-FAD5-3689-9017-15334AD4F51C> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/MPSImage 0x7fff2a600000 - 0x7fff2a60ffff com.apple.AppleFSCompression (125 - 1.0) <1C5279EE-8F78-386E-9E4D-24A3785CACA2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression 0x7fff2a610000 - 0x7fff2a61cfff libbz2.1.0.dylib (44) <6E82D414-3810-36CF-94FF-B1BDF48DB501> /usr/lib/libbz2.1.0.dylib 0x7fff2a61d000 - 0x7fff2a621fff libsystem_coreservices.dylib (127.1) <6D84FA08-CB2B-34E1-9AB4-A54E82CB9161> /usr/lib/system/libsystem_coreservices.dylib 0x7fff2a622000 - 0x7fff2a64ffff com.apple.CoreServices.OSServices (1122.45 - 1122.45) <097586DB-22C5-323A-BC5C-5AF75613846D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices 0x7fff2a650000 - 0x7fff2a77ffff com.apple.AuthKit (1.0 - 1) /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit 0x7fff2a81e000 - 0x7fff2a830fff libz.1.dylib (76.140.1) /usr/lib/libz.1.dylib 0x7fff2a831000 - 0x7fff2a878fff libsystem_m.dylib (3186.100.3) <1836B380-C579-3195-BC3F-77404D432186> /usr/lib/system/libsystem_m.dylib 0x7fff2a879000 - 0x7fff2a879fff libcharset.1.dylib (59) <3A46C22D-E678-356B-9BAD-6E837704D662> /usr/lib/libcharset.1.dylib 0x7fff2a87a000 - 0x7fff2a87ffff libmacho.dylib (980) /usr/lib/system/libmacho.dylib 0x7fff2a880000 - 0x7fff2a89bfff libkxld.dylib (7195.141.49.702.12) <6585C769-FACC-3E47-844B-C7011292F3C5> /usr/lib/system/libkxld.dylib 0x7fff2a89c000 - 0x7fff2a8a7fff libcommonCrypto.dylib (60178.120.3) /usr/lib/system/libcommonCrypto.dylib 0x7fff2a8a8000 - 0x7fff2a8b2fff libunwind.dylib (201) <9D6A6228-8DC3-3521-B458-4EDE4A9F5E65> /usr/lib/system/libunwind.dylib 0x7fff2a8b3000 - 0x7fff2a8bafff liboah.dylib (203.58) /usr/lib/liboah.dylib 0x7fff2a8bb000 - 0x7fff2a8c5fff libcopyfile.dylib (173.40.2) /usr/lib/system/libcopyfile.dylib 0x7fff2a8c6000 - 0x7fff2a8cdfff libcompiler_rt.dylib (102.2) /usr/lib/system/libcompiler_rt.dylib 0x7fff2a8ce000 - 0x7fff2a8d0fff libsystem_collections.dylib (1439.141.1) <21F2EF42-56ED-3E0F-9C29-94E0888DC52C> /usr/lib/system/libsystem_collections.dylib 0x7fff2a8d1000 - 0x7fff2a8d3fff libsystem_secinit.dylib (87.60.1) /usr/lib/system/libsystem_secinit.dylib 0x7fff2a8d4000 - 0x7fff2a8d6fff libremovefile.dylib (49.120.1) <5AC9F8EC-F0E8-3D8A-ADB5-96B5FB581896> /usr/lib/system/libremovefile.dylib 0x7fff2a8d7000 - 0x7fff2a8d7fff libkeymgr.dylib (31) <9FBE08F6-0679-3976-AFDC-1EAF40C3958F> /usr/lib/system/libkeymgr.dylib 0x7fff2a8d8000 - 0x7fff2a8dffff libsystem_dnssd.dylib (1310.140.1) <8C4D6C93-285F-3587-A986-5BB96A1C664F> /usr/lib/system/libsystem_dnssd.dylib 0x7fff2a8e0000 - 0x7fff2a8e5fff libcache.dylib (83) <56DCEFF5-111E-32FD-B4E9-E148507C4FEC> /usr/lib/system/libcache.dylib 0x7fff2a8e6000 - 0x7fff2a8e7fff libSystem.B.dylib (1292.120.1) /usr/lib/libSystem.B.dylib 0x7fff2a8e8000 - 0x7fff2a8ebfff libfakelink.dylib (3) <6002BC93-3627-366E-8D21-A552D56CB215> /usr/lib/libfakelink.dylib 0x7fff2a8ec000 - 0x7fff2a8ecfff com.apple.SoftLinking (1.0 - 1) <3D0CEDFD-B263-39CA-8B31-E0A498D05EB3> /System/Library/PrivateFrameworks/SoftLinking.framework/Versions/A/SoftLinking 0x7fff2a8ed000 - 0x7fff2a924fff libpcap.A.dylib (98.100.3) <236EE73F-6D38-38E0-9BC0-B427DEB7F9FD> /usr/lib/libpcap.A.dylib 0x7fff2a925000 - 0x7fff2aa15fff libiconv.2.dylib (59) /usr/lib/libiconv.2.dylib 0x7fff2aa16000 - 0x7fff2aa27fff libcmph.dylib (8) <83A69507-07D1-387F-9D06-1011E7909EAC> /usr/lib/libcmph.dylib 0x7fff2aa28000 - 0x7fff2aa99fff libarchive.2.dylib (83.100.2) <45B577F5-0064-3E73-89B8-BE4A121B214F> /usr/lib/libarchive.2.dylib 0x7fff2aa9a000 - 0x7fff2ab01fff com.apple.SearchKit (1.4.1 - 1.4.1) <7C264603-379D-38BF-A3EC-49C01059C5E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit 0x7fff2ab02000 - 0x7fff2ab03fff libThaiTokenizer.dylib (3) /usr/lib/libThaiTokenizer.dylib 0x7fff2ab04000 - 0x7fff2ab26fff com.apple.applesauce (1.0 - 16.28) /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce 0x7fff2ab27000 - 0x7fff2ab3efff libapple_nghttp2.dylib (1.41) /usr/lib/libapple_nghttp2.dylib 0x7fff2ab3f000 - 0x7fff2ab55fff libSparseBLAS.dylib (1336.140.1) <7D926256-F187-33CA-87D6-74F1660C438A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib 0x7fff2ab56000 - 0x7fff2ab57fff com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <9BFE310E-E910-3228-BDF5-21A7C4468D89> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders 0x7fff2ab58000 - 0x7fff2ab5dfff libpam.2.dylib (28.40.1.700.1) <564320AF-69E5-3FEE-BE3A-E500B9B6786F> /usr/lib/libpam.2.dylib 0x7fff2ab5e000 - 0x7fff2ab7dfff libcompression.dylib (96.120.1) /usr/lib/libcompression.dylib 0x7fff2ab7e000 - 0x7fff2ab83fff libQuadrature.dylib (7) <256CB21E-2878-3F22-B4B5-E1FB60D64C9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib 0x7fff2ab84000 - 0x7fff2af21fff libLAPACK.dylib (1336.140.1) <02F2D4D1-8763-32D1-B5F9-9DD439EFC8E8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib 0x7fff2af22000 - 0x7fff2af71fff com.apple.DictionaryServices (1.2 - 341) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices 0x7fff2af72000 - 0x7fff2af8afff liblzma.5.dylib (16) <455C9083-014D-3037-AC54-1395F3796734> /usr/lib/liblzma.5.dylib 0x7fff2af8b000 - 0x7fff2af8cfff libcoretls_cfhelpers.dylib (169.100.1) <6760D250-2628-3DA2-A8A4-6F438E09527A> /usr/lib/libcoretls_cfhelpers.dylib 0x7fff2af8d000 - 0x7fff2b088fff com.apple.APFS (1677.141.3 - 1677.141.3) /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS 0x7fff2b089000 - 0x7fff2b097fff libxar.1.dylib (452.140.1) <9E460111-1BBC-31FE-8CAF-FA8AEC22C1E9> /usr/lib/libxar.1.dylib 0x7fff2b098000 - 0x7fff2b09bfff libutil.dylib (58.40.3) /usr/lib/libutil.dylib 0x7fff2b09c000 - 0x7fff2b0c4fff libxslt.1.dylib (17.10) <52B300FD-B3F6-3689-9554-98B543A298C7> /usr/lib/libxslt.1.dylib 0x7fff2b0c5000 - 0x7fff2b0cffff libChineseTokenizer.dylib (37.1) <62BC78D3-1400-3366-A04E-C8BEE6AC00B5> /usr/lib/libChineseTokenizer.dylib 0x7fff2b0d0000 - 0x7fff2b18dfff libvMisc.dylib (760.100.3) <560739C2-D16B-36CA-89F4-BD4DD2192333> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib 0x7fff2b18e000 - 0x7fff2b225fff libate.dylib (3.0.6) /usr/lib/libate.dylib 0x7fff2b226000 - 0x7fff2b22dfff libIOReport.dylib (64.100.1) <0997845A-1FF3-35B3-A5ED-2FB16D07F624> /usr/lib/libIOReport.dylib 0x7fff2b22e000 - 0x7fff2b241fff com.apple.CrashReporterSupport (10.13 - 15053.1) <146251D8-7623-3944-86B2-36EE47BD982E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport 0x7fff2b242000 - 0x7fff2b258fff com.apple.AppSSOCore (1.0 - 1) <1D69DD90-FA97-353C-8FB2-D94A83FE4E4E> /System/Library/PrivateFrameworks/AppSSOCore.framework/Versions/A/AppSSOCore 0x7fff2b259000 - 0x7fff2b2d6fff com.apple.CVNLP (1.0 - 119) <145E0A48-7B27-33C4-9091-BBEF5BFC6571> /System/Library/PrivateFrameworks/CVNLP.framework/Versions/A/CVNLP 0x7fff2b2f8000 - 0x7fff2b32efff com.apple.pluginkit.framework (1.0 - 1) <3A37B687-BDC8-315B-996D-7601E168DE47> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit 0x7fff2b32f000 - 0x7fff2b336fff libMatch.1.dylib (38) <48FD1C03-C887-3052-9641-BF27E829577E> /usr/lib/libMatch.1.dylib 0x7fff2b337000 - 0x7fff2b3c2fff libCoreStorage.dylib (554.140.2) /usr/lib/libCoreStorage.dylib 0x7fff2b3c3000 - 0x7fff2b416fff com.apple.AppleVAFramework (6.1.3 - 6.1.3) <1D2A99E8-473C-3C56-BD50-98549FDC8932> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA 0x7fff2b417000 - 0x7fff2b430fff libexpat.1.dylib (26.141.1) <0416D6BA-2AEB-3BBA-8584-FA28E62E8007> /usr/lib/libexpat.1.dylib 0x7fff2b431000 - 0x7fff2b43afff libheimdal-asn1.dylib (597.140.4) <60E659ED-BF63-3853-868D-D82D981AA955> /usr/lib/libheimdal-asn1.dylib 0x7fff2b43b000 - 0x7fff2b44ffff com.apple.IconFoundation (479.4 - 479.4) <71915E97-2F3E-36EE-B000-0EE7B258DD29> /System/Library/PrivateFrameworks/IconFoundation.framework/Versions/A/IconFoundation 0x7fff2b450000 - 0x7fff2b4bcfff com.apple.IconServices (479.4 - 479.4) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices 0x7fff2b4bd000 - 0x7fff2b55bfff com.apple.MediaExperience (1.0 - 1) /System/Library/PrivateFrameworks/MediaExperience.framework/Versions/A/MediaExperience 0x7fff2b55c000 - 0x7fff2b584fff com.apple.persistentconnection (1.0 - 1.0) /System/Library/PrivateFrameworks/PersistentConnection.framework/Versions/A/PersistentConnection 0x7fff2b585000 - 0x7fff2b593fff com.apple.GraphVisualizer (1.0 - 100.1) <928039C0-8548-38A0-BBE9-6AA807CCE7B7> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer 0x7fff2b594000 - 0x7fff2b9affff com.apple.vision.FaceCore (4.3.2 - 4.3.2) <13FFCD22-55DB-301B-9C6F-03C94266591B> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore 0x7fff2b9b0000 - 0x7fff2b9f7fff com.apple.OTSVG (1.0 - 677.6.0.4) /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG 0x7fff2b9f8000 - 0x7fff2b9fefff com.apple.xpc.AppServerSupport (1.0 - 2038.120.1.701.2) /System/Library/PrivateFrameworks/AppServerSupport.framework/Versions/A/AppServerSupport 0x7fff2b9ff000 - 0x7fff2ba11fff libhvf.dylib (1.0 - $[CURRENT_PROJECT_VERSION]) <24525668-9221-3A7B-8C64-CDAE418049DA> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib 0x7fff2ba12000 - 0x7fff2ba14fff libspindump.dylib (295.3) /usr/lib/libspindump.dylib 0x7fff2ba15000 - 0x7fff2bad5fff com.apple.Heimdal (4.0 - 2.0) <52976F1C-2F22-397A-8F21-38BEB3061DC2> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal 0x7fff2bad6000 - 0x7fff2baf0fff com.apple.login (3.0 - 3.0) /System/Library/PrivateFrameworks/login.framework/Versions/A/login 0x7fff2baf1000 - 0x7fff2bbc8fff com.apple.corebrightness (1.0 - 1) <900FDC2E-E9BF-34D2-9E07-8AA3879A2FFB> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness 0x7fff2bbc9000 - 0x7fff2bc70fff com.apple.backup.framework (1.18.1 - 1350.7.1) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup 0x7fff2bc75000 - 0x7fff2bcb1fff com.apple.bom (14.0 - 235.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom 0x7fff2bcb2000 - 0x7fff2bcfbfff com.apple.AppleJPEG (1.0 - 1) <2A8FF19B-B937-3F0B-A59B-A9A8B24F53E6> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 0x7fff2bcfc000 - 0x7fff2bddbfff libJP2.dylib (2130.16.2) <967ABC46-39E1-38CC-8BE5-FDE37AFB77BD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib 0x7fff2bddc000 - 0x7fff2bddffff com.apple.WatchdogClient.framework (1.0 - 98.120.2) <2907CD2F-A115-34CF-BB9D-DCFEBAEE78F3> /System/Library/PrivateFrameworks/WatchdogClient.framework/Versions/A/WatchdogClient 0x7fff2bde0000 - 0x7fff2be16fff com.apple.MultitouchSupport.framework (4440.3.1 - 4440.3.1) <9F19F332-ADC4-3D35-A9ED-C62AC334A704> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport 0x7fff2be17000 - 0x7fff2bf75fff com.apple.VideoToolbox (1.0 - 2780.10.4.1.1) <774F6519-3AF4-3B1C-BCA8-72B287B8CF05> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox 0x7fff2bf76000 - 0x7fff2bfa9fff libAudioToolboxUtility.dylib (1181.72.5) /usr/lib/libAudioToolboxUtility.dylib 0x7fff2bfaa000 - 0x7fff2bfcafff libPng.dylib (2130.16.2) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib 0x7fff2bfcb000 - 0x7fff2c02cfff libTIFF.dylib (2130.16.2) <48B3B58D-BC6F-3D7B-988C-729475BFACCA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib 0x7fff2c02d000 - 0x7fff2c049fff com.apple.IOPresentment (58 - 37) /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment 0x7fff2c04a000 - 0x7fff2c051fff com.apple.GPUWrangler (6.3.6 - 6.3.6) /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler 0x7fff2c052000 - 0x7fff2c055fff libRadiance.dylib (2130.16.2) <5B7B2CA5-D6ED-3A8E-97BC-A3D99EE023F9> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib 0x7fff2c056000 - 0x7fff2c05bfff com.apple.DSExternalDisplay (3.1 - 380) <85C7B7A3-8E61-3773-A7A1-0E594C390144> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay 0x7fff2c05c000 - 0x7fff2c080fff libJPEG.dylib (2130.16.2) <164FF5FC-2979-394D-8474-D35A20394794> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib 0x7fff2c081000 - 0x7fff2c0b0fff com.apple.ATSUI (1.0 - 1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/ATSUI 0x7fff2c0b1000 - 0x7fff2c0b5fff libGIF.dylib (2130.16.2) <3EDEAB7F-7268-3DA5-898D-1C21579DC859> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib 0x7fff2c0b6000 - 0x7fff2c0bffff com.apple.CMCaptureCore (1.0 - 82.6) /System/Library/PrivateFrameworks/CMCaptureCore.framework/Versions/A/CMCaptureCore 0x7fff2c0c0000 - 0x7fff2c107fff com.apple.print.framework.PrintCore (16.1 - 531.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore 0x7fff2c108000 - 0x7fff2c1d5fff com.apple.TextureIO (3.10.9 - 3.10.9) <3AC1D19C-DACE-33A7-9C89-BDD3D38A7080> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO 0x7fff2c1d6000 - 0x7fff2c1defff com.apple.InternationalSupport (1.0 - 61.1) /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport 0x7fff2c1df000 - 0x7fff2c259fff com.apple.datadetectorscore (8.0 - 674) <3B902938-2B3E-31A5-A57B-151BBB5D8BC8> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore 0x7fff2c25a000 - 0x7fff2c2b7fff com.apple.UserActivity (439 - 439) <59BC012A-4927-3FB9-9AEF-75F0096A1548> /System/Library/PrivateFrameworks/UserActivity.framework/Versions/A/UserActivity 0x7fff2c2b8000 - 0x7fff2ca54fff com.apple.MediaToolbox (1.0 - 2780.10.4.1.1) <7603673A-4FFE-38E3-B614-9C46514F2D98> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox 0x7fff2ca55000 - 0x7fff2cabdfff libusrtcp.dylib (2288.140.9) /usr/lib/libusrtcp.dylib 0x7fff2cabe000 - 0x7fff2ce94fff libswiftCore.dylib (5.4 - 1205.0.24.15) <0CF975F8-F866-3698-9897-F230BD8BD6B6> /usr/lib/swift/libswiftCore.dylib 0x7fff2ce95000 - 0x7fff2cefbfff com.apple.imfoundation (10.0 - 1000) <9033822C-E350-3F33-8D3E-CE37F7EADC7E> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation 0x7fff2cefc000 - 0x7fff2cf24fff com.apple.locationsupport (2420.19.23 - 2420.19.23) <3A08E563-896C-36BA-A111-F9581DCAC8BD> /System/Library/PrivateFrameworks/LocationSupport.framework/Versions/A/LocationSupport 0x7fff2cf25000 - 0x7fff2cf56fff libSessionUtility.dylib (76.69) <9CA8B6AC-ADC8-3805-A7AE-2532B3C0EBB0> /System/Library/PrivateFrameworks/AudioSession.framework/libSessionUtility.dylib 0x7fff2cf57000 - 0x7fff2d08bfff com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <99F6F2D8-189D-398C-A38C-B6B49F66A6E8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox 0x7fff2d08c000 - 0x7fff2d0f1fff com.apple.audio.AudioSession (1.0 - 76.69) <85C29DF5-2A9A-3029-8AF5-91E83074C414> /System/Library/PrivateFrameworks/AudioSession.framework/Versions/A/AudioSession 0x7fff2d0f2000 - 0x7fff2d104fff libAudioStatistics.dylib (27.64) /usr/lib/libAudioStatistics.dylib 0x7fff2d105000 - 0x7fff2d114fff com.apple.speech.synthesis.framework (9.0.66 - 9.0.66) <1746AB65-AAAA-3BAB-AAD3-C158FB532798> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis 0x7fff2d115000 - 0x7fff2d181fff com.apple.ApplicationServices.ATS (377 - 516) <484D4858-74A8-3541-91E5-2C74F70A3824> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS 0x7fff2d182000 - 0x7fff2d19afff libresolv.9.dylib (68.2) <78461752-674E-35D5-94D6-17E627802577> /usr/lib/libresolv.9.dylib 0x7fff2d21b000 - 0x7fff2d24efff com.apple.securityinterface (10.0 - 55149.120.1) <750B7E41-F0DD-3027-B0DF-9A3BC8B0BAEA> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface 0x7fff2d268000 - 0x7fff2d2ccfff com.apple.CoreMediaIO (1000.0 - 5325) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO 0x7fff2d2cd000 - 0x7fff2d3acfff libSMC.dylib (20) <038349BC-2D55-3E20-B3C3-BFEEA36E730A> /usr/lib/libSMC.dylib 0x7fff2d3ad000 - 0x7fff2d40cfff libcups.2.dylib (494.7) <0006C772-A113-37BC-A8AD-A7B96DE21EE2> /usr/lib/libcups.2.dylib 0x7fff2d40d000 - 0x7fff2d41cfff com.apple.LangAnalysis (1.7.0 - 254) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis 0x7fff2d41d000 - 0x7fff2d427fff com.apple.NetAuth (6.2 - 6.2) <2FB90509-3BD8-39CF-BE6A-5490F84FF284> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth 0x7fff2d428000 - 0x7fff2d42ffff com.apple.ColorSyncLegacy (4.13.0 - 1) <00861A68-F725-3E01-BDB9-64823636DD90> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy 0x7fff2d430000 - 0x7fff2d43bfff com.apple.QD (4.0 - 416) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD 0x7fff2d43c000 - 0x7fff2da90fff com.apple.audio.AudioResourceArbitration (1.0 - 1) <09E26A64-0C70-38AD-B9C9-7F8847E1F09F> /System/Library/PrivateFrameworks/AudioResourceArbitration.framework/Versions/A/AudioResourceArbitration 0x7fff2da91000 - 0x7fff2da9cfff com.apple.perfdata (1.0 - 67.40.1) <4A3F192A-2416-3D16-B318-A160264359DE> /System/Library/PrivateFrameworks/perfdata.framework/Versions/A/perfdata 0x7fff2da9d000 - 0x7fff2daabfff libperfcheck.dylib (41) <7D626792-9A87-3A1F-BE6E-C7D8FE62B800> /usr/lib/libperfcheck.dylib 0x7fff2daac000 - 0x7fff2dabbfff com.apple.Kerberos (3.0 - 1) <69B24A09-0788-3ACA-A01C-358746980694> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 0x7fff2dabc000 - 0x7fff2db0cfff com.apple.GSS (4.0 - 2.0) <5C6BCBC8-F041-3588-AC99-94CD85737E2B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS 0x7fff2db0d000 - 0x7fff2db1dfff com.apple.CommonAuth (4.0 - 2.0) <82E6D81F-8B40-3986-B5F2-CF151AD8C06C> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth 0x7fff2db1e000 - 0x7fff2db45fff com.apple.MobileAssets (1.0 - 659.100.21.700.1) /System/Library/PrivateFrameworks/MobileAsset.framework/Versions/A/MobileAsset 0x7fff2db73000 - 0x7fff2db92fff com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle 0x7fff2db93000 - 0x7fff2db9bfff com.apple.CorePhoneNumbers (1.0 - 1) <463A5379-F673-3712-8422-9A0DA38D75E5> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers 0x7fff2db9c000 - 0x7fff2dc25fff libTelephonyUtilDynamic.dylib (5359.1) <33FC7675-E872-3D9D-9423-3A979FBCE29A> /usr/lib/libTelephonyUtilDynamic.dylib 0x7fff2dcee000 - 0x7fff2dceefff liblaunch.dylib (2038.120.1.701.2) /usr/lib/system/liblaunch.dylib 0x7fff2dfe7000 - 0x7fff2e272fff com.apple.NetworkExtension (1.0 - 1) <511D9176-E212-3E2D-B2CC-9DC883517BE6> /System/Library/Frameworks/NetworkExtension.framework/Versions/A/NetworkExtension 0x7fff2e273000 - 0x7fff2e374fff com.apple.ids (10.0 - 1000) <390E9536-FF0A-3989-87C6-9F8EB4AE3EAE> /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS 0x7fff2e375000 - 0x7fff2e4d4fff com.apple.idsfoundation (10.0 - 1000) <4542B0E4-850F-3E06-8902-DACD459452E0> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundation 0x7fff2e4d5000 - 0x7fff2e620fff com.apple.Sharing (1630 - 1630) <35DFD4B9-28E6-35BE-AD57-6959C23715B4> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing 0x7fff2e621000 - 0x7fff2e742fff com.apple.Bluetooth (8.0.5 - 8.0.5d7) <173115D9-072B-3205-8A79-419EE173EB9E> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth 0x7fff2e743000 - 0x7fff2e757fff com.apple.AppContainer (4.0 - 509.140.3.700.1) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer 0x7fff2e758000 - 0x7fff2e75bfff com.apple.SecCodeWrapper (4.0 - 509.140.3.700.1) <092B9503-0F6B-3914-BC94-C367AE54B9C8> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper 0x7fff2e75c000 - 0x7fff2e7b5fff com.apple.ProtectedCloudStorage (1.0 - 1) /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage 0x7fff2e7b6000 - 0x7fff2e815fff com.apple.QuickLookFramework (5.0 - 928.5) <24094BF6-BDE8-36A2-890C-DA9634F3BBCA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook 0x7fff2e816000 - 0x7fff2e831fff com.apple.MetalKit (147.1 - 147.1) <5905CE1F-A2C7-3B85-B3EB-FE3BAD43FB9C> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit 0x7fff2e91a000 - 0x7fff2ea14fff com.apple.combine (1.0 - 252.158) /System/Library/Frameworks/Combine.framework/Versions/A/Combine 0x7fff2ea15000 - 0x7fff2ff10fff com.apple.GeoServices (1.0 - 1757.26.6.2.4) <5C31712D-D343-333E-B2EB-EF7DA50B95B4> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices 0x7fff2ff1d000 - 0x7fff2ff44fff com.apple.RemoteViewServices (2.0 - 163) <960463A4-6F65-3E89-8918-FA77BF9F6ADC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices 0x7fff2ff45000 - 0x7fff2ff54fff com.apple.SpeechRecognitionCore (6.1.25 - 6.1.25) <08338B73-5E68-33E3-93DC-F5BAF287CF82> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore 0x7fff2ff55000 - 0x7fff2ff5cfff com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <927F7D7F-8BD2-3EF2-A239-C20010C2149E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition 0x7fff3018a000 - 0x7fff3018afff libsystem_product_info_filter.dylib (8.40.1) /usr/lib/system/libsystem_product_info_filter.dylib 0x7fff30202000 - 0x7fff30219fff libnetworkextension.dylib (1295.140.4.701.1) <86CB2E3E-A692-3E95-BDE1-EA926AE2C442> /usr/lib/libnetworkextension.dylib 0x7fff30262000 - 0x7fff30262fff com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib 0x7fff30288000 - 0x7fff30288fff com.apple.CoreServices (1122.45 - 1122.45) <05DA2462-9BFC-38D9-820A-8842710471D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 0x7fff30444000 - 0x7fff30444fff com.apple.Accelerate (1.11 - Accelerate 1.11) <3D8DECC6-19B3-3A32-98CF-EB07536D1635> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate 0x7fff30485000 - 0x7fff30490fff com.apple.MediaAccessibility (1.0 - 130) <92C16B96-57FF-3C72-8532-A1D01DAB02F6> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility 0x7fff30491000 - 0x7fff304b0fff com.apple.networking.AlgosScoreFramework (1.0 - 1) /System/Library/PrivateFrameworks/AlgosScoreFramework.framework/Versions/A/AlgosScoreFramework 0x7fff304b1000 - 0x7fff304b5fff com.apple.AppleSRP (5.0 - 1) <07D9751D-89E5-37C3-8DBA-764CF8EAD2EB> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 0x7fff304b6000 - 0x7fff304c1fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon 0x7fff307d3000 - 0x7fff3092bfff libswiftFoundation.dylib (25.103) /usr/lib/swift/libswiftFoundation.dylib 0x7fff30c87000 - 0x7fff30cecfff com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 0x7fff30ced000 - 0x7fff30cf6fff com.apple.SymptomDiagnosticReporter (1.0 - 79.120.1) /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter 0x7fff30cf7000 - 0x7fff30d09fff com.apple.PowerLog (1.0 - 1) <986B448C-A89F-3C1D-AED2-64D094F9326E> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog 0x7fff30d0a000 - 0x7fff30d16fff com.apple.AppleIDAuthSupport (1.0 - 1) /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport 0x7fff30d17000 - 0x7fff30dbffff com.apple.DiscRecording (9.0.3 - 9030.4.5) <2EB0A304-1C88-350B-BDFA-B9F73767D44C> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording 0x7fff30dc0000 - 0x7fff30df3fff com.apple.MediaKit (16 - 927.40.2) <058F1A64-1627-3D16-89D3-5BF269940F83> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit 0x7fff30df4000 - 0x7fff30edffff com.apple.DiskManagement (14.0 - 1733.140.2) <037C755C-7622-37EC-9795-50169FBA1374> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement 0x7fff30ee0000 - 0x7fff3129afff com.apple.CoreAUC (326.2.0 - 326.2.0) <0CFEFD7D-9BF4-3064-9253-AD0BAAE8CD12> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC 0x7fff3129b000 - 0x7fff3129efff com.apple.Mangrove (1.0 - 25) /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove 0x7fff3129f000 - 0x7fff312ccfff com.apple.CoreAVCHD (6.1.0 - 6100.4.1) <47E1E6AC-51A7-321B-AD27-059C19AEE425> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD 0x7fff312cd000 - 0x7fff3141cfff com.apple.FileProvider (349.141.2.700.1 - 349.141.2.700.1) <8A840A12-246F-36D5-ADAC-DEE495B068FF> /System/Library/Frameworks/FileProvider.framework/Versions/A/FileProvider 0x7fff3141d000 - 0x7fff3143ffff com.apple.GenerationalStorage (2.0 - 323) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage 0x7fff317b5000 - 0x7fff31883fff com.apple.CoreTelephony (113 - 8260.1) /System/Library/Frameworks/CoreTelephony.framework/Versions/A/CoreTelephony 0x7fff31892000 - 0x7fff318a7fff libswiftDispatch.dylib (4.100.1) <66C2BA95-2681-396B-9F02-C2DBECBFAD62> /usr/lib/swift/libswiftDispatch.dylib 0x7fff318a8000 - 0x7fff31a3cfff com.apple.AVFCore (1.0 - 2020.10) /System/Library/PrivateFrameworks/AVFCore.framework/Versions/A/AVFCore 0x7fff31a3d000 - 0x7fff31aacfff com.apple.FrontBoardServices (703.16.1 - 703.16.1) <5A37EA4D-5048-346A-A108-85C85322CA4B> /System/Library/PrivateFrameworks/FrontBoardServices.framework/Versions/A/FrontBoardServices 0x7fff31aad000 - 0x7fff31ad6fff com.apple.BoardServices (1.0 - 526) <4291EACE-21EB-3FBB-B047-928ACB10B126> /System/Library/PrivateFrameworks/BoardServices.framework/Versions/A/BoardServices 0x7fff31c89000 - 0x7fff31cc8fff com.apple.AppleVPAFramework (3.26.1 - 3.26.1) /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA 0x7fff31d7b000 - 0x7fff31db6fff com.apple.DebugSymbols (195.1 - 195.1) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols 0x7fff31db7000 - 0x7fff31e6cfff com.apple.CoreSymbolication (12.5 - 64544.81.1) <47B26D54-12C1-32BF-BF40-062AAEB11699> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication 0x7fff31e6d000 - 0x7fff31e76fff com.apple.CoreTime (284.0.4) <28FC6634-B10D-3C3A-A82B-9FD35A4EFA5D> /System/Library/PrivateFrameworks/CoreTime.framework/Versions/A/CoreTime 0x7fff31e77000 - 0x7fff31eecfff com.apple.Rapport (2.6.0 - 260.3) <458FD1B0-87E6-31D6-A9E9-F61346208D62> /System/Library/PrivateFrameworks/Rapport.framework/Versions/A/Rapport 0x7fff327c1000 - 0x7fff3280dfff com.apple.coreduetcontext (1.0 - 1) <2038763E-79C0-34B2-B359-6E2BBACF7FFC> /System/Library/PrivateFrameworks/CoreDuetContext.framework/Versions/A/CoreDuetContext 0x7fff3280e000 - 0x7fff32d7afff com.apple.Intents (1.0 - 1) /System/Library/Frameworks/Intents.framework/Versions/A/Intents 0x7fff32d7b000 - 0x7fff32ddefff com.apple.framework.Apple80211 (17.0 - 1728) <9C381425-3738-3E47-B32C-B66ACF7B7FE8> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 0x7fff32ddf000 - 0x7fff32f30fff com.apple.CoreWiFi (3.0 - 341) <70C6B86C-96C5-3FE0-90AA-C13AAE870524> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi 0x7fff32f31000 - 0x7fff32f4bfff com.apple.BackBoardServices (1.0 - 1.0) <49254756-6605-3D38-B6BB-61B1F7DB46A8> /System/Library/PrivateFrameworks/BackBoardServices.framework/Versions/A/BackBoardServices 0x7fff3316a000 - 0x7fff331a0fff com.apple.SystemConfiguration.EAP8021X (14.0.0 - 14.0) <454DADB6-6BE8-33FB-A8D8-C5714547D3DB> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X 0x7fff331a1000 - 0x7fff331b0fff com.apple.RemoteServiceDiscovery (1.0 - 1.120.1) <770FE929-BBEB-37E0-9BF1-288A41809A4A> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery 0x7fff3320e000 - 0x7fff33211fff com.apple.help (1.3.8 - 71) <745DA416-7B89-391F-9D7B-EBD78DB63056> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help 0x7fff33212000 - 0x7fff33219fff com.apple.EFILogin (2.0 - 2) <5379A1B7-201D-333C-BCF5-005C4B30EE14> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin 0x7fff3321a000 - 0x7fff33225fff libcsfde.dylib (554.140.2) <71B9E18E-B9B1-3E17-933E-64ADF6F7B5D7> /usr/lib/libcsfde.dylib 0x7fff332a8000 - 0x7fff3330afff com.apple.AppSupport (1.0.0 - 29) /System/Library/PrivateFrameworks/AppSupport.framework/Versions/A/AppSupport 0x7fff33477000 - 0x7fff33477fff com.apple.ApplicationServices (48 - 50) <59E17F70-AB03-320D-B955-8F87F2C40898> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices 0x7fff33679000 - 0x7fff336d0fff com.apple.CorePrediction (1.0 - 1) <4933723C-F1D2-3109-A4AC-7EF4AC9760F1> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction 0x7fff3378c000 - 0x7fff3378cfff libHeimdalProxy.dylib (79) <69042CA5-B0DE-392D-8B32-51446EA228C5> /System/Library/Frameworks/Kerberos.framework/Versions/A/Libraries/libHeimdalProxy.dylib 0x7fff3383f000 - 0x7fff3383ffff com.apple.audio.units.AudioUnit (1.14 - 1.14) <1A2C9DDE-749F-3134-9F0A-2BC6C4E08AC0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit 0x7fff33863000 - 0x7fff338a7fff com.apple.StreamingZip (1.0 - 1) /System/Library/PrivateFrameworks/StreamingZip.framework/Versions/A/StreamingZip 0x7fff338a8000 - 0x7fff338c6fff com.apple.DuetActivityScheduler (1.0 - 1) <7C81F246-DA7F-3670-B209-E2F39B4D6607> /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/Versions/A/DuetActivityScheduler 0x7fff338c7000 - 0x7fff338c8fff libswiftObjectiveC.dylib (3) <4FE25177-731A-3785-83B0-CDF03ABA7794> /usr/lib/swift/libswiftObjectiveC.dylib 0x7fff338c9000 - 0x7fff338dafff libswiftos.dylib (1000.120.2) /usr/lib/swift/libswiftos.dylib 0x7fff338db000 - 0x7fff338e7fff com.apple.IntentsFoundation (1.0 - 1) /System/Library/PrivateFrameworks/IntentsFoundation.framework/Versions/A/IntentsFoundation 0x7fff338e8000 - 0x7fff338edfff com.apple.PushKit (1.0 - 1) /System/Library/Frameworks/PushKit.framework/Versions/A/PushKit 0x7fff338ee000 - 0x7fff33921fff com.apple.C2 (1.3 - 573) <83D1DC55-8A4A-39A6-8850-243044E35DD4> /System/Library/PrivateFrameworks/C2.framework/Versions/A/C2 0x7fff33922000 - 0x7fff33952fff com.apple.QuickLookThumbnailing (1.0 - 135.5) <234D01AA-BD62-30FC-9928-FB4F41AE9BD1> /System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing 0x7fff33953000 - 0x7fff34154fff com.apple.vision.EspressoFramework (1.0 - 256.4.4) /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso 0x7fff34155000 - 0x7fff3416cfff com.apple.ANEServices (4.76 - 4.76) /System/Library/PrivateFrameworks/ANEServices.framework/Versions/A/ANEServices 0x7fff34281000 - 0x7fff34283fff com.apple.CoreDuetDebugLogging (1.0 - 1) /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebugLogging 0x7fff34284000 - 0x7fff34290fff com.apple.CoreDuetDaemonProtocol (1.0 - 1) /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/CoreDuetDaemonProtocol 0x7fff34810000 - 0x7fff34860fff com.apple.ChunkingLibrary (334.1 - 334.1) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary 0x7fff34f17000 - 0x7fff350bdfff com.apple.WebKitLegacy (16611 - 16611.3.10.1.19) <52CB895E-32EE-30CE-BD8F-54564828DB1E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy 0x7fff350be000 - 0x7fff350c0fff com.apple.ConstantClasses (1.0 - 1) <1D70F38F-BAAF-37C2-9C3C-8FBEAADB5F85> /System/Library/PrivateFrameworks/ConstantClasses.framework/Versions/A/ConstantClasses 0x7fff350d8000 - 0x7fff350edfff com.apple.CoreML.AppleNeuralEngine (1.0 - 1) <0E0D1F38-46D9-31AF-ABAE-87DC37A844BA> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/Versions/A/AppleNeuralEngine 0x7fff35274000 - 0x7fff35277fff com.apple.Cocoa (6.11 - 23) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa 0x7fff356de000 - 0x7fff356ecfff com.apple.CommerceCore (1.0 - 711.6.2) <0250F82A-B8A8-3F4F-8315-B40F278BE662> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore 0x7fff35e61000 - 0x7fff35e68fff com.apple.DisplayServicesFW (3.1 - 380) <9C4719C0-F2B5-3BD2-AF91-D066408AE3B7> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices 0x7fff363a2000 - 0x7fff36636fff libAWDSupportFramework.dylib (4205) /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib 0x7fff366aa000 - 0x7fff366dafff libtidy.A.dylib (18.2) <864F6C8B-F273-37C5-82F5-E7D645A33B90> /usr/lib/libtidy.A.dylib 0x7fff366db000 - 0x7fff366fbfff com.apple.MarkupUI (1.0 - 383.6.1) <20F5293F-DD2E-37D1-8375-6014AEBDECB2> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI 0x7fff366fc000 - 0x7fff3670ffff com.apple.Engram (1.0 - 1) <238A4F38-B4EF-33C1-B71E-BE6462921F8D> /System/Library/PrivateFrameworks/Engram.framework/Versions/A/Engram 0x7fff36710000 - 0x7fff36733fff com.apple.openscripting (1.7 - 190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting 0x7fff36734000 - 0x7fff36737fff com.apple.securityhi (9.0 - 55008) <4A0776E2-2CA9-3EFE-8653-1E96644D9B43> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI 0x7fff36738000 - 0x7fff3673bfff com.apple.ink.framework (10.15 - 227) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink 0x7fff3673c000 - 0x7fff3673ffff com.apple.CommonPanels (1.2.6 - 101) <5A909E1B-3060-3C41-8B93-EB2CAD9BAA61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels 0x7fff36740000 - 0x7fff36747fff com.apple.ImageCapture (1711.5.2.1 - 1711.5.2.1) <321754DF-D200-39D3-A184-FF13D4802A70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture 0x7fff36748000 - 0x7fff37938fff com.apple.JavaScriptCore (16611 - 16611.3.10.1.19) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore 0x7fff379a4000 - 0x7fff37ab6fff com.apple.AVFCapture (1.0 - 82.6) <29DFE43F-9926-39BB-934B-883DAA266F8C> /System/Library/PrivateFrameworks/AVFCapture.framework/Versions/A/AVFCapture 0x7fff37ab7000 - 0x7fff37b4afff com.apple.Quagga (47 - 47) /System/Library/PrivateFrameworks/Quagga.framework/Versions/A/Quagga 0x7fff37b4b000 - 0x7fff37d95fff com.apple.CMCapture (1.0 - 82.6) <74421BDC-4259-3273-AA03-720B4BEBD3EE> /System/Library/PrivateFrameworks/CMCapture.framework/Versions/A/CMCapture 0x7fff38791000 - 0x7fff387a0fff com.apple.HID (1.0 - 1) <25EF9D86-E885-3854-B95C-46732F54688D> /System/Library/PrivateFrameworks/HID.framework/Versions/A/HID 0x7fff387a1000 - 0x7fff388c8fff com.apple.QuickLookUIFramework (5.0 - 928.5) <21D07FEA-E4ED-3617-B3B4-944A91982A5C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI 0x7fff38eb4000 - 0x7fff38eb4fff com.apple.marco (10.0 - 1000) <41A68210-9468-3F31-B16D-B7B72AE479C0> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco 0x7fff39568000 - 0x7fff3956ffff com.apple.URLFormatting (146 - 146.22) /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting 0x7fff39570000 - 0x7fff3957efff com.apple.accessibility.AXCoreUtilities (1.0 - 1) /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities 0x7fff3957f000 - 0x7fff39596fff libAccessibility.dylib (2885.49.1) /usr/lib/libAccessibility.dylib 0x7fff39597000 - 0x7fff3bcddfff com.apple.WebCore (16611 - 16611.3.10.1.19) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore 0x7fff3be25000 - 0x7fff3bfccfff libFosl_dynamic.dylib (200) <1CD89B0A-FB4D-381C-9D20-1579D1782020> /usr/lib/libFosl_dynamic.dylib 0x7fff3bfcd000 - 0x7fff3bfeffff com.apple.quicklook.QuickLookSupport (1.0 - 135.5) /System/Library/PrivateFrameworks/QuickLookSupport.framework/Versions/A/QuickLookSupport 0x7fff3bff0000 - 0x7fff3c087fff com.apple.AirPlaySync (1.0 - 2780.10.4.1.1) /System/Library/PrivateFrameworks/AirPlaySync.framework/Versions/A/AirPlaySync 0x7fff3c25a000 - 0x7fff3c264fff libswiftCoreGraphics.dylib (2) <6C93776C-1CFB-3ED3-BE43-9E01B567013A> /usr/lib/swift/libswiftCoreGraphics.dylib 0x7fff3c265000 - 0x7fff3c26efff libswiftDarwin.dylib (??? - ???) <6D72F563-5F88-3074-A933-34073D8325D8> /usr/lib/swift/libswiftDarwin.dylib 0x7fff3c2bb000 - 0x7fff3c309fff com.apple.Safari.SafeBrowsing (16611 - 16611.3.10.1.19) /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing 0x7fff3c30a000 - 0x7fff3cae9fff com.apple.WebKit (16611 - 16611.3.10.1.19) <219BD6F8-11D8-3329-9CCF-691D168AE1F2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit 0x7fff3cc18000 - 0x7fff3cc9bfff com.apple.CorePDF (4.0 - 529) <42E6A390-5B40-3805-ABD4-50703A70BC5D> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF 0x7fff3cc9c000 - 0x7fff3cc9ffff com.apple.print.framework.Print (15 - 271) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print 0x7fff3cca0000 - 0x7fff3cca3fff com.apple.Carbon (160 - 164) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon 0x7fff3cd9c000 - 0x7fff3cd9cfff com.apple.avfoundation (2.0 - 2020.10) <2C4E94A8-C729-35ED-9FAA-BF8CA015BF97> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation 0x7fff3ceb8000 - 0x7fff3cf4bfff libquic.dylib (2288.140.9) <284779AC-9F20-3BB3-A68A-EEDF69D962ED> /usr/lib/libquic.dylib 0x7fff3cf56000 - 0x7fff3cf75fff com.apple.private.SystemPolicy (1.0 - 1) <89781097-BA30-3186-B368-3830D1FE4FC0> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy 0x7fff3d0c2000 - 0x7fff3d118fff com.apple.AccessibilitySharedSupport (1.0 - 1) /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/Versions/A/AccessibilitySharedSupport 0x7fff3d119000 - 0x7fff3d136fff com.apple.sidecar-core (1.0 - 231.0.3) <8AF77BAE-D2B8-3291-84FA-4C3F87343320> /System/Library/PrivateFrameworks/SidecarCore.framework/Versions/A/SidecarCore 0x7fff3d137000 - 0x7fff3d13afff com.apple.QuickLookNonBaseSystem (1.0 - 1) /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem 0x7fff3d54d000 - 0x7fff3d551fff com.apple.CoreOptimization (1.0 - 1) /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization 0x7fff3d6c9000 - 0x7fff3d6e0fff com.apple.SafariServices.framework (16611 - 16611.3.10.1.19) <5DF42B13-9929-3463-AE12-BBE97F2B05B6> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices 0x7fff3d822000 - 0x7fff3d892fff com.apple.LoggingSupport (1.0 - 1277.120.1) <00981841-424A-336C-BFD3-FD0CAA3DA720> /System/Library/PrivateFrameworks/LoggingSupport.framework/Versions/A/LoggingSupport 0x7fff3d893000 - 0x7fff3d89efff com.apple.MallocStackLogging (1.0 - 1) <291B4FD0-38AF-3075-AACE-E632AC32D915> /System/Library/PrivateFrameworks/MallocStackLogging.framework/Versions/A/MallocStackLogging 0x7fff3d8b3000 - 0x7fff3d8c5fff libmis.dylib (274.140.2) /usr/lib/libmis.dylib 0x7fff3d8c6000 - 0x7fff3d8c9fff com.apple.gpusw.GPURawCounter (20.3 - 12.0) <125588E8-1CF4-3240-8117-2C0D73950D35> /System/Library/PrivateFrameworks/GPURawCounter.framework/Versions/A/GPURawCounter 0x7fff3d8d3000 - 0x7fff3d8d3fff libswiftCoreFoundation.dylib (1.6) <0DE35A1A-97A6-3866-B32B-CE9AEA9C13FE> /usr/lib/swift/libswiftCoreFoundation.dylib 0x7fff3d8df000 - 0x7fff3d8dffff libswiftXPC.dylib (1.1) <513EF905-DFAA-344B-91E7-742ADEA9A5C6> /usr/lib/swift/libswiftXPC.dylib 0x7fff3d8e0000 - 0x7fff3d8e0fff libswiftCoreImage.dylib (1) <985699C5-EA44-3209-87E8-EEFDBEC9863B> /usr/lib/swift/libswiftCoreImage.dylib 0x7fff3d8e1000 - 0x7fff3d8e1fff libswiftIOKit.dylib (1) /usr/lib/swift/libswiftIOKit.dylib 0x7fff3d8e2000 - 0x7fff3da51fff com.apple.CoreHandwriting (161 - 1.2) <2D7F4437-4168-3D9B-AF6C-AB687A7BDB6C> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting 0x7fff3da52000 - 0x7fff3dcadfff com.apple.imageKit (3.0 - 1100) <43D614A4-5690-3BAB-9D3D-4DB9A88B8F6A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit 0x7fff3dcae000 - 0x7fff3ddc4fff com.apple.PencilKit (1.0 - 1) <2209EA23-CF91-396E-9E30-ED40E520DBC6> /System/Library/Frameworks/PencilKit.framework/Versions/A/PencilKit 0x7fff3ddc5000 - 0x7fff3ddd6fff com.apple.sidecar-ui (1.0 - 231.0.3) /System/Library/PrivateFrameworks/SidecarUI.framework/Versions/A/SidecarUI 0x7fff3dde2000 - 0x7fff3dde5fff com.apple.WebInspectorUI (16611 - 16611.3.10.1.19) /System/Library/PrivateFrameworks/WebInspectorUI.framework/Versions/A/WebInspectorUI 0x7fff3e3f9000 - 0x7fff3e45bfff com.apple.ImageCaptureCore (1711.5.2.1 - 1711.5.2.1) <2D23617B-4F3F-3AC8-B338-378A9F19B83E> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore 0x7fff3e45c000 - 0x7fff3e481fff com.apple.quartzfilters (1.10.0 - 98) <6A1BED58-A40D-317B-A247-0355F63F30BC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters 0x7fff3eb3d000 - 0x7fff3ec65fff com.apple.AnnotationKit (1.0 - 383.6.1) <796BD6AA-96F3-31BE-9BBE-20253F67B776> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit 0x7fff3ec66000 - 0x7fff3f106fff com.apple.QuartzComposer (5.1 - 383) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer 0x7fff3f107000 - 0x7fff3f1effff com.apple.PDFKit (1.0 - 950.40.3) <65033500-1739-3A4F-B488-98B52A922B9F> /System/Library/Frameworks/PDFKit.framework/Versions/A/PDFKit 0x7fff3ff36000 - 0x7fff3ffb3fff com.apple.TextInput (1.0 - 1.0) <177BC119-8BE7-3091-9017-AC5500DC82C2> /System/Library/PrivateFrameworks/TextInput.framework/Versions/A/TextInput 0x7fff40cf7000 - 0x7fff40d02fff com.apple.CaptiveNetworkSupport (13.0 - 1) /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNetwork 0x7fff410ba000 - 0x7fff410eafff libncurses.5.4.dylib (57.1.0.700.1) <08B7ED56-DB5C-3207-B464-CE0ED0B03423> /usr/lib/libncurses.5.4.dylib 0x7fff410eb000 - 0x7fff410f4fff com.apple.IOAccelMemoryInfo (1.0 - 1) /System/Library/PrivateFrameworks/IOAccelMemoryInfo.framework/Versions/A/IOAccelMemoryInfo 0x7fff4114f000 - 0x7fff41152fff com.apple.quartzframework (1.5 - 25) <2A389DA9-EB10-3557-92DD-CF8EE6D4565F> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz 0x7fff41577000 - 0x7fff41595fff libCGInterfaces.dylib (544.6) <91BB95A8-5FD1-30DF-9B9C-D93C8F2A3F57> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib 0x7fff41596000 - 0x7fff41597fff libswiftCoreLocation.dylib (5) <25F9A211-E1B6-3D8A-9E04-83650BF562DF> /usr/lib/swift/libswiftCoreLocation.dylib 0x7fff41e8d000 - 0x7fff41e91fff libswiftCoreData.dylib (3) <2EB4B2A9-0010-3814-93E2-A7E3D762E301> /usr/lib/swift/libswiftCoreData.dylib 0x7fff43b24000 - 0x7fff43d97fff com.apple.RawCamera.bundle (9.10.0 - 1450.3.1) <90BD94D5-A041-3459-8567-9161ABC1661B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera 0x7fff45f7f000 - 0x7fff45f84fff libswiftMetal.dylib (1.3.1) <67E7D312-A201-3664-8FED-1144DA4A7A17> /usr/lib/swift/libswiftMetal.dylib 0x7fff45f8b000 - 0x7fff45f96fff libswiftCloudKit.dylib (990) <95D577EB-B83D-3E29-A12B-2CE5B3B1AFE7> /usr/lib/swift/libswiftCloudKit.dylib 0x7fff47c9f000 - 0x7fff47ce0fff com.apple.osanalytics.OSAnalytics (1.0 - 1) <4A29103B-7A09-313F-9406-F21F29DAB78E> /System/Library/PrivateFrameworks/OSAnalytics.framework/Versions/A/OSAnalytics 0x7fff48515000 - 0x7fff48529fff libswiftAppKit.dylib (104) /usr/lib/swift/libswiftAppKit.dylib 0x7fff4852a000 - 0x7fff4852bfff libswiftQuartzCore.dylib (1) /usr/lib/swift/libswiftQuartzCore.dylib 0x7fff4bb1b000 - 0x7fff4bb2dfff libswiftUniformTypeIdentifiers.dylib (637.2) /usr/lib/swift/libswiftUniformTypeIdentifiers.dylib 0x7fff4ee0d000 - 0x7fff4ee0efff libswiftOSLog.dylib (1) /usr/lib/swift/libswiftOSLog.dylib 0x7fff5177b000 - 0x7fff5181afff com.apple.Symbolication (12.5 - 64544.70.3) <7AFDB643-479C-37EE-BE8F-DD67EE9A3D94> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication 0x7fff53cd9000 - 0x7fff53ce5fff com.apple.OSLog (1.0 - 1277.120.1) /System/Library/Frameworks/OSLog.framework/Versions/A/OSLog 0x7fff58367000 - 0x7fff5836afff libswiftWebKit.dylib (7611.3.10.1.19) <1B8CF5D5-6CB3-3E22-8B50-DAAB3FEC1105> /usr/lib/swift/libswiftWebKit.dylib 0x7fff5de0d000 - 0x7fff5e298fff com.apple.driver.AppleIntelKBLGraphicsMTLDriver (16.5.14 - 16.0.5) <795CB76F-07DF-3A35-A1B1-ED998B5D7F07> /System/Library/Extensions/AppleIntelKBLGraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelKBLGraphicsMTLDriver 0x7fff697ca000 - 0x7fff697cefff libmetal_timestamp.dylib (31001.192.1) /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/31001/Libraries/libmetal_timestamp.dylib 0x7fff6bc15000 - 0x7fff6bc1bfff libCoreFSCache.dylib (200.12) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib 0x7fff6bc1c000 - 0x7fff6bc20fff libCoreVMClient.dylib (200.12) <4D617E02-85B8-3BC2-82FE-5CEA77809181> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib 0x7fff6bc21000 - 0x7fff6bc30fff com.apple.opengl (18.5.9 - 18.5.9) <610E765C-8C0D-3422-AD6E-636D3EBD2AD0> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL 0x7fff6bc31000 - 0x7fff6bc33fff libCVMSPluginSupport.dylib (18.5.9) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib 0x7fff6bc34000 - 0x7fff6bc3cfff libGFXShared.dylib (18.5.9) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib 0x7fff6bc3d000 - 0x7fff6bc70fff libGLImage.dylib (18.5.9) <6C478ED9-E513-3E43-B9F1-D15A20A0EE85> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib 0x7fff6bc71000 - 0x7fff6bcadfff libGLU.dylib (18.5.9) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib 0x7fff6be42000 - 0x7fff6be4cfff libGL.dylib (18.5.9) <08A0476A-D04F-3816-AA4D-11EC2467F748> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib 0x7fff6d28c000 - 0x7fff6d2e4fff com.apple.opencl (4.6 - 4.6) <8C87D26C-12C6-33E8-AE32-45B699667DB3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL 0x7fff6e396000 - 0x7fff6e47dfff com.apple.audio.AVFAudio (1.0 - 477.88) /System/Library/Frameworks/AVFAudio.framework/Versions/A/AVFAudio 0x7fff6fa03000 - 0x7fff6fa15fff com.apple.CMImaging (1.0 - 82.6) <77B8329C-A918-3B78-B9A9-628B3D41C920> /System/Library/PrivateFrameworks/CMImaging.framework/Versions/A/CMImaging 0x7fff7787b000 - 0x7fff77882fff libRosetta.dylib (203.58) /usr/lib/libRosetta.dylib

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

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

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 512K 4 Activity Tracing 256K 1 CG backing stores 4032K 6 CG image 1168K 41 CG raster data 84K 10 CoreAnimation 43.7M 142 CoreGraphics 12K 2 CoreUI image data 5228K 45 Foundation 16K 1 Image IO 20K 5 JS VM Isolated Heap 24K 2 Kernel Alloc Once 8K 1 MALLOC 330.7M 75 MALLOC guard page 96K 17 MALLOC_MEDIUM (reserved) 960.0M 8 reserved VM address space (unallocated) MALLOC_NANO (reserved) 384.0M 1 reserved VM address space (unallocated) SQLite page cache 192K 3 STACK GUARD 56.1M 15 Stack 15.1M 15 VM_ALLOCATE 304K 25 WebKit Malloc 8296K 10 DATA 23.1M 452 DATA_CONST 25.0M 277 DATA_DIRTY 1403K 182 __FONT_DATA 4K 1 LINKEDIT 505.3M 18 OBJC_RO 70.3M 1 __OBJC_RW 2496K 3 TEXT 395.8M 449 __UNICODE 588K 1 libnetwork 128K 8 mapped file 274.7M 75 shared memory 760K 16 =========== ======= ======= TOTAL 3.0G 1912 TOTAL, minus reserved VM space 1.7G 1912

Model: MacBookPro16,1, BootROM 1968.140.7.0.0 (iBridge: 20.16.6072.0.0,0), 8 processors, 8-Core Intel Core i9, 2.3 GHz, 32 GB, SMC Graphics: kHW_IntelUHDGraphics630Item, Intel UHD Graphics 630, spdisplays_builtin Graphics: kHW_AMDRadeonPro5500MItem, AMD Radeon Pro 5500M, spdisplays_pcie_device, 4 GB Memory Module: BANK 0/ChannelA-DIMM0, 16 GB, DDR4, 2667 MHz, SK Hynix, - Memory Module: BANK 2/ChannelB-DIMM0, 16 GB, DDR4, 2667 MHz, SK Hynix, - AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x7BF), wl0: Aug 10 2021 20:10:47 version 9.30.444.18.32.5.71 FWID 01-30b2601e Bluetooth: Version 8.0.5d7, 3 services, 27 devices, 1 incoming serial ports Network Service: Wi-Fi, AirPort, en0 USB Device: USB 3.1 Bus USB Device: Apple T2 Bus USB Device: Composite Device USB Device: Touch Bar Backlight USB Device: Touch Bar Display USB Device: Apple Internal Keyboard / Trackpad USB Device: Headset USB Device: Ambient Light Sensor USB Device: FaceTime HD Camera (Built-in) USB Device: Apple T2 Controller Thunderbolt Bus: MacBook Pro, Apple Inc., 63.5 Thunderbolt Bus: MacBook Pro, Apple Inc., 63.5

SanderVanLeeuwen commented 1 year ago

And one other thing to try too - this is the latest 4.0.10 built in Xcode 15 with a special linker flag set called ld64 AND with debugging enabled. That should ideally either not crash, or crash and tell us a better error message. In any case, still notarized for security Sequel Ace-debugging-ld64.zip

Tried both, but none of them work unfortunately.

Jason-Morcos commented 1 year ago

It looks like this is a bug in Xcode 15 🤦 https://developer.apple.com/forums/thread/731089

I had tried adding that extra linker flag, but that appears to not be enough in our case

Jason-Morcos commented 1 year ago

Thank you for all the attempts! One last beta to try - https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/beta%2F4.0.10-20055 ld64 tag in a different place (project as opposed to artifact) Please let me know if this somehow works 🤞

If this doesn't work, I'll cloud build this next release with Xcode 14 (Xcode 14 doesn't run on Sonoma) which theoretically should solve this for y'all in 4.0.10. But then realistically I'm gonna be forced to drop support for macOS < 12 (although the last supported version should continue to work for all of you) because it won't be long until Apple starts requiring XCode 15 for everything :/ .

polycode-nz commented 1 year ago

^ still crashes sorry

Kaspik commented 1 year ago

If this doesn't work, I'll cloud build this next release with Xcode 14 (Xcode 14 doesn't run on Sonoma) which theoretically should solve this for y'all in 4.0.10. But then realistically I'm gonna be forced to drop support for macOS < 12 (although the last supported version should continue to work for all of you) because it won't be long until Apple starts requiring XCode 15 for everything :/ .

For AppStore - we should just do it via Xcode Cloud that still has Xcode 14 and will have it for some time. For other builds we could try to do it via Xcode Cloud too and just download the archive and do nothing manually - to not need to drop these versions.

diereysaa commented 1 year ago

Just FYI, almost same specs as OP (Big Sur 11.7.10 in my case) the Beta 3 crashes, but I can confirm 4.0.8 works fine.

When launching 4.0.8 it offers to update.

Thanks for your effort, guys :)

Jason-Morcos commented 1 year ago

Please try this 4.0.10 release candidate built with Xcode 14. This should fix it

https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/production%2F4.0.10-20056

diereysaa commented 1 year ago

Please try this 4.0.10 release candidate built with Xcode 14. This should fix it

https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/production%2F4.0.10-20056

Yes! Working fine on my end.

macOS Version: Big Sur 11.7.10 Processor Type (Intel/Apple): Intel i7 MySQL Version: 8.1.0 (& others) macOS Localization: en_US

Thanks!

SanderVanLeeuwen commented 1 year ago

Awesome, thanks for fixing.

GonrasK commented 1 year ago

Please try this 4.0.10 release candidate built with Xcode 14. This should fix it

https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/production%2F4.0.10-20056

Works here as well! macOS Catalina 10.15.7

Jason-Morcos commented 1 year ago

Thank you all! So sorry for all the issues. I can tell you I'm very disappointed in this XCode release. Glad we found a way forward at least for now

polycode-nz commented 1 year ago

Thanks @Jason-Morcos for fixing and for reminding me how bad MySQL workbench is. Absolute shambles!

Jason-Morcos commented 8 months ago

Hey folks! Could you please try this latest beta and let me know if it's still working in older versions of macOS? https://github.com/Sequel-Ace/Sequel-Ace/releases/tag/beta%2F4.0.14-20063 We received some reports that the latest Xcode fixes the issues we were seeing before and I'd like to try to get us building with the latest version again if possible. Would appreciate just a few 👍 before this release goes out :) Thank you!

Rhys-T commented 8 months ago

@Jason-Morcos I had to recreate the favorite because the beta version has a separate sandbox and set of preferences, but that beta seems to be working correctly here on 10.15.7, for both quick connect and favorites. Thanks.

Jason-Morcos commented 8 months ago

Woot woot! Thank you for confirming!

Rhys-T commented 7 months ago

Just got the 4.0.14 release, and it seems to still be working correctly on 10.15.7 so far.