Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't compile the master 64 bit Boxer, help needed =( #100

Open
Shrapnel21 opened this issue May 4, 2019 · 25 comments
Open

Can't compile the master 64 bit Boxer, help needed =( #100

Shrapnel21 opened this issue May 4, 2019 · 25 comments

Comments

@Shrapnel21
Copy link

Hi everyone!
First of all, I'm a total noob: I never compiled anything before and I just downloaded Xcode for the first time ever. Sorry. =P
With that said, I tried downloading the package for the 64 bit version and tried compiling it, but Xcode 10.2.1 keeps telling me that it's "Unable to resolve build file: XCBCore.BuildFile". I've found some info about this error and tried the suggestions I saw, but nothing works. What am I doing wrong?

@almeath
Copy link

almeath commented May 10, 2019

I have been trying to get the 64 bit master to build under Xcode 10 on Mojave for months now with no success. Fortunately, I was able to build MaddTheSane's 64 bit branch using Xcode 9.4.1. You can download it from here if you want to try it:

http://www.eftel.com/~almeath/mac/boxer64.zip

@almeath
Copy link

almeath commented Jun 2, 2019

Finally got the standard 64 bit master to build in Xcode under Mojave. I used Github Desktop to download the repository, updated submodules via terminal using "git submodule update --init --recursive" and then built in Xcode 9.4.1.

http://www.eftel.com/~almeath/mac/boxer64master.zip

@john-at-charpa
Copy link

Many thanks for doing these builds. I've tested at least one or two of them and they seem to run alright until you attempt to open a folder (browse DOS Games folder). As soon as this is attempted it crashes. Have you seen this same behaviour? I've not started digging at the code, but I suspect it has something to do with sandboxing and how the file system is accessed in Mojave.

@almeath
Copy link

almeath commented Jun 19, 2019

I have not noticed any crashing from either build in Mojave on my system.

Did you go to the Security & Privacy preference pane in the Finder and allow the Boxer app to have “full disk access”?

Also, do you experience a crash if you navigate to your DOS games folder in the Finder and launch a Boxer game bundle by double-clicking it directly?

Are you able to create and run fresh game bundles in these builds?

@john-at-charpa
Copy link

I've given the Boxer.app full disk access, but I should mention that 'old' 32-bit Boxer does not have
this access specifically granted.

I cleaned out everything in ~/Library/ that was related to Boxer in an way (caches, cookies, Application
support). However, when running it again it crashes in the same place. It asks for me to locate the
folder (and I can create it). However the instant it tries to access it there is a crash.

Next, I tried to create a new game. I skipped trying to browse and just attempted to drop a folder
with a DOS game into boxer. When I do that I get the blue Boxer window and "Session is not ready"
with the only option: OK. I suspect it somehow cannot run the DOSBox command properly.

Open a new DOS Prompt does work (and I can manually build a game).

.. and the most important bit: I can both launch a freshly created as well as an old game.boxer game bundle by double clicking on it. MT-32 emulation functions as well (whew). So it still seems like it is somehow related to disk access or folder access. Per my previous comment the drag-and-drop to install fail. However, if you click OK then run the game it functions fine (and you can re-run install).

I can certainly provide a stack trace if it would help. The source of the pain appears to be:

Performing @selector(ok:) from sender _NSPaddedButton 0x600003713900
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSWorkspace URLHasCustomIcon:]: unrecognized selector sent to instance 0x60000000c5e0'
terminating with uncaught exception of type NSException
abort() called

@john-at-charpa
Copy link

If I had to guess I'd say that the cause is this:

Boxer/Application Delegate/BXShelfAppearanceOperation.m
(line 154+)

- (void) _applyAppearanceToFolderAtURL: (NSURL *)folderURL
{  
   NSAssert(self.backgroundImageURL != nil, @"BXShelfAppearanceApplicator _applyAppearanceToFolder called without background image.");

   //If the folder doesn't have a custom icon of its own, apply our shelf icon to the folder
   if (self.icon && ![[NSWorkspace sharedWorkspace] URLHasCustomIcon: folderURL])
    {   
        [[NSWorkspace sharedWorkspace] setIcon: self.icon forFile: folderURL.path options: 0];
    }

@getaaron
Copy link

Seems like NSWorkspace+ADBIconHelpers.m isn’t compiled or linked properly?

@almeath
Copy link

almeath commented Jun 20, 2019

Is this affecting MadTheSane’s build as well as the master?

I haven’t had a chance to try to reproduce these errors yet. I am going to test in High Sierra as well as Mojave, both fresh installs.

@almeath
Copy link

almeath commented Jun 20, 2019

By the way, I didn’t do anything to customize these builds .. they are straight compiles with no alterations.

@almeath
Copy link

almeath commented Jun 20, 2019

I have been able to reproduce the reported issues on fresh installs of Mojave 10.14.5 and High Sierra 10.13.6.

The issue affects both builds, so I presume the underlying problem is just carried through into MadTheSane’s customized build.

Interestingly, the errors do not occur for me in my main install of Mojave in which I compiled these builds. It only occurs once they are moved onto other installs of macOS.

I just did not notice until now because I prefer to use Boxer Bundler to make self-contained app wrappers and these all work fine for me, and on other Macs.

I am wondering if this has anything to do with the fact I could only successfully build in Xcode 9.4.1 rather than the latest 10.x release?

At least the issues can be worked around as reported, but it would be good to get to the bottom of this.

I might have another crack at compiling in the latest Xcode 10 release and see how it goes.

@john-at-charpa
Copy link

I think that something is null/empty and is passed unchecked to the API. It may be macOS API changes that cause something to silently fail earlier in the code:

https://stackoverflow.com/questions/36111461/terminating-app-due-to-uncaught-exception-nsinvalidargumentexception-reason

https://stackoverflow.com/questions/55440922/app-crashes-randomly-with-nsinvalidargumentexception-unrecognized-selector-sent

If you can determine what is different between your ripe macOS and a fresh 10.14, then we may be able to track it down. It looks like it may have something to do with icons or the folders. I've not got time to look at this right now, but if I can replicate a build with Xcode 9 then I'll see if I can add some debug prints. Fair warning: my Objective C clue is nil and I'm an abysmal programmer to start with..

@almeath
Copy link

almeath commented Jun 22, 2019

One thing I recall is that I manually code signed the main Boxer app (but not Bundler or Standalone) via the terminal after compile because it was acting strangely when I tried to launch it - i.e. the icon was freezing for about half a second when double clicked. Code signing the app with my Apple developer ID fixed the issue and I have no idea why. I also have SIP and Gatekeeper disabled.

However, I have now managed to compile the 64 bit master in the latest Xcode (10.2.1), and this time I have not touched it at all - just dragged it fresh from the Xcode developer folder and uploaded it 'as is'. Can you please try it out and let me know if the same problems occur?

http://www.eftel.com/~almeath/mac/Boxer64master2.zip

@john-at-charpa
Copy link

Unfortunately the crash still happens. It stopped complaining about the code signature, so that's a step forward. I have a second Mac running Mojave and I got the same results running it there too.

@almeath
Copy link

almeath commented Jun 26, 2019

The only thing that distinguishes my main install of Mojave is that it is a system that has been progressively updated from macOS 10.9 all the way though to 10.14.

I used a completely fresh install of Mojave, with fresh installs of Github desktop and Xcode. The build exhibits the above problems right off the bat, within that fresh system. That leads me to believe there is an inherent problem with building 64-bit Boxer in Mojave.

What I will do next, is repeat the fresh install process again with High Sierra. I previously tested the Mojave builds in HS, but not one built within it. That would at least help establish if we are dealing with a Mojave-only or wider issue.

@getaaron
Copy link

@john-at-charpa could you please post the full stack trace? I’m trying to reproduce it on a fresh Mojave system and having trouble.

@getaaron
Copy link

Also I’m wondering if this resolves it for you:

open /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg

@john-at-charpa
Copy link

@almeath If you can build this in Mojave without any overly complex work-arounds, then would you be able share (roughly.. slightly detailed?) your steps? I assume it's more than:

  1. git clone
  2. open in Xcode
  3. mess with signing
  4. click build
  5. ???
  6. profit!

I attempted to build at least one of the trees about 5 or 6 months ago and gave up after Xcode complained about things that seemed to be Objective C specific (I can do c, c++, and other crazy dances but not really Objective C). If I can build this I'll take a swing at that chunk of code that appears to trigger the issue.

@john-at-charpa
Copy link

john-at-charpa commented Jun 26, 2019

@getaaron So missing headers would definitely cause it not to build (the errors are quite clear), but you certainly don't need the OS SDK headers at run-time. That being said, I was never prompted by Xcode to install them. I guess I foolishly assumed that having the 10.14 SDK installed meant the OS headers were there too. Sigh.

I've attached the full stack trace; since @almeath can reproduce it on a fresh system I suspect that something (in the section I detailed earlier) has changed in the 10.14's API in a way that triggers it.

Full stack output
Process:               Boxer [46829]
Path:                  /private/var/folders/*/Boxer.app/Contents/MacOS/Boxer
Identifier:            net.washboardabs.boxer
Version:               2.0.0-alpha (2.0.0-alpha+20160215.1)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Boxer [46829]
User ID:               501

Date/Time:             2019-06-26 15:43:12.214 +0900
OS Version:            Mac OS X 10.14.5 (18F132)
Report Version:        12
Anonymous UUID:        7512899D-E3D8-0E9E-73C8-260B5EA784FD


Time Awake Since Boot: 1800000 seconds

System Integrity Protection: enabled

Notes:                 Translocated Process

Crashed Thread:        13  Dispatch queue: NSOperationQueue 0x60000021cfa0 (QOS: UNSPECIFIED)

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

Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSWorkspace URLHasCustomIcon:]: unrecognized selector sent to instance 0x600000008390'
terminating with uncaught exception of type NSException
abort() called

Application Specific Backtrace 1:
0   CoreFoundation                      0x00007fff4693fe39 __exceptionPreprocess + 256
1   libobjc.A.dylib                     0x00007fff7108c3c6 objc_exception_throw + 48
2   CoreFoundation                      0x00007fff469ba53b -[NSObject(NSObject) __retain_OA] + 0
3   CoreFoundation                      0x00007fff468e1938 ___forwarding___ + 1478
4   CoreFoundation                      0x00007fff468e12e8 _CF_forwarding_prep_0 + 120
5   Boxer                               0x00000001000fd152 -[BXShelfAppearanceApplicator _applyAppearanceToFolderAtURL:] + 626
6   Boxer                               0x00000001000fc6dd -[BXShelfAppearanceOperation main] + 637
7   Foundation                          0x00007fff48b1a1dd -[__NSOperationInternal _start:] + 685
8   Foundation                          0x00007fff48b44197 __NSOQSchedule_f + 227
9   libdispatch.dylib                   0x00007fff728035f8 _dispatch_call_block_and_release + 12
10  libdispatch.dylib                   0x00007fff7280463d _dispatch_client_callout + 8
11  libdispatch.dylib                   0x00007fff72806de6 _dispatch_continuation_pop + 414
12  libdispatch.dylib                   0x00007fff728064a3 _dispatch_async_redirect_invoke + 703
13  libdispatch.dylib                   0x00007fff728123bc _dispatch_root_queue_drain + 324
14  libdispatch.dylib                   0x00007fff72812b46 _dispatch_worker_thread2 + 90
15  libsystem_pthread.dylib             0x00007fff72a446b3 _pthread_wqthread + 583
16  libsystem_pthread.dylib             0x00007fff72a443fd start_wqthread + 13

Thread 0:: Dispatch queue: com.apple.main-thread
0   com.apple.CoreFoundation      	0x00007fff4687b657 -[__NSArrayM objectAtIndex:] + 107
1   com.apple.CoreFoundation      	0x00007fff468a8d97 CFArrayGetFirstIndexOfValue + 194
2   com.apple.CoreFoundation      	0x00007fff468e67d0 CFRunLoopRemoveObserver + 154
3   com.apple.CoreFoundation      	0x00007fff468a13ad __CFSetApplyFunction_block_invoke + 18
4   com.apple.CoreFoundation      	0x00007fff46883db6 CFBasicHashApply + 112
5   com.apple.CoreFoundation      	0x00007fff468a1382 CFSetApplyFunction + 130
6   com.apple.CoreFoundation      	0x00007fff468e685e CFRunLoopRemoveObserver + 296
7   com.apple.CoreFoundation      	0x00007fff468f3c59 CFRunLoopObserverInvalidate + 225
8   com.apple.AppKit              	0x00007fff44002c33 __65+[CATransaction(NSCATransaction) NS_setFlushesWithDisplayRefresh]_block_invoke + 760
9   com.apple.CoreFoundation      	0x00007fff468e6734 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
10  com.apple.CoreFoundation      	0x00007fff468e6669 __CFRunLoopDoObservers + 451
11  com.apple.CoreFoundation      	0x00007fff468891fe __CFRunLoopRun + 1143
12  com.apple.CoreFoundation      	0x00007fff46888b35 CFRunLoopRunSpecific + 459
13  com.apple.HIToolbox           	0x00007fff45b6796b RunCurrentEventLoopInMode + 292
14  com.apple.HIToolbox           	0x00007fff45b675ad ReceiveNextEventCommon + 355
15  com.apple.HIToolbox           	0x00007fff45b67436 _BlockUntilNextEventMatchingListInModeWithFilter + 64
16  com.apple.AppKit              	0x00007fff43f01987 _DPSNextEvent + 965
17  com.apple.AppKit              	0x00007fff43f0071f -[NSApplication(NSEvent) _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 1361
18  com.apple.AppKit              	0x00007fff43efa83c -[NSApplication run] + 699
19  com.apple.AppKit              	0x00007fff43ee9d7c NSApplicationMain + 777
20  net.washboardabs.boxer        	0x0000000100092119 main + 41
21  libdyld.dylib                 	0x00007fff728513d5 start + 1

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

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

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

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

Thread 5:
0   libsystem_kernel.dylib        	0x00007fff7298622a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff7298676c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff46889e6d __CFRunLoopServiceMachPort + 327
3   com.apple.CoreFoundation      	0x00007fff468893da __CFRunLoopRun + 1619
4   com.apple.CoreFoundation      	0x00007fff46888b35 CFRunLoopRunSpecific + 459
5   com.apple.Foundation          	0x00007fff48b0a8ef -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 280
6   net.washboardabs.boxer        	0x000000010017f632 -[ADBContinuousThread runUntilCancelled] + 210
7   net.washboardabs.boxer        	0x000000010016d1fb -[BXMIDIDeviceMonitor main] + 427
8   com.apple.Foundation          	0x00007fff48b006d2 __NSThread__start__ + 1194
9   libsystem_pthread.dylib       	0x00007fff72a452eb _pthread_body + 126
10  libsystem_pthread.dylib       	0x00007fff72a48249 _pthread_start + 66
11  libsystem_pthread.dylib       	0x00007fff72a4440d thread_start + 13

Thread 6:
0   libsystem_kernel.dylib        	0x00007fff7298622a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff7298676c mach_msg + 60
2   com.apple.audio.midi.CoreMIDI 	0x00007fff476ef3e5 XServerMachPort::ReceiveMessage(int&, void*, int&) + 95
3   com.apple.audio.midi.CoreMIDI 	0x00007fff4770b8d3 MIDIProcess::RunMIDIInThread() + 333
4   com.apple.audio.midi.CoreMIDI 	0x00007fff47721af4 XThread::RunHelper(void*) + 10
5   com.apple.audio.midi.CoreMIDI 	0x00007fff4772697d CAPThread::Entry(CAPThread*) + 77
6   libsystem_pthread.dylib       	0x00007fff72a452eb _pthread_body + 126
7   libsystem_pthread.dylib       	0x00007fff72a48249 _pthread_start + 66
8   libsystem_pthread.dylib       	0x00007fff72a4440d thread_start + 13

Thread 7:
0   libsystem_pthread.dylib       	0x00007fff72a443f0 start_wqthread + 0

Thread 8:
0   libsystem_pthread.dylib       	0x00007fff72a443f0 start_wqthread + 0

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

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

Thread 11:
0   libsystem_pthread.dylib       	0x00007fff72a443f0 start_wqthread + 0

Thread 12:
0   libsystem_pthread.dylib       	0x00007fff72a443f0 start_wqthread + 0

Thread 13 Crashed:: Dispatch queue: NSOperationQueue 0x60000021cfa0 (QOS: UNSPECIFIED)
0   libsystem_kernel.dylib        	0x00007fff7298c2c6 __pthread_kill + 10
1   libsystem_pthread.dylib       	0x00007fff72a47bf1 pthread_kill + 284
2   libsystem_c.dylib             	0x00007fff728f66a6 abort + 127
3   libc++abi.dylib               	0x00007fff6fadb641 abort_message + 231
4   libc++abi.dylib               	0x00007fff6fadb7df default_terminate_handler() + 267
5   libobjc.A.dylib               	0x00007fff7108e77b _objc_terminate() + 97
6   libc++abi.dylib               	0x00007fff6fae719e std::__terminate(void (*)()) + 8
7   libc++abi.dylib               	0x00007fff6fae7213 std::terminate() + 51
8   libdispatch.dylib             	0x00007fff72804651 _dispatch_client_callout + 28
9   libdispatch.dylib             	0x00007fff72806de6 _dispatch_continuation_pop + 414
10  libdispatch.dylib             	0x00007fff728064a3 _dispatch_async_redirect_invoke + 703
11  libdispatch.dylib             	0x00007fff728123bc _dispatch_root_queue_drain + 324
12  libdispatch.dylib             	0x00007fff72812b46 _dispatch_worker_thread2 + 90
13  libsystem_pthread.dylib       	0x00007fff72a446b3 _pthread_wqthread + 583
14  libsystem_pthread.dylib       	0x00007fff72a443fd start_wqthread + 13

Thread 14:
0   libsystem_pthread.dylib       	0x00007fff72a443f0 start_wqthread + 0

Thread 15:
0   libsystem_pthread.dylib       	0x00007fff72a443f0 start_wqthread + 0

Thread 16:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff7298622a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff7298676c mach_msg + 60
2   com.apple.CoreFoundation      	0x00007fff46889e6d __CFRunLoopServiceMachPort + 327
3   com.apple.CoreFoundation      	0x00007fff468893da __CFRunLoopRun + 1619
4   com.apple.CoreFoundation      	0x00007fff46888b35 CFRunLoopRunSpecific + 459
5   com.apple.AppKit              	0x00007fff43f096a6 _NSEventThread + 175
6   libsystem_pthread.dylib       	0x00007fff72a452eb _pthread_body + 126
7   libsystem_pthread.dylib       	0x00007fff72a48249 _pthread_start + 66
8   libsystem_pthread.dylib       	0x00007fff72a4440d thread_start + 13

Thread 17:
0   libsystem_kernel.dylib        	0x00007fff7298627e semaphore_timedwait_trap + 10
1   libdispatch.dylib             	0x00007fff72804c99 _dispatch_sema4_timedwait + 76
2   libdispatch.dylib             	0x00007fff72805378 _dispatch_semaphore_wait_slow + 58
3   libdispatch.dylib             	0x00007fff728121fd _dispatch_worker_thread + 317
4   libsystem_pthread.dylib       	0x00007fff72a452eb _pthread_body + 126
5   libsystem_pthread.dylib       	0x00007fff72a48249 _pthread_start + 66
6   libsystem_pthread.dylib       	0x00007fff72a4440d thread_start + 13

Thread 13 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x000070000d433000  rcx: 0x000070000d432808  rdx: 0x0000000000000000
  rdi: 0x000000000000b103  rsi: 0x0000000000000006  rbp: 0x000070000d432840  rsp: 0x000070000d432808
   r8: 0x000070000d4326d0   r9: 0x000070000d4328a0  r10: 0x0000000000000000  r11: 0x0000000000000206
  r12: 0x000000000000b103  r13: 0x0000003000000008  r14: 0x0000000000000006  r15: 0x000000000000002d
  rip: 0x00007fff7298c2c6  rfl: 0x0000000000000206  cr2: 0x00007fffa8f2f188
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133


Binary Images:
       0x100000000 -        0x100555fff +net.washboardabs.boxer (2.0.0-alpha - 2.0.0-alpha+20160215.1) <91F86F10-FE41-32B8-A0A5-B01759F3BAD9> /var/folders/*/Boxer.app/Contents/MacOS/Boxer
       0x1036e7000 -        0x10372dff7 +com.binarymethod.BGHUDAppKit (1.0) <FA463185-99FB-3181-ADF1-6AB60AF71CE2> /var/folders/*/Boxer.app/Contents/Frameworks/BGHUDAppKit.framework/Versions/A/BGHUDAppKit
       0x103751000 -        0x1037a8fff +SDL (1.2.14 - 1.2.14) <57529AD6-E635-3190-A6A7-B5B66562BFDC> /var/folders/*/Boxer.app/Contents/Frameworks/SDL.framework/Versions/A/SDL
       0x1037bd000 -        0x1037beff7 +SDL_net (1.2.5 - 1.2.8) <69D023EB-9817-AA8B-B3E5-A01B039E052C> /var/folders/*/Boxer.app/Contents/Frameworks/SDL_net.framework/Versions/A/SDL_net
       0x1037c1000 -        0x1037d5ff7 +net.sourceforge.munt.MT32Emu (1.5.0 - 1.5.0) <6290645C-47A7-3858-A2D9-E0A865A20B39> /var/folders/*/Boxer.app/Contents/Frameworks/MT32Emu.framework/Versions/A/MT32Emu
       0x103808000 -        0x103828fff +org.andymatuschak.Sparkle (1.6.0 - 6f24f56) <8E951750-9185-3569-88C9-10B5BDB363BC> /var/folders/*/Boxer.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
       0x103842000 -        0x103852ffb +org.dribin.dave.DDHidLib (1.1.1 - 1010.9.0) <59E7F7E0-0680-3A59-8A66-E9F49AD38C54> /var/folders/*/Boxer.app/Contents/Frameworks/DDHidLib.framework/Versions/A/DDHidLib
       0x10386b000 -        0x1038ccfff +org.libsdl.SDL-sound (1.0.3 - 1.0.3) <F26F9C4F-8F67-3AAF-BD7D-A4CE9DAAC105> /var/folders/*/Boxer.app/Contents/Frameworks/SDL_sound.framework/Versions/A/SDL_sound
       0x108519000 -        0x108526fff  com.apple.iokit.IOHIDLib (2.0.0 - 2.0.0) <29E42DD6-E804-33C2-9CE8-C1B2FF6A9C06> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Contents/MacOS/IOHIDLib
       0x1087da000 -        0x1087dd047  libobjc-trampolines.dylib (756.2) <BB7525A0-AE52-371A-8428-827BAED9E35C> /usr/lib/libobjc-trampolines.dylib
       0x1097cb000 -        0x1097cfffb  com.apple.audio.AppleHDAHALPlugIn (282.54 - 282.54) <207D25F0-B094-3569-AA6D-09B4EDD72861> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x1097d5000 -        0x1097dafff +com.surteesstudios.BartenderAudioPlugIn (1.0.0 - 1.1) <4BEFD040-641C-3502-877D-4E336ABDA86F> /Library/Audio/Plug-Ins/HAL/BartenderAudioPlugIn.plugin/Contents/MacOS/BartenderAudioPlugIn
       0x10daeb000 -        0x10db556ef  dyld (655.1.1) <CE635DB2-D47E-3C05-A0A3-6BD982E7E750> /usr/lib/dyld
    0x7fff3e8a1000 -     0x7fff3e919fff  com.apple.driver.AppleIntelHD4000GraphicsMTLDriver (12.9.22 - 12.0.9) <2C6CCD94-4E2A-3E28-BB48-6F82373AD45B> /System/Library/Extensions/AppleIntelHD4000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD4000GraphicsMTLDriver
    0x7fff42727000 -     0x7fff42903ff3  com.apple.avfoundation (2.0 - 1548.22) <733E940A-7E18-3F0C-89AC-D7C6CA289BA6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff42904000 -     0x7fff429c9fff  com.apple.audio.AVFAudio (1.0 - ???) <DDEE9303-EDD6-323D-B270-E8D2B98509FE> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff42ad1000 -     0x7fff42ad1fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <B2A0C739-1D41-3452-9D00-8C01ADA5DD99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff42ad2000 -     0x7fff42ae8fff  libCGInterfaces.dylib (506.22) <29EAAC2B-683B-397F-A79C-1E3ABAD554B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff42ae9000 -     0x7fff433ddfcb  com.apple.vImage (8.1 - ???) <B51A0BC2-012E-3D03-992F-091F2E076EB4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff433de000 -     0x7fff43584feb  libBLAS.dylib (1243.200.4) <02059CCF-0B14-3BFA-9B74-B5685219682E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff43585000 -     0x7fff435c9ff7  libBNNS.dylib (38.250.1) <AB890F6F-0B7D-3EC5-8A0E-874EAA4D0731> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff435ca000 -     0x7fff43982ff3  libLAPACK.dylib (1243.200.4) <2CD8E9C6-E489-38E1-8A08-42CBE87FAC77> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff43983000 -     0x7fff43998ffb  libLinearAlgebra.dylib (1243.200.4) <E7507B69-EF24-39D6-9B35-4A66E833C3F8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff43999000 -     0x7fff4399eff3  libQuadrature.dylib (3.200.2) <1BAE7E22-2862-379F-B334-A3756067730F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff4399f000 -     0x7fff43a1bff3  libSparse.dylib (79.200.5) <E78B33D3-672A-3C53-B512-D3DDB2E9AC8D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff43a1c000 -     0x7fff43a2effb  libSparseBLAS.dylib (1243.200.4) <069BE0D3-FEDF-3848-81B7-B5D64F511EC6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff43a2f000 -     0x7fff43bcffef  libvDSP.dylib (671.250.4) <CA46FD92-D0CB-39B5-BD26-BEB3897D3154> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff43bd0000 -     0x7fff43d44fdf  libvMisc.dylib (671.250.4) <32F2043A-9CBB-36F0-91C0-088D50C31BF1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff43d45000 -     0x7fff43d45fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <A83C1419-E651-3924-8A6D-FF7321C8AB90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff43ee7000 -     0x7fff44c9cff3  com.apple.AppKit (6.9 - 1671.50.111) <933155DC-6404-3646-B6AE-087D34F611BE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff44cee000 -     0x7fff44ceefff  com.apple.ApplicationServices (50.1 - 50.1) <4A6ACC13-2623-36B8-A196-2300980803CD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff44cef000 -     0x7fff44d5afff  com.apple.ApplicationServices.ATS (377 - 453.11.2.2) <A258DA73-114B-3102-A056-4AAAD3CEB9DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff44df3000 -     0x7fff44f0afff  libFontParser.dylib (228.6.2.3) <3602D55B-3B9E-3B3A-A814-08C1244A8AE4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff44f0b000 -     0x7fff44f4dfff  libFontRegistry.dylib (228.12.2.3) <2A56347B-2809-3407-A8B4-2AB88E484062> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff44fa7000 -     0x7fff44fd9fff  libTrueTypeScaler.dylib (228.6.2.3) <7E4C5D9C-51AF-3EC1-8FA5-11CD4BEE477A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff4503e000 -     0x7fff45042ff3  com.apple.ColorSyncLegacy (4.13.0 - 1) <B53D557C-071F-3ED9-826A-847DEB465F62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff450dd000 -     0x7fff4512fff7  com.apple.HIServices (1.22 - 628) <26A8B7C0-41CC-3DB4-99D7-BD922866DC77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff45130000 -     0x7fff4513ffff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <F5617A2A-FEA6-3832-B5BA-C2111B98786F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff45140000 -     0x7fff45189ff7  com.apple.print.framework.PrintCore (14.2 - 503.8) <57C2FE32-0E74-3079-B626-C2D52F2D2717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff4518a000 -     0x7fff451c3ff7  com.apple.QD (3.12 - 407.2) <28C7D39F-59C9-3314-BECC-67045487229C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff451c4000 -     0x7fff451d0fff  com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) <80FA7439-EC77-3CEC-B5D1-5EFE9E503E11> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff451d1000 -     0x7fff45448ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <EB71583C-58C9-3CF8-92F9-2D57B24BBD4F> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff4544a000 -     0x7fff4544afff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <121176B6-7ABE-3AFB-A252-CCED694D98D4> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff457a2000 -     0x7fff45b43fff  com.apple.CFNetwork (978.0.7 - 978.0.7) <9FDEFE50-BE1B-386E-8B3C-AEF251069E52> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff45b58000 -     0x7fff45b58fff  com.apple.Carbon (158 - 158) <AC9E8C1E-2566-3C2C-8B6B-B5B4C9A1B8B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff45b59000 -     0x7fff45b5cffb  com.apple.CommonPanels (1.2.6 - 98) <1CD6D56D-8EC7-3528-8CBC-FC69533519B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff45b5d000 -     0x7fff45e53ff7  com.apple.HIToolbox (2.1.1 - 918.5) <F7DA4F20-123B-30FB-9C27-5AB1746DEF63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff45e54000 -     0x7fff45e57ff3  com.apple.help (1.3.8 - 66) <A08517EB-8958-36C9-AEE0-1A8FEEACBE3F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff45e58000 -     0x7fff45e5dff7  com.apple.ImageCapture (9.0 - 1534.2) <DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff45e5e000 -     0x7fff45ef3ff3  com.apple.ink.framework (10.9 - 225) <7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff45ef4000 -     0x7fff45f0cff7  com.apple.openscripting (1.7 - 179.1) <9B8C1ECC-5864-3E21-9149-863E884EA25C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff45f2c000 -     0x7fff45f2dff7  com.apple.print.framework.Print (14.2 - 267.4) <A7A9D2A0-D4E0-35EF-A0F7-50521F707C33> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff45f2e000 -     0x7fff45f30ff7  com.apple.securityhi (9.0 - 55006) <05717F77-7A7B-37E6-AB3E-03F063E9095B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff45f31000 -     0x7fff45f37ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) <3CC050FB-EBCB-3087-8EA5-F378C8F99217> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff46059000 -     0x7fff46059fff  com.apple.Cocoa (6.11 - 23) <9378783B-65FE-3E78-A7D5-0D11EE9117AE> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff46067000 -     0x7fff46133ff7  com.apple.ColorSync (4.13.0 - 3340.7) <74B373AB-42C7-330D-A577-1C43BFA6024F> /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff462bf000 -     0x7fff46345fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <1E8E64E6-0E58-375A-97F7-07CB4EE181AC> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff463a9000 -     0x7fff463d3ffb  com.apple.CoreBluetooth (1.0 - 1) <F08FE8C0-DD18-37E0-B707-3EF704A73FD6> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff463d4000 -     0x7fff46766ff7  com.apple.CoreData (120 - 866.5) <E8EB8787-9802-315C-8DDB-A42DA5A78BB0> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff46767000 -     0x7fff4684eff7  com.apple.CoreDisplay (101.3 - 109.19) <B00A19C2-4A6A-388C-8AD6-33A42D10D7F0> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff4684f000 -     0x7fff46c93ff7  com.apple.CoreFoundation (6.9 - 1575.12) <B1D65801-A477-3F70-B97F-C2B43ECFF4FE> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff46c95000 -     0x7fff47341ff7  com.apple.CoreGraphics (2.0 - 1260.2) <06B01A87-6CB4-3046-9D97-595BD8A9061A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff47343000 -     0x7fff47663fff  com.apple.CoreImage (14.4.0 - 750.0.140) <96FA4D1B-AC88-305C-8F4D-D7D44657B733> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff476dd000 -     0x7fff47733ff7  com.apple.audio.midi.CoreMIDI (1.10 - 88) <B5531AC1-FEDF-331C-AE38-883809BEF972> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x7fff47736000 -     0x7fff4795ffff  com.apple.CoreML (1.0 - 1) <9EC1FED2-BA47-307B-A326-43C4D05166E7> /System/Library/Frameworks/CoreML.framework/Versions/A/CoreML
    0x7fff47960000 -     0x7fff47a64ff7  com.apple.CoreMedia (1.0 - 2288.40) <9BB054FB-68F1-3F03-A8B3-3E55471A6F9B> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff47a65000 -     0x7fff47ac0fff  com.apple.CoreMediaIO (900.0 - 5050.1) <D4105C95-50F3-35F4-A132-B9A2FA653704> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff47ac1000 -     0x7fff47ac1fff  com.apple.CoreServices (945 - 945) <E937BA69-19D5-3A30-B31E-8A6B94E9D9A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff47ac2000 -     0x7fff47b3eff7  com.apple.AE (773 - 773) <55AE7C9E-27C3-30E9-A047-3B92A6FD53B4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff47b3f000 -     0x7fff47e16fff  com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) <52F5484E-94B1-37B7-B1AC-E210DF5721AE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff47e17000 -     0x7fff47e5fff7  com.apple.DictionaryServices (1.2 - 284.16.4) <C3D15FD1-759B-3815-8128-42D8220BC459> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff47e60000 -     0x7fff47e68ffb  com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) <8406D379-8D33-3611-861B-7ABD26DB50D2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff47e69000 -     0x7fff4801bfff  com.apple.LaunchServices (945 - 945) <05FA145B-75AA-3AE6-BB82-F156B29F4FF1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff4801c000 -     0x7fff480baff7  com.apple.Metadata (10.7.0 - 1191.57) <BFFAED00-2560-318A-BB8F-4E7E5123EC61> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff480bb000 -     0x7fff48105ff7  com.apple.CoreServices.OSServices (945 - 945) <119C5548-59C3-3F94-B23F-8AF02CA10EAA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff48106000 -     0x7fff4816dff7  com.apple.SearchKit (1.4.0 - 1.4.0) <DA08AA6F-A6F1-36C0-87F4-E26294E51A3A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff4816e000 -     0x7fff4818fff3  com.apple.coreservices.SharedFileList (71.28 - 71.28) <487A8464-729E-305A-B5D1-E3FE8EB9CFC5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff4849a000 -     0x7fff485fcff3  com.apple.CoreText (352.0 - 584.26.3.2) <A99FD623-7F6E-3C77-8241-E98F664EC039> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff485fd000 -     0x7fff4863cfff  com.apple.CoreVideo (1.8 - 0.0) <1AD23C58-E68E-329B-A1FA-6BF7DD577687> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff4863d000 -     0x7fff486ccfff  com.apple.framework.CoreWLAN (13.0 - 1375.2) <F2EA31D8-53BF-32E8-B537-64B4F2BF4B6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff4884f000 -     0x7fff488fdfff  com.apple.DiscRecording (9.0.3 - 9030.4.5) <D7A28B57-C025-3D44-BB17-82243B7B91BC> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff48923000 -     0x7fff48928ffb  com.apple.DiskArbitration (2.7 - 2.7) <F481F2C0-884E-3265-8111-ABBEC93F0920> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff48aee000 -     0x7fff48e9bfff  com.apple.Foundation (6.9 - 1575.12) <AD258ED7-64AE-367C-AE5F-48D45089D9F2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff48f0a000 -     0x7fff48f39ffb  com.apple.GSS (4.0 - 2.0) <E41430E5-713B-3E53-BF7E-A3991A881B62> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff49039000 -     0x7fff49143fff  com.apple.Bluetooth (6.0.12 - 6.0.12f1) <58A607F0-A818-3535-A7BD-858D5BB0A807> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff491a5000 -     0x7fff49234fff  com.apple.framework.IOKit (2.0.2 - 1483.260.4) <CCA92450-8808-37EC-B68E-2C2846B086CE> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff49236000 -     0x7fff49245ffb  com.apple.IOSurface (255.5.4 - 255.5.4) <83F58E47-0D06-3E78-9D19-D38D3205464B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff49246000 -     0x7fff49298ff3  com.apple.ImageCaptureCore (1.0 - 1534.2) <27942C51-8108-3ED9-B37E-7C365A31EC2D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff49299000 -     0x7fff49427fff  com.apple.ImageIO.framework (3.3.0 - 1850.2) <DC226D07-C52D-3440-9027-D3EA33DD99B2> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff49428000 -     0x7fff4942cffb  libGIF.dylib (1850.2) <F5D1AA0A-4EB4-37C0-89AA-C71FB53405F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff4942d000 -     0x7fff4950aff7  libJP2.dylib (1850.2) <2DE256E2-FA27-38A3-BFDF-5C1E0A135BCB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff4950b000 -     0x7fff49530fff  libJPEG.dylib (1850.2) <16A9719C-DB6E-37EE-B62F-DD81A822160A> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff497f4000 -     0x7fff4981aff7  libPng.dylib (1850.2) <EFB3874A-3ABB-3EC7-8708-0110ECFFE169> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff4981b000 -     0x7fff4981dffb  libRadiance.dylib (1850.2) <19C26767-DE6D-3DE9-B5ED-F6BF148FBDBC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff4981e000 -     0x7fff4986bffb  libTIFF.dylib (1850.2) <527F8740-9B75-39D6-AFD9-519817724B5D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff49b66000 -     0x7fff4a9caff3  com.apple.JavaScriptCore (14607 - 14607.2.6.1.1) <63604178-EF3B-3CD3-AD4B-F4189963C51D> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff4a9e2000 -     0x7fff4a9fbfff  com.apple.Kerberos (3.0 - 1) <DB1E0679-37E1-3B93-9789-32F63D660C3B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff4acb5000 -     0x7fff4acbffff  com.apple.MediaAccessibility (1.0 - 114.4) <76C449C5-DB45-3D7F-BFAD-3DACEF15DA21> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff4ad6f000 -     0x7fff4b415ff7  com.apple.MediaToolbox (1.0 - 2288.40) <0629E756-3D2A-36A4-B25F-9C050FC859B5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff4b417000 -     0x7fff4b4bfff7  com.apple.Metal (161.9.16 - 161.9.16) <A93AA7FC-B72A-3CBF-9932-81DDDFA1DFCD> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff4b4c1000 -     0x7fff4b4daff3  com.apple.MetalKit (1.0 - 113) <51CDE966-54A7-3556-971B-1173E9986BB8> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
    0x7fff4b4db000 -     0x7fff4b4faff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) <EE85B6D5-5C12-3CE8-8C33-54A203EDC76E> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff4b4fb000 -     0x7fff4b577fe7  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) <5A78F2DC-9D2B-37BA-B21F-ECFFCC6F7720> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff4b578000 -     0x7fff4b59ffff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) <096DB3E6-7DDF-3B47-857A-46A203642ACF> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff4b5a0000 -     0x7fff4b6cbff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) <D2128338-F1E8-3BEE-A729-AC13A524DD78> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff4b6cc000 -     0x7fff4b6e6fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) <ADA5A93C-F79E-3931-840D-48C6B6B305EA> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff4b6e7000 -     0x7fff4b6e8ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <515A92B3-A23B-3AC2-8D1B-85B248595B76> /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff4c4df000 -     0x7fff4c4ebff7  com.apple.NetFS (6.0 - 4.0) <E917806F-0607-3292-B2D6-A15404D61B99> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff4ef89000 -     0x7fff4efe0ff7  com.apple.opencl (2.15.3 - 2.15.3) <AA9CE8F7-DB7C-35A5-A019-2207D1BBFF38> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff4efe1000 -     0x7fff4effcff7  com.apple.CFOpenDirectory (10.14 - 207.200.4) <F03D84EB-49B2-3A00-9127-B9A269824026> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff4effd000 -     0x7fff4f008ffb  com.apple.OpenDirectory (10.14 - 207.200.4) <A8020CEE-5B78-3581-A735-EA2833683F31> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff4f958000 -     0x7fff4f95afff  libCVMSPluginSupport.dylib (17.7.2) <247121BB-626C-318E-B24E-3D436E752DF7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff4f95b000 -     0x7fff4f960ff3  libCoreFSCache.dylib (166.2) <222C2A4F-7E32-30F6-8459-2FAB98073A3D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff4f961000 -     0x7fff4f965fff  libCoreVMClient.dylib (166.2) <6789ECD4-91DD-32EF-A1FD-F27D2344CD8B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff4f966000 -     0x7fff4f96eff7  libGFXShared.dylib (17.7.2) <B75A6E93-E5BE-32A8-8D46-00D8E909DFD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff4f96f000 -     0x7fff4f97afff  libGL.dylib (17.7.2) <E88FF023-7E15-3E95-88FD-6C415550F769> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff4f97b000 -     0x7fff4f9b5fe7  libGLImage.dylib (17.7.2) <B4C140F3-AF8C-30C8-A03E-B16A20BB05A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff4fb29000 -     0x7fff4fb67fff  libGLU.dylib (17.7.2) <EA69FA36-3F20-337C-A6B3-EC49DC2F12F5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff50504000 -     0x7fff50513ffb  com.apple.opengl (17.7.2 - 17.7.2) <8EFFA6F9-ABE8-3131-9D3F-37E9796DDF34> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff50890000 -     0x7fff509d9ff7  com.apple.QTKit (7.7.3 - 3040) <62DEEB24-E90A-3919-8B13-6A8840C6E800> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff509da000 -     0x7fff50c2efff  com.apple.imageKit (3.0 - 1067) <4F398AF4-828E-3FC2-9E3D-4EE3F36F7619> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff50c2f000 -     0x7fff50d1bfff  com.apple.PDFKit (1.0 - 745.3) <96FCB240-CB6C-395E-8BBC-F0A5C223F557> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff50d1c000 -     0x7fff511ebff7  com.apple.QuartzComposer (5.1 - 370) <9C59494E-8D09-359E-B457-AA893520984C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff511ec000 -     0x7fff51212ff7  com.apple.quartzfilters (1.10.0 - 83.1) <1CABB0FA-A6DB-3DD5-A598-F298F081E04E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff51213000 -     0x7fff51314ff7  com.apple.QuickLookUIFramework (5.0 - 775.6) <11B2F7F1-818B-353C-BBC9-3BC0C0DCE637> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff51315000 -     0x7fff51315fff  com.apple.quartzframework (1.5 - 23) <62B9AB40-3BE3-3A81-B132-3168898BD748> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff51316000 -     0x7fff5156cfff  com.apple.QuartzCore (1.11 - 699.27.4.1) <BB3BBD58-84DF-3849-B4ED-5FF8DA4015B8> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff5156d000 -     0x7fff515c4fff  com.apple.QuickLookFramework (5.0 - 775.6) <FB5BBD33-7AA6-34C0-9121-59C98F9B1A3D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff5178b000 -     0x7fff517a2ff7  com.apple.SafariServices.framework (14607 - 14607.2.6.1.1) <EBBD0D29-808F-313A-AC14-A1AD5FB90DA4> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff51d88000 -     0x7fff51da0fff  com.apple.ScriptingBridge (1.4 - 78) <DCF38614-C6E9-3EB1-88F9-985F247A57B9> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x7fff51da1000 -     0x7fff520a0fff  com.apple.security (7.0 - 58286.260.20) <59B4100E-5A31-3EF4-954A-2A69341995F3> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff520a1000 -     0x7fff5212dfff  com.apple.securityfoundation (6.0 - 55185.260.1) <DB8EB672-5D3A-3082-A62E-4D75C81D94A4> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff5212e000 -     0x7fff5215effb  com.apple.securityinterface (10.0 - 55109.200.8) <4F6896A5-4947-39A9-817A-3C23D97946AD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff5215f000 -     0x7fff52163fff  com.apple.xpc.ServiceManagement (1.0 - 1) <4AD0F8EE-884C-3FA7-85D9-27F201BC3C64> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff524fb000 -     0x7fff52568fff  com.apple.SystemConfiguration (1.17 - 1.17) <1562078D-3251-31B2-B9C6-2667C567F883> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff527c7000 -     0x7fff52b26ff7  com.apple.VideoToolbox (1.0 - 2288.40) <17BD9E7F-3B8E-3B62-BACE-AE04824F4B7B> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff52dfb000 -     0x7fff53408ff7  libwebrtc.dylib (7607.2.6.1.1) <3F40BD92-BDB6-3969-B898-F519ED661E55> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/Frameworks/libwebrtc.dylib
    0x7fff53409000 -     0x7fff54dd8ff7  com.apple.WebCore (14607 - 14607.2.6.1.1) <EB94C3FF-2425-3954-9386-D47EDE2DF373> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff54dd9000 -     0x7fff54fcaff3  com.apple.WebKitLegacy (14607 - 14607.2.6.1.1) <33D50B13-5473-3DDF-9D2B-D39E00CB8C79> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff54fcb000 -     0x7fff55516fff  com.apple.WebKit (14607 - 14607.2.6.1.1) <019283CC-5A1D-34FE-85CD-307B8C15D637> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff557e7000 -     0x7fff5588cfeb  com.apple.APFS (1.0 - 1) <C001DCC2-32BE-327A-AE03-281885BD93BF> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff55e17000 -     0x7fff55e21fff  com.apple.accessibility.AXCoreUtilities (1.0 - 1) <5C32D5F7-4A89-3262-B3AC-461603A69E42> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/Versions/A/AXCoreUtilities
    0x7fff5629e000 -     0x7fff5629fff7  com.apple.AggregateDictionary (1.0 - 1) <A6AF8AC4-1F25-37C4-9157-A02E9C200926> /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff5665a000 -     0x7fff5679dfff  com.apple.AnnotationKit (1.0 - 232.3.30) <A35C5450-FBA1-3E76-9F27-4ED0179AE6A6> /System/Library/PrivateFrameworks/AnnotationKit.framework/Versions/A/AnnotationKit
    0x7fff5689d000 -     0x7fff568c9ff7  com.apple.framework.Apple80211 (13.0 - 1380.2) <3850E3A9-E00A-374E-87EA-AB01E503E769> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff569f1000 -     0x7fff56a00fc7  com.apple.AppleFSCompression (96.200.3 - 1.0) <3CF60CE8-976E-3CB8-959D-DD0948C1C2DE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff56afc000 -     0x7fff56b07fff  com.apple.AppleIDAuthSupport (1.0 - 1) <2E9D1398-DBE6-328B-ADDA-20FA5FAD7405> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff56b48000 -     0x7fff56b91ff3  com.apple.AppleJPEG (1.0 - 1) <4C1F426B-7D77-3980-9633-7DBD8C666B9A> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff56de5000 -     0x7fff56e07fff  com.apple.applesauce (1.0 - ???) <F49107C7-3C51-3024-8EF1-C57643BE4F3B> /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff56ec7000 -     0x7fff56ecaff7  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <F6FBF74B-0512-39DB-A1DA-69610D69186D> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff56ecb000 -     0x7fff56f1bff7  com.apple.AppleVAFramework (5.1.4 - 5.1.4) <63EBC1A7-25B5-3FF2-AA73-BB378B5FE8D4> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff56f66000 -     0x7fff56f7affb  com.apple.AssertionServices (1.0 - 1) <11FC4241-6069-3B3A-9BCE-9B68F3A4D2AB> /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff57349000 -     0x7fff57435ff7  com.apple.AuthKit (1.0 - 1) <34496FD5-4BAB-3DF3-BF7F-70F38C66848D> /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff575f7000 -     0x7fff575fffff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) <2A396FC0-7B79-3088-9A82-FB93C1181A57> /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff57600000 -     0x7fff57695fff  com.apple.backup.framework (1.10.5 - ???) <BAFC1D7F-9D75-3C45-AAD4-569D13E445C5> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff57696000 -     0x7fff57703ff3  com.apple.BaseBoard (360.28 - 360.28) <DBE27FB4-3FFD-3E9A-846C-F6E7D797286A> /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff5770c000 -     0x7fff57712ff3  com.apple.BezelServicesFW (317.1 - 317.1) <FEF16A10-E460-31F9-803A-55F7030B17F7> /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServices
    0x7fff58561000 -     0x7fff585b0ff7  com.apple.ChunkingLibrary (201 - 201) <DFE16C42-24E6-386F-AC50-0058F61980A2> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff586ca000 -     0x7fff5874fff7  com.apple.CloudDocs (1.0 - 575.302) <524BC6E6-9AF7-3DBE-8FC5-BD35B7A94B55> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff5936d000 -     0x7fff59376ffb  com.apple.CommonAuth (4.0 - 2.0) <81C987FD-69EB-344B-94D9-B9D93624D257> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff5980f000 -     0x7fff59bf2fef  com.apple.CoreAUC (274.0.0 - 274.0.0) <C71F1581-E73B-3DA0-958B-E912C3FB3F23> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff59bf3000 -     0x7fff59c21ff7  com.apple.CoreAVCHD (6.0.0 - 6000.4.1) <A04A99B8-DAC5-36FC-BAC7-7431600C1F89> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff59c41000 -     0x7fff59c5ffff  com.apple.CoreAnalytics.CoreAnalytics (1.0 - 1) <5AFC8A18-30CA-3D29-A509-DF21AC4DB921> /System/Library/PrivateFrameworks/CoreAnalytics.framework/Versions/A/CoreAnalytics
    0x7fff59cb7000 -     0x7fff59d14ff7  com.apple.corebrightness (1.0 - 1) <998DECDF-0DFF-38FA-B5A5-6174B6615E00> /System/Library/PrivateFrameworks/CoreBrightness.framework/Versions/A/CoreBrightness
    0x7fff5a04e000 -     0x7fff5a05fff7  com.apple.CoreEmoji (1.0 - 69.19.9) <228457B3-E191-356E-9A5B-3C0438D05FBA> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff5a207000 -     0x7fff5a2f6fff  com.apple.CoreHandwriting (161 - 1.2) <7CBB18C3-FE95-3352-9D67-B441E89AD10F> /System/Library/PrivateFrameworks/CoreHandwriting.framework/Versions/A/CoreHandwriting
    0x7fff5a4c8000 -     0x7fff5a4deffb  com.apple.CoreMediaAuthoring (2.2 - 959) <822B4E1A-6177-3E0A-867E-0B477A54EC17> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff5a608000 -     0x7fff5a66eff7  com.apple.CoreNLP (1.0 - 130.15.22) <27877820-17D0-3B02-8557-4014E876CCC7> /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff5a7d5000 -     0x7fff5a7d9ff7  com.apple.CoreOptimization (1.0 - 1) <1C724E01-E9FA-3AEE-BE4B-C4DB8EC0C812> /System/Library/PrivateFrameworks/CoreOptimization.framework/Versions/A/CoreOptimization
    0x7fff5a7da000 -     0x7fff5a866fff  com.apple.CorePDF (4.0 - 414) <E4ECDD15-34C0-30C2-AFA9-27C8EDAC3DB0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff5a91b000 -     0x7fff5a923ff7  com.apple.CorePhoneNumbers (1.0 - 1) <7A826DA2-4725-39D8-AF27-6F034DC53C4E> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff5a924000 -     0x7fff5a97aff7  com.apple.CorePrediction (1.0 - 1) <A66C8A6F-C3B2-3547-985D-C62C62F9FA48> /System/Library/PrivateFrameworks/CorePrediction.framework/Versions/A/CorePrediction
    0x7fff5aa9f000 -     0x7fff5aad0ff3  com.apple.CoreServicesInternal (358 - 358) <DD6EF60D-048F-3186-83DA-EB191EDF48AE> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff5ae97000 -     0x7fff5af1bfff  com.apple.CoreSymbolication (10.2 - 64490.25.1) <28B2FF2D-3FDE-3A20-B343-341E5BD4E22F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff5afab000 -     0x7fff5b0d6ff7  com.apple.coreui (2.1 - 499.10) <105F61F3-D0AE-332B-A485-8615187BB409> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff5b0d7000 -     0x7fff5b275fff  com.apple.CoreUtils (5.8 - 580.19) <CF9C5677-4946-3328-8CE3-C70F2E8599D8> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff5b2c9000 -     0x7fff5b32cff7  com.apple.framework.CoreWiFi (13.0 - 1375.2) <77E078A7-A34F-333B-B50F-8829537D6E9D> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff5b32d000 -     0x7fff5b33eff7  com.apple.CrashReporterSupport (10.13 - 938.25) <C7665EC7-9389-3717-B152-A59D7872C63C> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff5b3ce000 -     0x7fff5b3ddfff  com.apple.framework.DFRFoundation (1.0 - 211.1) <E3F02F2A-2059-39CC-85DA-969676EB88EB> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff5b3de000 -     0x7fff5b3e2fff  com.apple.DSExternalDisplay (3.1 - 380) <645C719D-05D4-3CD7-84D7-4C5218859E0C> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff5b463000 -     0x7fff5b4d8ff3  com.apple.datadetectorscore (7.0 - 590.24) <72F0CBF1-D3E9-36C5-B877-F42E1EC59A0E> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff5b524000 -     0x7fff5b561ff7  com.apple.DebugSymbols (190 - 190) <6F4FAACA-E06B-38AD-A0C2-14EA5408A231> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff5b562000 -     0x7fff5b69dff7  com.apple.desktopservices (1.13.5 - ???) <4AF2E011-2CB0-3588-83CB-882ADDA78CAD> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff5b8a9000 -     0x7fff5b96ffff  com.apple.DiskManagement (12.1 - 1555) <15C076CB-FE60-30F1-93DC-A9F6A0048899> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManagement
    0x7fff5b970000 -     0x7fff5b974ffb  com.apple.DisplayServicesFW (3.1 - 380) <92947649-CB60-394E-8445-C92564F96466> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff5ba1b000 -     0x7fff5ba1eff3  com.apple.EFILogin (2.0 - 2) <8023157A-05A3-3FB0-967A-BC30710E8350> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff5c154000 -     0x7fff5c436ff7  com.apple.vision.EspressoFramework (1.0 - 120) <0E116245-4F64-3A42-AEE2-484F445D3916> /System/Library/PrivateFrameworks/Espresso.framework/Versions/A/Espresso
    0x7fff5c5da000 -     0x7fff5c9f5fff  com.apple.vision.FaceCore (3.3.4 - 3.3.4) <A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff5ca26000 -     0x7fff5caabff7  com.apple.FileProvider (125.130 - 125.130) <D95A997E-33E6-3427-9A4B-B16756ACBA0B> /System/Library/PrivateFrameworks/FileProvider.framework/Versions/A/FileProvider
    0x7fff602a9000 -     0x7fff602aafff  libmetal_timestamp.dylib (902.3.2) <05389463-AF2E-33E2-A14F-1416E4A30835> /System/Library/PrivateFrameworks/GPUCompiler.framework/Versions/3902/Libraries/libmetal_timestamp.dylib
    0x7fff6194a000 -     0x7fff6194ffff  com.apple.GPUWrangler (3.40.16 - 3.40.16) <B9D4F2DD-5D11-32FF-B5BE-29E137458728> /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff61cdc000 -     0x7fff61d00ff3  com.apple.GenerationalStorage (2.0 - 285.101) <84C2E52C-F2C6-3FF8-87E5-3C88A40D3881> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff6275a000 -     0x7fff62769fff  com.apple.GraphVisualizer (1.0 - 5) <48D020B7-5938-3FAE-B468-E291AEE2C06F> /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff6276a000 -     0x7fff62777ff7  com.apple.GraphicsServices (1.0 - 1.0) <56646B62-B331-31DC-80EB-7996DCAB6944> /System/Library/PrivateFrameworks/GraphicsServices.framework/Versions/A/GraphicsServices
    0x7fff628b9000 -     0x7fff6292dffb  com.apple.Heimdal (4.0 - 2.0) <5E8F6B79-960D-3030-B889-D29A4015D205> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff63c1c000 -     0x7fff63c23ffb  com.apple.IOAccelerator (404.9 - 404.9) <F9C604B3-3DF7-3EE7-8A44-7877FAF2E6A4> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff63c27000 -     0x7fff63c3ffff  com.apple.IOPresentment (1.0 - 42.6) <55CB91EF-90F1-3D0A-A59E-2F75CD2EB4AE> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff63fe7000 -     0x7fff64014ff7  com.apple.IconServices (379 - 379) <7BAD562D-4FA3-3E11-863C-1EEBE2406D2C> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff6413e000 -     0x7fff64142ffb  com.apple.InternationalSupport (1.0 - 10.15.6) <6226A905-D055-321D-B665-5B0CC4798A74> /System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/InternationalSupport
    0x7fff642a8000 -     0x7fff642baff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) <5AAC527E-D197-39B2-A6C9-E0D0FB9CA9B9> /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff642d5000 -     0x7fff643b0ff7  com.apple.LanguageModeling (1.0 - 159.15.15) <3DE3CE61-542B-37B7-883E-4B9717CAC65F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff643b1000 -     0x7fff643edff7  com.apple.Lexicon-framework (1.0 - 33.15.10) <4B5E843E-2809-3E70-9560-9254E2656419> /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff643f4000 -     0x7fff643f9fff  com.apple.LinguisticData (1.0 - 238.25) <61910887-D5CE-3567-9A5F-6DFEC942EC1F> /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff64c17000 -     0x7fff64c1afff  com.apple.Mangrove (1.0 - 25) <537A5B2E-4C30-3CFD-8BDC-79F9A04AC327> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff64ca1000 -     0x7fff64cc7ff3  com.apple.MarkupUI (1.0 - 232.3.30) <C6A452D8-CA97-3044-A025-8ED4B7264FE2> /System/Library/PrivateFrameworks/MarkupUI.framework/Versions/A/MarkupUI
    0x7fff64d2f000 -     0x7fff64d62ff7  com.apple.MediaKit (16 - 906) <A5938E64-A0D0-395F-B8D7-D9B179415E2E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff650ee000 -     0x7fff65116ff7  com.apple.spotlight.metadata.utilities (1.0 - 1191.57) <38BB1FB7-3336-384C-B71F-4D0D402EB606> /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff65117000 -     0x7fff651a4ff7  com.apple.gpusw.MetalTools (1.0 - 1) <DBC4718E-F588-382D-A415-405D0028804D> /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff65351000 -     0x7fff6536cffb  com.apple.MobileKeyBag (2.0 - 1.0) <4678FECE-538B-381C-80F2-27AA4805F160> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff6537f000 -     0x7fff653f4fff  com.apple.Montreal (1.0 - 42.15.9) <17BFD046-4362-3A76-A496-648D00FF3743> /System/Library/PrivateFrameworks/Montreal.framework/Versions/A/Montreal
    0x7fff653f5000 -     0x7fff6541fffb  com.apple.MultitouchSupport.framework (2450.1 - 2450.1) <3BF81F33-89A8-3A2D-84B3-B343020B6D98> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff6565b000 -     0x7fff65665fff  com.apple.NetAuth (6.2 - 6.2) <0D01BBE5-0269-310D-B148-D19DAE143DEB> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff65ec6000 -     0x7fff65f17ff3  com.apple.OTSVG (1.0 - ???) <3976F8CC-1CFB-3E09-9009-FE985550565B> /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff66fa8000 -     0x7fff6709bfff  com.apple.PencilKit (1.0 - 1) <79225726-6980-3680-AC0B-D8C5C5DB2224> /System/Library/PrivateFrameworks/PencilKit.framework/Versions/A/PencilKit
    0x7fff6709c000 -     0x7fff670abff7  com.apple.PerformanceAnalysis (1.218.2 - 218.2) <65F3DB3E-6D4E-33A0-B510-EF768D323DAB> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff68ada000 -     0x7fff68aebffb  com.apple.PowerLog (1.0 - 1) <4883AC77-F1EB-386F-B3E7-AEA56AD28CDB> /System/Library/PrivateFrameworks/PowerLog.framework/Versions/A/PowerLog
    0x7fff68ee6000 -     0x7fff68f3affb  com.apple.ProtectedCloudStorage (1.0 - 1) <4664F8D2-3DE3-3AF8-8F1B-47A22D27A63A> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff68f3b000 -     0x7fff68f59ff7  com.apple.ProtocolBuffer (1 - 263.2) <907D6C95-D050-31DE-99CA-16A5135BC6F9> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff690d7000 -     0x7fff690daff3  com.apple.QuickLookNonBaseSystem (1.0 - 1) <EDDFEBCC-E628-3DE8-8619-0265AAD2303A> /System/Library/PrivateFrameworks/QuickLookNonBaseSystem.framework/Versions/A/QuickLookNonBaseSystem
    0x7fff690db000 -     0x7fff690f0ff3  com.apple.QuickLookThumbnailing (1.0 - 1) <B5E746AE-1DCB-3299-8626-10CCCBC2D5EE> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fff690f1000 -     0x7fff69141fff  com.apple.ROCKit (27.6 - 27.6) <756C2253-E8B1-3C48-9945-DE8D6AD24DE2> /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
    0x7fff69276000 -     0x7fff69281fff  com.apple.xpc.RemoteServiceDiscovery (1.0 - 1336.261.2) <4DCA0403-5482-3602-AD23-6B8E4C72C231> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/Versions/A/RemoteServiceDiscovery
    0x7fff69294000 -     0x7fff692b6fff  com.apple.RemoteViewServices (2.0 - 128) <8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff692b7000 -     0x7fff692caff3  com.apple.xpc.RemoteXPC (1.0 - 1336.261.2) <88075C7F-64C4-3AB0-800F-9730C1B7A26E> /System/Library/PrivateFrameworks/RemoteXPC.framework/Versions/A/RemoteXPC
    0x7fff69ff4000 -     0x7fff6a03dfff  com.apple.Safari.SafeBrowsing (14607 - 14607.2.6.1.1) <9083E333-A8A3-32AF-AB92-39DC0EC4FC4B> /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/Versions/A/SafariSafeBrowsing
    0x7fff6aabb000 -     0x7fff6abd9fff  com.apple.Sharing (1288.43 - 1288.43) <B9AB8C05-F2F2-371F-A9AF-1D139E2CE54C> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff6b9ea000 -     0x7fff6bc98ffb  com.apple.SkyLight (1.600.0 - 340.26) <CD2A7069-6CEA-3737-9E9D-7AE2FED912AB> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff6c43a000 -     0x7fff6c446fff  com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) <7A6A67DB-C813-328E-AAFB-D267A5B50B3D> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff6c4f8000 -     0x7fff6c75bff3  com.apple.spotlight.index (10.7.0 - 1191.57) <04DE70D5-D9C4-3886-A3DB-6E32040D69E3> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/SpotlightIndex
    0x7fff6cb97000 -     0x7fff6cc22fc7  com.apple.Symbolication (10.2 - 64490.38.1) <9FDCC98D-5B32-35AD-A9BF-94DF2B78507F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff6cc23000 -     0x7fff6cc2bffb  com.apple.SymptomDiagnosticReporter (1.0 - 820.267.1) <DB68EC08-EC2D-35DC-8D34-B4A2C36A9DE9> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/Versions/A/SymptomDiagnosticReporter
    0x7fff6d0f9000 -     0x7fff6d105ff7  com.apple.private.SystemPolicy (1.0 - 1) <D0883FE8-B047-3EDC-9DB7-32B80D5BABC5> /System/Library/PrivateFrameworks/SystemPolicy.framework/Versions/A/SystemPolicy
    0x7fff6d10a000 -     0x7fff6d116ffb  com.apple.TCC (1.0 - 1) <968ECAE1-FBB9-3478-BDCE-85E54B6C422D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff6d37c000 -     0x7fff6d444ff3  com.apple.TextureIO (3.8.4 - 3.8.1) <7CEAC05A-D283-3D5A-B1E3-C849285FA0BF> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff6d501000 -     0x7fff6d6b7ff7  com.apple.UIFoundation (1.0 - 551) <E9D17DAD-230D-390A-B117-3D100C5AF5F2> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff6d705000 -     0x7fff6d70bffb  com.apple.URLFormatting (59 - 59.42) <E3CF4159-0195-3E61-8806-CEC75A313C77> /System/Library/PrivateFrameworks/URLFormatting.framework/Versions/A/URLFormatting
    0x7fff6e333000 -     0x7fff6e40cfff  com.apple.ViewBridge (401.1 - 401.1) <18144EC1-5DEF-369C-8EBA-2826E7142784> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff6e84f000 -     0x7fff6eac0fff  libAWDSupportFramework.dylib (2128) <F0DEF979-B44A-3F1D-B433-59D74B905955> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libAWDSupportFramework.dylib
    0x7fff6eac1000 -     0x7fff6ead2fff  libprotobuf-lite.dylib (2128) <01384CD9-734E-3614-B55E-8FDCF8AF7A5B> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf-lite.dylib
    0x7fff6ead3000 -     0x7fff6eb2dfff  libprotobuf.dylib (2128) <7E183D4E-E6F6-3FAC-8AEA-9842B050F331> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/Libraries/libprotobuf.dylib
    0x7fff6eb2e000 -     0x7fff6eb6fff7  com.apple.awd (1.0 - 930.11) <99842C06-BBA9-339A-A235-F8195F2DDEB9> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/Versions/A/WirelessDiagnostics
    0x7fff6ebe3000 -     0x7fff6ebe6fff  com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) <7AE3457F-AF40-3508-93FB-1D9E31EB1C9D> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff6efe7000 -     0x7fff6efe9ffb  com.apple.loginsupport (1.0 - 1) <3F8D6334-BCD6-36C1-BA20-CC8503A84375> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff6f223000 -     0x7fff6f237ffb  libAccessibility.dylib (2402.92) <DC4EB84A-15EF-3B09-ADE4-D8226AFBC15E> /usr/lib/libAccessibility.dylib
    0x7fff6f2b3000 -     0x7fff6f2e7fff  libCRFSuite.dylib (41.15.4) <406DAC06-0C77-3F90-878B-4D38F11F0256> /usr/lib/libCRFSuite.dylib
    0x7fff6f2ea000 -     0x7fff6f2f4ff7  libChineseTokenizer.dylib (28.15.3) <9B7F6109-3A5D-3641-9A7E-31D2239D73EE> /usr/lib/libChineseTokenizer.dylib
    0x7fff6f2f5000 -     0x7fff6f37efff  libCoreStorage.dylib (546.50.1) <8E643B27-7986-3351-B37E-038FB6794BF9> /usr/lib/libCoreStorage.dylib
    0x7fff6f382000 -     0x7fff6f383ffb  libDiagnosticMessagesClient.dylib (107) <A14D0819-0970-34CD-8680-80E4D7FE8C2C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff6f3ba000 -     0x7fff6f611ff3  libFosl_dynamic.dylib (18.3.4) <45E50221-1A39-3AB3-8267-C1E4E39ECF83> /usr/lib/libFosl_dynamic.dylib
    0x7fff6f631000 -     0x7fff6f638fff  libMatch.1.dylib (31.200.1) <EF8164CB-B599-39D9-9E73-4958A372DC0B> /usr/lib/libMatch.1.dylib
    0x7fff6f662000 -     0x7fff6f680fff  libMobileGestalt.dylib (645.260.6) <0232958E-1EF2-3627-B8FF-09C6522594C7> /usr/lib/libMobileGestalt.dylib
    0x7fff6f681000 -     0x7fff6f681fff  libOpenScriptingUtil.dylib (179.1) <4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff6f7c1000 -     0x7fff6f7c2ffb  libSystem.B.dylib (1252.250.1) <1A13E822-B59C-3A36-A2E4-9968149714F9> /usr/lib/libSystem.B.dylib
    0x7fff6f7c3000 -     0x7fff6f83dff7  libTelephonyUtilDynamic.dylib (3705) <FB760750-6327-36E5-A265-E0F9D9FAF559> /usr/lib/libTelephonyUtilDynamic.dylib
    0x7fff6f83e000 -     0x7fff6f83ffff  libThaiTokenizer.dylib (2.15.1) <ADB37DC3-7D9B-3E73-A72A-BCC3433C937A> /usr/lib/libThaiTokenizer.dylib
    0x7fff6f851000 -     0x7fff6f867ffb  libapple_nghttp2.dylib (1.24.1) <6F04250A-6686-3FDC-9A8D-290C64B06502> /usr/lib/libapple_nghttp2.dylib
    0x7fff6f868000 -     0x7fff6f891ffb  libarchive.2.dylib (54.250.1) <47289946-8504-3966-9127-6CE39993DC2C> /usr/lib/libarchive.2.dylib
    0x7fff6f892000 -     0x7fff6f991fef  libate.dylib (1.13.8) <461F7EA4-05E2-3091-8905-473A63A75300> /usr/lib/libate.dylib
    0x7fff6f995000 -     0x7fff6f995ff3  libauto.dylib (187) <3E3780E1-96F3-3A22-91C5-92F9A5805518> /usr/lib/libauto.dylib
    0x7fff6fa65000 -     0x7fff6fa75ffb  libbsm.0.dylib (39.200.18) <CF381E0B-025B-364F-A83D-2527E03F1AA3> /usr/lib/libbsm.0.dylib
    0x7fff6fa76000 -     0x7fff6fa83fff  libbz2.1.0.dylib (38.200.3) <272953A1-8D36-329B-BDDB-E887B347710F> /usr/lib/libbz2.1.0.dylib
    0x7fff6fa84000 -     0x7fff6fad7ff7  libc++.1.dylib (400.9.4) <9A60A190-6C34-339F-BB3D-AACE942009A4> /usr/lib/libc++.1.dylib
    0x7fff6fad8000 -     0x7fff6faedff7  libc++abi.dylib (400.17) <38C09CED-9090-3719-90F3-04A2749F5428> /usr/lib/libc++abi.dylib
    0x7fff6faee000 -     0x7fff6faeeff3  libcharset.1.dylib (51.200.6) <2A27E064-314C-359C-93FC-8A9B06206174> /usr/lib/libcharset.1.dylib
    0x7fff6faef000 -     0x7fff6faffffb  libcmph.dylib (6.15.1) <9C52B2FE-179F-32AC-B87E-2AFC49ABF817> /usr/lib/libcmph.dylib
    0x7fff6fb00000 -     0x7fff6fb18ffb  libcompression.dylib (52.250.2) <C7BE9843-9B19-33E0-A4A0-D48D0A999E86> /usr/lib/libcompression.dylib
    0x7fff6fd8d000 -     0x7fff6fda3fff  libcoretls.dylib (155.220.1) <4C64BE3E-41E3-3020-8BB7-07E90C0C861C> /usr/lib/libcoretls.dylib
    0x7fff6fda4000 -     0x7fff6fda5ff3  libcoretls_cfhelpers.dylib (155.220.1) <0959B3E9-6643-3589-8BB3-21D52CDF0EF1> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff7023e000 -     0x7fff70249ff7  libcsfde.dylib (546.50.1) <7BAF8FCF-33A1-3C7C-8FEB-2020C8ED6063> /usr/lib/libcsfde.dylib
    0x7fff70251000 -     0x7fff702a7ff7  libcups.2.dylib (462.10) <2AC7B8C3-0D25-3E0F-A34A-94658A06FF94> /usr/lib/libcups.2.dylib
    0x7fff703db000 -     0x7fff703dbfff  libenergytrace.dylib (17.200.1) <80BB567A-FD18-3497-BF97-353F57D98CDD> /usr/lib/libenergytrace.dylib
    0x7fff703dc000 -     0x7fff703f5ffb  libexpat.1.dylib (16.1.1) <28A385F1-4210-32D2-861B-C1B2189A5294> /usr/lib/libexpat.1.dylib
    0x7fff7040d000 -     0x7fff70412ff7  libgermantok.dylib (17.15.2) <E5F0F794-FF27-3D64-AE52-C78C6A84DD67> /usr/lib/libgermantok.dylib
    0x7fff70413000 -     0x7fff70418ff7  libheimdal-asn1.dylib (520.260.1) <DC44D1D1-D3DF-38B3-AFC3-1D50B92BE401> /usr/lib/libheimdal-asn1.dylib
    0x7fff70443000 -     0x7fff70533fff  libiconv.2.dylib (51.200.6) <2047C9B7-3F74-3A95-810D-2ED8F0475A99> /usr/lib/libiconv.2.dylib
    0x7fff70534000 -     0x7fff70795fff  libicucore.A.dylib (62135.0.1) <2B292561-798A-381C-AA41-90EE6549C7CF> /usr/lib/libicucore.A.dylib
    0x7fff707e2000 -     0x7fff707e3fff  liblangid.dylib (128.15.1) <22D05C4F-769B-3075-ABCF-44A0EBACE028> /usr/lib/liblangid.dylib
    0x7fff707e4000 -     0x7fff707fcff3  liblzma.5.dylib (10.200.3) <E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0> /usr/lib/liblzma.5.dylib
    0x7fff70814000 -     0x7fff708b8ff7  libmecab.1.0.0.dylib (779.24.1) <A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2> /usr/lib/libmecab.1.0.0.dylib
    0x7fff708b9000 -     0x7fff70abdfff  libmecabra.dylib (779.24.1) <D71F71E0-30E2-3DB3-B636-7DE13D51FB4B> /usr/lib/libmecabra.dylib
    0x7fff70c95000 -     0x7fff70fe6ff7  libnetwork.dylib (1229.250.15) <72C7E9E3-B2BE-3300-BE1B-64606222022C> /usr/lib/libnetwork.dylib
    0x7fff71078000 -     0x7fff71800fd7  libobjc.A.dylib (756.2) <20942D4E-CE6F-376A-8BCD-016F88E4BFD5> /usr/lib/libobjc.A.dylib
    0x7fff71812000 -     0x7fff71816ffb  libpam.2.dylib (22.200.1) <586CF87F-349C-393D-AEEB-FB75F94A5EB7> /usr/lib/libpam.2.dylib
    0x7fff71819000 -     0x7fff7184efff  libpcap.A.dylib (79.250.1) <C0893641-7DFF-3A33-BDAE-190FF54837E8> /usr/lib/libpcap.A.dylib
    0x7fff71967000 -     0x7fff7197fffb  libresolv.9.dylib (65.200.2) <893142A5-F153-3437-A22D-407EE542B5C5> /usr/lib/libresolv.9.dylib
    0x7fff71981000 -     0x7fff719bcff3  libsandbox.1.dylib (851.260.2) <5BB0426C-6DE4-3E12-B6B6-35D4FC318A89> /usr/lib/libsandbox.1.dylib
    0x7fff719d0000 -     0x7fff719d1ff7  libspindump.dylib (267.3) <A584E403-8C95-3841-9C16-E22664A5A63F> /usr/lib/libspindump.dylib
    0x7fff719d2000 -     0x7fff71ba3ffb  libsqlite3.dylib (274.25) <F9589951-4ADE-3CD4-9D79-B4A0FD12E844> /usr/lib/libsqlite3.dylib
    0x7fff71c97000 -     0x7fff71ce2ff7  libstdc++.6.dylib (104.1) <BF6E1E5B-5DF2-3069-A926-20ABF03832B3> /usr/lib/libstdc++.6.dylib
    0x7fff71dbc000 -     0x7fff71dbfff7  libutil.dylib (51.200.4) <CE9B18C9-66ED-32D4-9D29-01F8FCB467B0> /usr/lib/libutil.dylib
    0x7fff71dc0000 -     0x7fff71dcdfff  libxar.1.dylib (417.1) <39CCF46B-C81A-34B1-92A1-58C4E5DA846E> /usr/lib/libxar.1.dylib
    0x7fff71dd2000 -     0x7fff71eb4ff3  libxml2.2.dylib (32.8) <54F896CF-6D83-300B-9CD9-1636BE5375A4> /usr/lib/libxml2.2.dylib
    0x7fff71eb5000 -     0x7fff71eddff3  libxslt.1.dylib (16.1) <31F7018B-D8F2-36ED-A13B-1E5A16DFAAA1> /usr/lib/libxslt.1.dylib
    0x7fff71ede000 -     0x7fff71ef0ff7  libz.1.dylib (70.200.4) <B048FC1F-058F-3A08-A1FE-81D5308CB3E6> /usr/lib/libz.1.dylib
    0x7fff726d4000 -     0x7fff726d8ff3  libcache.dylib (81) <1987D1E1-DB11-3291-B12A-EBD55848E02D> /usr/lib/system/libcache.dylib
    0x7fff726d9000 -     0x7fff726e3ff3  libcommonCrypto.dylib (60118.250.2) <1765BB6E-6784-3653-B16B-CB839721DC9A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff726e4000 -     0x7fff726ebff7  libcompiler_rt.dylib (63.4) <5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8> /usr/lib/system/libcompiler_rt.dylib
    0x7fff726ec000 -     0x7fff726f5ff7  libcopyfile.dylib (146.250.1) <98CD00CD-9B91-3B5C-A9DB-842638050FA8> /usr/lib/system/libcopyfile.dylib
    0x7fff726f6000 -     0x7fff7277afc3  libcorecrypto.dylib (602.260.2) <BED0F385-D8A2-334A-BD7B-0673B5DABBC5> /usr/lib/system/libcorecrypto.dylib
    0x7fff72801000 -     0x7fff7283aff7  libdispatch.dylib (1008.250.7) <26DF5B1E-A388-38EF-B73B-AF0E93FB02DB> /usr/lib/system/libdispatch.dylib
    0x7fff7283b000 -     0x7fff72867ff7  libdyld.dylib (655.1.1) <002418CC-AD11-3D10-865B-015591D24E6C> /usr/lib/system/libdyld.dylib
    0x7fff72868000 -     0x7fff72868ffb  libkeymgr.dylib (30) <0D0F9CA2-8D5A-3273-8723-59987B5827F2> /usr/lib/system/libkeymgr.dylib
    0x7fff72869000 -     0x7fff72875ff3  libkxld.dylib (4903.261.4) <71CF1ECD-AC4E-3FDD-BEDF-14933D843EEE> /usr/lib/system/libkxld.dylib
    0x7fff72876000 -     0x7fff72876ff7  liblaunch.dylib (1336.261.2) <BD5CDB35-2BB4-349A-8D14-78E387563F89> /usr/lib/system/liblaunch.dylib
    0x7fff72877000 -     0x7fff7287cfff  libmacho.dylib (927.0.2) <3C5C9024-45FD-38C2-B01A-07A322966063> /usr/lib/system/libmacho.dylib
    0x7fff7287d000 -     0x7fff7287fffb  libquarantine.dylib (86.220.1) <6D0BC770-7348-3608-9254-F7FFBD347634> /usr/lib/system/libquarantine.dylib
    0x7fff72880000 -     0x7fff72881ff7  libremovefile.dylib (45.200.2) <9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6> /usr/lib/system/libremovefile.dylib
    0x7fff72882000 -     0x7fff72899ff3  libsystem_asl.dylib (356.200.4) <A62A7249-38B8-33FA-9875-F1852590796C> /usr/lib/system/libsystem_asl.dylib
    0x7fff7289a000 -     0x7fff7289aff7  libsystem_blocks.dylib (73) <A453E8EE-860D-3CED-B5DC-BE54E9DB4348> /usr/lib/system/libsystem_blocks.dylib
    0x7fff7289b000 -     0x7fff72922fff  libsystem_c.dylib (1272.250.1) <7EDACF78-2FA3-35B8-B051-D70475A35117> /usr/lib/system/libsystem_c.dylib
    0x7fff72923000 -     0x7fff72926ffb  libsystem_configuration.dylib (963.260.1) <C7D2BA09-8D5B-3393-8D84-304D76C55DEF> /usr/lib/system/libsystem_configuration.dylib
    0x7fff72927000 -     0x7fff7292aff7  libsystem_coreservices.dylib (66) <719F75A4-74C5-3BA6-A09E-0C5A3E5889D7> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff7292b000 -     0x7fff72931fff  libsystem_darwin.dylib (1272.250.1) <EC9B39A5-9592-3577-8997-7DC721D20D8C> /usr/lib/system/libsystem_darwin.dylib
    0x7fff72932000 -     0x7fff72938ff7  libsystem_dnssd.dylib (878.260.1) <64B79B01-B1B0-3C7E-87A1-023B71843F1F> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff72939000 -     0x7fff72984ffb  libsystem_info.dylib (517.200.9) <D09D5AE0-2FDC-3A6D-93EC-729F931B1457> /usr/lib/system/libsystem_info.dylib
    0x7fff72985000 -     0x7fff729adff7  libsystem_kernel.dylib (4903.261.4) <7B0F52C4-4CC9-3282-8457-C18C6FE1B99E> /usr/lib/system/libsystem_kernel.dylib
    0x7fff729ae000 -     0x7fff729f9ff7  libsystem_m.dylib (3158.200.7) <F19B6DB7-014F-3820-831F-389CCDA06EF6> /usr/lib/system/libsystem_m.dylib
    0x7fff729fa000 -     0x7fff72a24fff  libsystem_malloc.dylib (166.261.1) <4D1CEF38-DE32-3ECF-9F70-0ADDD5C8775F> /usr/lib/system/libsystem_malloc.dylib
    0x7fff72a25000 -     0x7fff72a2fff7  libsystem_networkextension.dylib (767.250.2) <FF06F13A-AEFE-3A27-A073-910EF78AEA36> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff72a30000 -     0x7fff72a37fff  libsystem_notify.dylib (172.200.21) <145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE> /usr/lib/system/libsystem_notify.dylib
    0x7fff72a38000 -     0x7fff72a41fef  libsystem_platform.dylib (177.250.1) <16949870-9152-3B0D-9EF0-40FAF84B0F1E> /usr/lib/system/libsystem_platform.dylib
    0x7fff72a42000 -     0x7fff72a4cff7  libsystem_pthread.dylib (330.250.2) <2D5C08FF-484F-3D59-9132-CE1DCB3F76D7> /usr/lib/system/libsystem_pthread.dylib
    0x7fff72a4d000 -     0x7fff72a50ff7  libsystem_sandbox.dylib (851.260.2) <9CACC5F5-3859-3A1F-BCC6-96DDD4A556A8> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff72a51000 -     0x7fff72a53ff3  libsystem_secinit.dylib (30.260.2) <88F3CE61-5FAD-3CDA-AA13-B5B18B3EBD26> /usr/lib/system/libsystem_secinit.dylib
    0x7fff72a54000 -     0x7fff72a5bff3  libsystem_symptoms.dylib (820.267.1) <03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff72a5c000 -     0x7fff72a71fff  libsystem_trace.dylib (906.260.1) <100013AE-0443-3CF0-AC17-5D934608B60B> /usr/lib/system/libsystem_trace.dylib
    0x7fff72a73000 -     0x7fff72a78ffb  libunwind.dylib (35.4) <24A97A67-F017-3CFC-B0D0-6BD0224B1336> /usr/lib/system/libunwind.dylib
    0x7fff72a79000 -     0x7fff72aa8fff  libxpc.dylib (1336.261.2) <9A0FFA79-082F-3293-BF49-63976B073B74> /usr/lib/system/libxpc.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: 1468553
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=487.5M resident=0K(0%) swapped_out_or_unallocated=487.5M(100%)
Writable regions: Total=639.1M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=639.1M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               640K        4 
Activity Tracing                   256K        1 
CG backing stores                  336K        2 
CG image                            24K        5 
CoreAnimation                     1932K       15 
CoreGraphics                         8K        1 
CoreImage                            8K        2 
CoreServices                       100K        1 
CoreUI image data                  788K       13 
CoreUI image file                  336K        4 
Foundation                           4K        1 
Kernel Alloc Once                    8K        1 
MALLOC                           187.8M       45 
MALLOC guard page                   32K        7 
MALLOC_NANO (reserved)           384.0M        1         reserved VM address space (unallocated)
Memory Tag 242                      12K        1 
STACK GUARD                       56.1M       18 
Stack                             16.6M       18 
VM_ALLOCATE                        148K       12 
__DATA                            83.0M      329 
__FONT_DATA                          4K        1 
__LINKEDIT                       226.0M       14 
__TEXT                           261.5M      328 
__UNICODE                          564K        1 
mapped file                       56.9M       19 
shared memory                     3888K       16 
===========                     =======  ======= 
TOTAL                              1.3G      860 
TOTAL, minus reserved VM space   896.8M      860 

Model: Macmini6,1, BootROM 278.0.0.0.0, 2 processors, Intel Core i5, 2.5 GHz, 16 GB, SMC 2.7f1
Graphics: kHW_IntelHD4000Item, Intel HD Graphics 4000, spdisplays_builtin
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x014F, 0x5453313630304B5753482D3136474B202020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x014F, 0x5453313630304B5753482D3136474B202020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x10E), Broadcom BCM43xx 1.0 (7.21.190.33 AirPortDriverBrcm4360-1325.2)
Bluetooth: Version 6.0.12f1, 3 services, 18 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: Samsung SSD 850 EVO 500GB, 500.11 GB
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: Hub
USB Device: IR Receiver
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: Keyboard Hub
USB Device: USB Optical Mouse
USB Device: Apple Keyboard
USB Device: USB 3.0 Bus
USB Device: Optical Storage Device
Thunderbolt Bus: Mac mini, Apple Inc., 23.4

@almeath
Copy link

almeath commented Jun 26, 2019

In my fresh Mojave installation I tried installing the SDK headers suggested by @getaaron and then building again in Xcode. Unfortunately the same issues occur. I get the same uncaught exception error as @john-at-charpa when browsing for the game folder.

I will start typing up the exact sequence I follow to build in Mojave and will post it here as soon as possible.

In the meantime, I will try a fresh build in High Sierra and post a link to it, if it works.

@almeath
Copy link

almeath commented Jun 26, 2019

Can you please let me know if this build exhibits the same crashing problem:

http://www.eftel.com/~almeath/mac/boxer_test.zip

It is a build I compiled in High Sierra on Xcode 9.4.1

In my Mojave system it is not exhibiting any crashing behavior or other problems.

@almeath
Copy link

almeath commented Jun 26, 2019

The steps I follow are:

  1. Install XCode and command line tools.
  2. Install Github Desktop.
  3. Go to Alun's main Boxer respository on Github and under Branch select '64bit/Master'.
  4. Click 'Clone or download' and copy the URL to the clipboard.
  5. Open Github Desktop, go to File and select 'Clone Repository'.
  6. Click 'URL' and then paste in the copied URL and click 'Clone'.
  7. Once the repository is cloned, make sure Boxer is selected under 'Current Repository'.
  8. Under 'Current Branch' tick '64bit/master'.
  9. Click on 'Current Repository' and in the menu below it right-click on 'Boxer' and click 'Open in Terminal'.
  10. In the Terminal type (without quotes) 'git submodule update --init --recursive' and then press return. The submodules for the 64bit/master branch should then be automatically updated. Exit Terminal when this is complete.
  11. Under 'Current Repository' make sure Boxer is selected and in the menu below it right-click on 'Boxer' and select 'Reveal in Finder'. Copy the whole folder for Boxer somewhere, preferably to your Desktop.
  12. In that Boxer folder open the file 'Boxer.xcodeproj' in Xcode.
  13. Once everything is indexed you should see 'Boxer: Ready' in the title bar at the top.
  14. You should, by default, see 'Boxer' in the active scheme box to the left in the title bar.
  15. Click the button with the 'play' icon to "Build and then run the current scheme".
  16. Boxer should build successfully (with a whole bunch of issues noted in the left hand menu) and then launch automatically.
  17. If needed, repeat the build process for Boxer Standalone and Bundler in the active scheme boxes.
  18. Go to your current user's library folder and then to Developer/Xcode/DerivedData/
  19. There will be a folder in there starting with Boxer and then a bunch of letters. Go into that folder and then Build/Products/Debug/
  20. Your builds of Boxer and other items should be in there.
  21. When you launch them, allow them to have all necessary accessibility privileges.

This might not be the 'correct' way to do it, but it has worked for me.

I have not mentioned anything to do with signing, as it does not seem to be necessary to change the default settings in Xcode in order to successfully build. As I mentioned in earlier posts, I did experience some wonky behavior in Mojave and had to force code sign the Boxer app after I built it using terminal commands. That stopped the bizarre "icon freezing" issue I was having when launching the app. I still do not understand what Apple is doing with code signatures in Mojave and it will probably only get worse in Catalina.

I also cannot figure out why on my own machine I do not get any crashes under my current build of Mojave, but I do when building on a fresh install. As mentioned, my system has been incrementally upgraded and tweaked for many years. I have installed lots of command line tools like homebrew etc. but I otherwise see no reason why my system is not affected by the reported issue.

The last thing I should point out is that these 64 bit builds are full of bugs and minor issues, so work arounds are probably going to be the order of the day until Alun has time to develop an official 64 bit release. At least these early builds will run and allow game boxes to be setup and launched successfully, albeit not in the way everyone may prefer.

@almeath
Copy link

almeath commented Jun 29, 2019

It looks like going to General Preferences and unticking “Use shelf appearance in Finder’s icon view” prevents the crash when navigating to the games folder.

@tdolik
Copy link

tdolik commented Jul 24, 2019

I believe my pull request fixes the issue: #98

Though unticking that checkbox seems to work just as well. :-)

@DivineDominion
Copy link

Ran into the same crash. The implementation's method name was off, and #98 is indeed a fix 👍

@DivineDominion
Copy link

@alunbestor I think this can now safely be closed :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants