Giter Club home page Giter Club logo

supercolliderau's Introduction

SuperColliderAU

SuperColliderAU is an AudioUnit wrapper that allows using SuperCollider servers inside AudioUnits hosts on macOS. The embedded server may be controlled over OSC as usual. In addition, it may be packed with a synth definition and a configuration file that defines its parameters.

Below are some quick instructions for building SuperColliderAU. The result is an AudioUnit plug-in that can be used for the first use case (interactive), and can also be modified for the second (standalone) using the AudioUnitBuilder quark.

In order to build SuperColliderAU, you first need to build SuperCollider, which is included in this repository as a submodule. For this to work you must first clone the SuperColliderAU with the recursive flag:

git clone --recursive https://github.com/supercollider/SuperColliderAU

After this, cd to the supercollider directory and build as explained in the Build Instructions section in README_MACOS.md. This is needed for generating SC_Version.hpp and also for compiling plugins. It is important to note that the build process for SuperColliderAU assumes that the name of the supercollider build folder build.

After compiling SuperCollider, cd back to the SuperColliderAU root directory and run:

mkdir build
cd build
cmake ..
make

If everything goes well this should create a bundle named SuperColliderAU.component. To use, copy the bundle to ~/Library/Audio/Plug-Ins/Components/.

supercolliderau's People

Contributors

dyfer avatar g-roma avatar mossheim avatar shimpe avatar timblechmann avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

supercolliderau's Issues

Build fails on 10.13.6

Firstly - and this might be the root of the issue I'm having - I had to build from the latest develop branch of SuperCollider repo, and pull that into the SuperColliderAU/supercollider directory to build against. This was due to consistent errors with Qt and WebkitView I was getting with the submodule --recursive referenced in this repo (https://github.com/supercollider/supercollider/tree/05a2832eb847a07c178c40074cb506fc3008ff9c)

On make command I get this fatal error.

Scanning dependencies of target SuperColliderAU [ 0%] Building C object CMakeFiles/SuperColliderAU.dir/supercollider/common/fftlib.c.o [ 2%] Building CXX object CMakeFiles/SuperColliderAU.dir/supercollider/common/SC_fftlib.cpp.o In file included from /GIT-work/SuperColliderAU/supercollider/common/SC_fftlib.cpp:36: /GIT-work/SuperColliderAU/supercollider/common/malloc_aligned.hpp:27:10: fatal error: 'boost/align/aligned_alloc.hpp' file not found #include <boost/align/aligned_alloc.hpp> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 error generated. make[2]: *** [CMakeFiles/SuperColliderAU.dir/supercollider/common/SC_fftlib.cpp.o] Error 1 make[1]: *** [CMakeFiles/SuperColliderAU.dir/all] Error 2 make: *** [all] Error 2

Any clues here?

Cheers

Validation fails when connecting SuperColliderAU to Logic Pro

After some troubleshooting to get a successful build, I copied the component as prescribed, and then opened Logic Pro to try it out. On startup, Logic complained of an invalid plugin. In the Logic Plugin Manager, I clicked to rescan the SCAU, and validation fails.

There are several tests that pass, but many of them fail, all with this same error:

Couldn't read Plist File /Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist

*** ERROR: open directory failed '/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'

What should I do?

Link fails when building against latest supercollider master (and 3.11)

I updated the supercollider sub-repo to latest master before building SuperColliderAU (for Qt-related reasons), and the build failed with the following:

Undefined symbols for architecture x86_64:
"_NSApp", referenced from:
      SC::Apple::EventLoop::run() in SC_Apple.mm.o
      SC::Apple::EventLoop::quit() in SC_Apple.mm.o
  "_OBJC_CLASS_$_NSApplication", referenced from:
      objc-class-ref in SC_Apple.mm.o
  "_OBJC_CLASS_$_NSEvent", referenced from:
      objc-class-ref in SC_Apple.mm.o

I'm aware that this is my own fault for doing something non-standard, but thought it might be helpful to note it here anyway!

Looks like the change to supercollider that causes this is here:
supercollider/supercollider@d47688d#diff-4ba3c1af785b08237306a79fe2332aae

I was able to 'fix' this by linking against framework AppKit rather than Foundation (diff below), but I'm highly ignorant about this stuff so have no idea whether this is sufficient.

diff --git a/CMakeLists.txt b/CMakeLists.txt
index dd3d4c7..2e896b3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -244,7 +244,7 @@ target_link_libraries(${scau_bundle} "-framework CoreMIDI")
 target_link_libraries(${scau_bundle} "-framework CoreServices")
 #target_link_libraries(${scau_bundle} "-framework vecLib")
 target_link_libraries(${scau_bundle} "-framework Accelerate")
-target_link_libraries(${scau_bundle} "-framework Foundation")
+target_link_libraries(${scau_bundle} "-framework AppKit")
 target_link_libraries(${scau_bundle} ${SNDFILE_LIBRARIES})
 add_definitions("-DLIBSNDFILE_1018")

I'm on macOS High Sierra, 10.13.6

Build fails when using 'bundled boost'

Hello!
In the event that boost has not been installed system-wide, the SuperColliderAU build attempts to use the bundled boost supplied in the supercollider sub-repository. This doesn't work, I think due to a couple of typos in CMakeLists.txt.
I've made some changes locally which address this, so I'll sort out a pull request with these in shortly.
In the meantime, here's a diff showing the changes I have made:

diff --git a/CMakeLists.txt b/CMakeLists.txt
index dd3d4c7..6fc7244 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -76,11 +76,11 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g")
 
 set(scau_bundle "SuperColliderAU")
 set(SNDFILE_INCLUDE_DIR ${SC_DIR}/external_libraries/libsndfile/)
-set(BOOST_INCLUDE_DIR ${SC_DIR}external_libraries/boost/)
+set(BOOST_INCLUDE_DIR ${SC_DIR}/external_libraries/boost/)
 set(TLSF_INCLUDE_DIR ${SC_DIR}/external_libraries/TLSF-2.4.6/src/)
 
 include_directories(${SC_DIR}/external_libraries
-       ${SC_DIR}/${BOOST_INCLUDE_DIR}
+       ${BOOST_INCLUDE_DIR}
        ${SNDFILE_INCLUDE_DIR}
        ${PTHREADS_INCLUDE_DIR}
        ${TLSF_INCLUDE_DIR}
@@ -251,7 +251,7 @@ add_definitions("-DLIBSNDFILE_1018")
 if (Boost_FOUND)
        target_link_libraries(${scau_bundle} ${Boost_SYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} )
 else()
-       target_link_libraries(${scau_bundle} boost_system boost_filesystem)
+       target_link_libraries(${scau_bundle} boost_system_lib boost_filesystem_lib )
 endif()
 
 target_link_libraries(${scau_bundle} ${PTHREADS_LIBRARY})

Component passes auval but crashes host (10.12.6)

Similar to #5 I was able to build SCAU using current SC (develop branch). The component passes auval with nothing in the output that seems unexpected to me, but both Max 8 and Logic Pro X segfault while attempting to validate it. I'll include the auval output and crash logs at the bottom of this issue.

In Ableton Live 10, I can add an instance of SCAU to a track and open the interface, but cannot communicate with the server from sclang. Evaluating:

~scau = Server.new(\scau, NetAddr.new("127.0.0.1", 9989))

...then:

~scau.isRunning_(true)

...throws a DoesNotUnderstandError:

ERROR: Message 'isRunning_' not understood.
RECEIVER:
Instance of Server {    (0x124f986c8, gc=DC, fmt=00, flg=00, set=05)
  instance variables [30]
    name : Symbol 'scau'
    addr : instance of NetAddr (0x125089138, size=4, set=2)
    clientID : Integer 0
    isLocal : true
    inProcess : false
    sendQuit : nil
    remoteControlled : false
    maxNumClients : nil
    options : instance of ServerOptions (0x11eacb978, size=39, set=6)
    latency : Float 0.200000   9999999A 3FC99999
    dumpMode : Integer 0
    nodeAllocator : instance of NodeIDAllocator (0x124942db8, size=7, set=3)
    controlBusAllocator : instance of ContiguousBlockAllocator (0x124bf9af8, size=6, set=3)
    audioBusAllocator : instance of ContiguousBlockAllocator (0x124afb078, size=6, set=3)
    bufferAllocator : instance of ContiguousBlockAllocator (0x11eb025e8, size=6, set=3)
    scopeBufferAllocator : instance of StackNumberAllocator (0x12504cc08, size=4, set=2)
    tree : nil
    defaultGroup : instance of Group (0x1249b8628, size=5, set=3)
    defaultGroups : instance of Array (0x124d924a8, size=1, set=2)
    syncThread : nil
    syncTasks : nil
    window : nil
    scopeWindow : nil
    emacsbuf : nil
    volume : instance of Volume (0x12509a4f8, size=15, set=4)
    recorder : instance of Recorder (0x1250952e8, size=14, set=4)
    statusWatcher : instance of ServerStatusWatcher (0x125062f08, size=20, set=5)
    pid : nil
    serverInterface : nil
    pidReleaseCondition : instance of Condition (0x124a09cd8, size=2, set=2)
}
ARGS:
   true
CALL STACK:
        DoesNotUnderstandError:reportError
                arg this = <instance of DoesNotUnderstandError>
        Nil:handleError
                arg this = nil
                arg error = <instance of DoesNotUnderstandError>
        Thread:handleError
                arg this = <instance of Thread>
                arg error = <instance of DoesNotUnderstandError>
        Object:throw
                arg this = <instance of DoesNotUnderstandError>
        Object:doesNotUnderstand
                arg this = <instance of Server>
                arg selector = 'isRunning_'
                arg args = [*1]
        Interpreter:interpretPrintCmdLine
                arg this = <instance of Interpreter>
                var res = nil
                var func = <instance of Function>
                var code = "~scau.isRunning_(true)
"
                var doc = nil
                var ideClass = nil
        Process:interpretPrintCmdLine
                arg this = <instance of Main>
^^ The preceding error dump is for ERROR: Message 'isRunning_' not understood.
RECEIVER: scau

auval output:

    AU Validation Tool
    Version: 1.6.1a1
    Copyright 2003-2013, Apple Inc. All Rights Reserved.
    Specify -h (-help) for command options

--------------------------------------------------
VALIDATING AUDIO UNIT: 'aumf' - 'SCAU' - 'SCAU'
--------------------------------------------------
Manufacturer String: SCAU
AudioUnit Name: SuperColliderAU
Component Version: 0.0.5 (0x5)

* * PASS
--------------------------------------------------
TESTING OPEN TIMES:
COLD:
Time to open AudioUnit:         10.909 ms
WARM:
Time to open AudioUnit:         0.005  ms
FIRST TIME:
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
Found 0 LADSPA plugins
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9989
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Time for initialization:        99.680 ms

* * PASS
--------------------------------------------------
VERIFYING DEFAULT SCOPE FORMATS:
Input Scope Bus Configuration:
 Default Bus Count:1
    Default Format: AudioStreamBasicDescription:  2 ch,  44100 Hz, 'lpcm' (0x00000029) 32-bit little-endian float, deinterleaved

Output Scope Bus Configuration:
 Default Bus Count:1
    Default Format: AudioStreamBasicDescription:  2 ch,  44100 Hz, 'lpcm' (0x00000029) 32-bit little-endian float, deinterleaved

* * PASS
--------------------------------------------------
VERIFYING REQUIRED PROPERTIES:

* * PASS
--------------------------------------------------
VERIFYING RECOMMENDED PROPERTIES:
  VERIFYING PROPERTY: Latency
    PASS
  VERIFYING PROPERTY: Tail Time
WARNING: Recommended Property is not supported

  VERIFYING PROPERTY: Bypass Effect
    PASS

* * PASS
--------------------------------------------------
VERIFYING OPTIONAL PROPERTIES:

* * PASS
--------------------------------------------------
VERIFYING SPECIAL PROPERTIES:

VERIFYING CUSTOM UI
Cocoa Views Available: 0

VERIFYING CLASS INFO
    PASS

TESTING HOST CALLBACKS
    PASS

* * PASS
--------------------------------------------------
PUBLISHED PARAMETER INFO:
Testing that parameters retain value across reset and initialization
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9990
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
  PASS

* * PASS
--------------------------------------------------
FORMAT TESTS:

Reported Channel Capabilities (implicit):
      [-1, -1]

Input/Output Channel Handling:
1-1   1-2   1-4   1-5   1-6   1-7   1-8   2-2   2-4   2-5   2-6   2-7   2-8   4-4   4-5   5-5   6-6   7-7   8-8
X                                         X                                   X           X     X     X     X
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9991
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9992
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:1, OutputChan:2
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9993
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:1, OutputChan:4
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9994
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:1, OutputChan:5
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9995
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:1, OutputChan:6
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9996
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:1, OutputChan:7
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9997
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:1, OutputChan:8
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9998
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 9999
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:2, OutputChan:4
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10000
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:2, OutputChan:5
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10001
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:2, OutputChan:6
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10002
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:2, OutputChan:7
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10003
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:2, OutputChan:8
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10004
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10005
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
WARNING: Can Initialize Unit to un-supported num channels:InputChan:4, OutputChan:5
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10006
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10007
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10008
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10009
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10010
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************

* * PASS
--------------------------------------------------
RENDER TESTS:
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 1156
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 1156
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10011
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************

Input Format: AudioStreamBasicDescription:  2 ch,  44100 Hz, 'lpcm' (0x00000029) 32-bit little-endian float, deinterleaved
Output Format: AudioStreamBasicDescription:  2 ch,  44100 Hz, 'lpcm' (0x00000029) 32-bit little-endian float, deinterleaved
Render Test at 512 frames
Slicing Render Test at 64 frames
  PASS


Render Test at 64 frames, sample rate: 22050 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 22050.000000, driver's block size = 64
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 64
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10012
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 137 frames, sample rate: 96000 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 96000.000000, driver's block size = 137
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 137
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10013
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 4096 frames, sample rate: 48000 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 96000.000000, driver's block size = 137
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 137
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10013
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 4096 frames, sample rate: 48000 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 48000.000000, driver's block size = 4096
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 4096
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10014
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 4096 frames, sample rate: 192000 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 192000.000000, driver's block size = 4096
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 4096
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10015
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 4096 frames, sample rate: 11025 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 11025.000000, driver's block size = 4096
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 4096
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10016
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 512 frames, sample rate: 44100 Hz
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 512
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 512
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10017
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
  PASS

1 Channel Test:
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 512
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 512
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10018
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************
Render Test at 512 frames
  PASS
Couldn't read Plist File /Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/pluginSpec.plist
*** ERROR: open directory failed '/Users/REDACTED/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/Resources/synthdefs'
SC_AudioDriver: sample rate = 44100.000000, driver's block size = 512
0.0.0.0
*******************************************************
SuperColliderAU Initialized
SuperColliderAU provided under the GNU GPL license. http://www.gnu.org/licenses/gpl-2.0.txt
SuperColliderAU source code: http://supercollider.sf.net
SuperColliderAU mPreferredHardwareBufferFrameSize: 512
SuperColliderAU mBufLength: 64
SuperColliderAU  port: 10019
SuperColliderAU  mMaxWireBufs: 64
SuperColliderAU  mRealTimeMemorySize: 8192
*******************************************************

Checking connection semantics:
Connection format:
AudioStreamBasicDescription:  2 ch,  44100 Hz, 'lpcm' (0x00000029) 32-bit little-endian float, deinterleaved
  PASS

Bad Max Frames - Render should fail
  PASS

* * PASS
--------------------------------------------------
AU VALIDATION SUCCEEDED.
--------------------------------------------------

Logic Pro X crash report:

Process:               Logic Pro X [25909]
Path:                  /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
Identifier:            com.apple.logic10
Version:               10.4.4 (4981.1)
Build Info:            MALogic-4981001000000000~2
App Item ID:           634148309
App External ID:       829681282
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Logic Pro X [25909]
User ID:               501

PlugIn Path:             /Users/USER/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/MacOS/SuperColliderAU
PlugIn Identifier:       io.github.SuperCollider
PlugIn Version:          1.0 (1.0)

Date/Time:             2019-09-05 21:42:28.458 -0400
OS Version:            Mac OS X 10.12.6 (16G2128)
Report Version:        12
Anonymous UUID:        2881BD59-C0A2-518F-B449-34AC7E4D2129

Sleep/Wake UUID:       10B3D514-406C-4DFE-A416-B079BCF21A92

Time Awake Since Boot: 37000 seconds
Time Since Wake:       18000 seconds

System Integrity Protection: enabled

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

Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
Exception Codes:       EXC_I386_GPFLT
Exception Note:        EXC_CORPSE_NOTIFY

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

Application Specific Information:
MALondonII | 94d3b910e514cb711d268bc5d953046c3bb629e70a5564a403b3bde53d2a75b7 | c00b9a9f1e8f6856155cf0ca1d4534e849f5e268 | 2019-01-08_20:06:17
 

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0   io.github.SuperCollider       	0x0000000119aa9cbd boost::asio::detail::scheduler::stop() + 13 (conditionally_enabled_mutex.hpp:53)
1   io.github.SuperCollider       	0x0000000119b15295 UDPPort::stopAsioThread() + 21 (UDPPort.cpp:208)
2   io.github.SuperCollider       	0x0000000119b17cb0 SCProcess::quit() + 32 (SCProcess.cpp:124)
3   io.github.SuperCollider       	0x0000000119b01bb3 SuperColliderAU::~SuperColliderAU() + 51 (SuperColliderAU.cpp:46)
4   io.github.SuperCollider       	0x0000000119b1448e ComponentBase::AP_Close(void*) + 30 (ComponentBase.cpp:122)
5   com.apple.audio.toolbox.AudioToolbox	0x00007fffb89831db APComponentInstance::DisposeInstance() + 21
6   com.apple.audio.toolbox.AudioToolbox	0x00007fffb8accbab AudioComponentInstanceDispose + 429
7   com.apple.music.apps.MAAudioUnitSupport	0x000000010934aa8b 0x10933f000 + 47755
8   com.apple.music.apps.MAAudioUnitSupport	0x000000010934b88e 0x10933f000 + 51342
9   com.apple.logic10             	0x0000000107582adc 0x106929000 + 12950236
10  com.apple.logic10             	0x0000000107583583 0x106929000 + 12952963
11  com.apple.logic10             	0x0000000106b2da8d 0x106929000 + 2116237
12  com.apple.music.apps.MAAudioEngine	0x000000010b3a6821 MD::Init(int, CDRV_ALPRunMode_t) + 10817
13  com.apple.music.apps.MAAudioEngine	0x000000010b3e0c50 MDCA::Init(int, CDRV_ALPRunMode_t) + 5760
14  com.apple.logic10             	0x0000000106b2fbe0 0x106929000 + 2124768
15  com.apple.logic10             	0x0000000106b374b8 0x106929000 + 2155704
16  com.apple.logic10             	0x00000001070c4438 0x106929000 + 7975992
17  com.apple.logic10             	0x0000000106d401aa 0x106929000 + 4288938
18  com.apple.logic10             	0x0000000107fa719a 0x106929000 + 23585178
19  com.apple.logic10             	0x000000010739a94a 0x106929000 + 10950986
20  com.apple.CoreFoundation      	0x00007fffb9bcd80c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
21  com.apple.CoreFoundation      	0x00007fffb9bcd70b _CFXRegistrationPost + 427
22  com.apple.CoreFoundation      	0x00007fffb9bcd472 ___CFXNotificationPost_block_invoke + 50
23  com.apple.CoreFoundation      	0x00007fffb9b8a8a3 -[_CFXNotificationRegistrar find:object:observer:enumerator:] + 1827
24  com.apple.CoreFoundation      	0x00007fffb9b898dc _CFXNotificationPost + 604
25  com.apple.Foundation          	0x00007fffbb5b05a7 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
26  com.apple.AppKit              	0x00007fffb77ee74f -[NSApplication _postDidFinishNotification] + 297
27  com.apple.AppKit              	0x00007fffb76a1df2 -[NSApplication finishLaunching] + 2211
28  com.apple.AppKit              	0x00007fffb76a1148 -[NSApplication run] + 267
29  com.apple.AppKit              	0x00007fffb766be0e NSApplicationMain + 1237
30  com.apple.logic10             	0x000000010734525d 0x106929000 + 10601053
31  libdyld.dylib                 	0x00007fffcf3bc235 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fffcf4eaf46 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fffcf471b72 nanosleep + 199
2   libc++.1.dylib                	0x00007fffcdf4165b std::__1::this_thread::sleep_for(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > const&) + 80
3   com.apple.JavaScriptCore      	0x00007fffbcbc5f43 bmalloc::Heap::scavenge(std::__1::unique_lock<bmalloc::StaticMutex>&, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 275
4   com.apple.JavaScriptCore      	0x00007fffbcbc5cf6 bmalloc::Heap::concurrentScavenge() + 102
5   com.apple.JavaScriptCore      	0x00007fffbcbc7381 bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::threadRunLoop() + 97
6   com.apple.JavaScriptCore      	0x00007fffbcbc728d bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>::threadEntryPoint(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*) + 29
7   com.apple.JavaScriptCore      	0x00007fffbcbc753d void* std::__1::__thread_proxy<std::__1::tuple<void (*)(bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*), bmalloc::AsyncTask<bmalloc::Heap, void (bmalloc::Heap::*)()>*> >(void*) + 93
8   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 2:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d5621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 3:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d548e _pthread_wqthread + 1023
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d5621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 5:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d5621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 6:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d5621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 7:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d5621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 8:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d548e _pthread_wqthread + 1023
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 9:
0   libsystem_kernel.dylib        	0x00007fffcf4e339e semaphore_timedwait_trap + 10
1   libdispatch.dylib             	0x00007fffcf39eb09 _os_semaphore_timedwait + 72
2   libdispatch.dylib             	0x00007fffcf38f864 _dispatch_semaphore_wait_slow + 58
3   libdispatch.dylib             	0x00007fffcf38a290 _dispatch_worker_thread + 275
4   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
5   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
6   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 10:
0   libsystem_kernel.dylib        	0x00007fffcf4eb44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d5621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fffcf5d507d start_wqthread + 13

Thread 11:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fffcf4e334a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fffcf4e2797 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fffb9bb87e4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fffb9bb7c71 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation      	0x00007fffb9bb74c4 CFRunLoopRunSpecific + 420
5   com.apple.AppKit              	0x00007fffb77f9f02 _NSEventThread + 205
6   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
7   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
8   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 12:: MIDIClientNotificationThread
0   libsystem_kernel.dylib        	0x00007fffcf4e334a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fffcf4e2797 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fffb9bb87e4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fffb9bb7c71 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation      	0x00007fffb9bb74c4 CFRunLoopRunSpecific + 420
5   com.apple.Foundation          	0x00007fffbb5cc182 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6   com.apple.Foundation          	0x00007fffbb65c7d5 -[NSRunLoop(NSRunLoop) runUntilDate:] + 111
7   com.apple.logic10             	0x0000000106e27b39 0x106929000 + 5237561
8   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 13:
0   libsystem_kernel.dylib        	0x00007fffcf4e334a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fffcf4e2797 mach_msg + 55
2   com.apple.audio.midi.CoreMIDI 	0x00000001098219c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 107
3   com.apple.audio.midi.CoreMIDI 	0x0000000109837ba9 MIDIProcess::RunMIDIInThread() + 105
4   com.apple.audio.midi.CoreMIDI 	0x0000000109844a9a XThread::RunHelper(void*) + 10
5   com.apple.audio.midi.CoreMIDI 	0x0000000109848053 CAPThread::Entry(CAPThread*) + 85
6   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
7   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
8   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 14:: SeqTimer
0   libsystem_kernel.dylib        	0x00007fffcf4eabf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d6833 _pthread_cond_wait + 769
2   com.apple.CoreServices.CarbonCore	0x00007fffbaaed984 TSWaitOnConditionTimedRelative + 147
3   com.apple.CoreServices.CarbonCore	0x00007fffbaaed585 TSWaitOnSemaphoreCommon + 433
4   com.apple.CoreServices.CarbonCore	0x00007fffbaad40a6 TimerThread + 71
5   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 15:: ExtendedAudioFileScheduler::WorkerThreadProc
0   libsystem_kernel.dylib        	0x00007fffcf4eabf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d67fa _pthread_cond_wait + 712
2   com.apple.music.apps.MAFiles  	0x000000010b29a2db ExtendedAudioFileScheduler::WorkerThreadProc() + 123
3   com.apple.music.apps.MAFiles  	0x000000010b29a259 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
4   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
5   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
6   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 16:: ExtendedAudioFileScheduler::WorkerThreadProc
0   libsystem_kernel.dylib        	0x00007fffcf4eabf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fffcf5d67fa _pthread_cond_wait + 712
2   com.apple.music.apps.MAFiles  	0x000000010b29a2db ExtendedAudioFileScheduler::WorkerThreadProc() + 123
3   com.apple.music.apps.MAFiles  	0x000000010b29a259 ExtendedAudioFileScheduler::WorkerThreadProc(void*) + 9
4   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
5   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
6   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 17:: ProcessThread1/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 18:: ProcessThread2/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 19:: ProcessThread3/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 20:: ProcessThread4/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 21:: ProcessThread5/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 22:: ProcessThread6/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 23:: ProcessThread7/1024
0   libsystem_kernel.dylib        	0x00007fffcf4e3386 semaphore_wait_trap + 10
1   com.apple.music.apps.MAAudioEngine	0x000000010b3d8595 MD::CallProcessThread(long) + 613
2   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 24:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib        	0x00007fffcf4e334a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fffcf4e2797 mach_msg + 55
2   com.apple.audio.CoreAudio     	0x00007fffb9721935 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 127
3   com.apple.audio.CoreAudio     	0x00007fffb97218a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4   com.apple.audio.CoreAudio     	0x00007fffb971e8d0 HALC_ProxyIOContext::IOWorkLoop() + 1196
5   com.apple.audio.CoreAudio     	0x00007fffb971e264 HALC_ProxyIOContext::IOThreadEntry(void*) + 128
6   com.apple.audio.CoreAudio     	0x00007fffb971dfa3 HALB_IOThread::Entry(void*) + 75
7   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 25:: com.apple.audio.IOThread.client
0   libsystem_kernel.dylib        	0x00007fffcf4e334a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fffcf4e2797 mach_msg + 55
2   com.apple.audio.CoreAudio     	0x00007fffb9721935 HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned int, unsigned int, mach_msg_header_t*, bool, unsigned int) + 127
3   com.apple.audio.CoreAudio     	0x00007fffb97218a6 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 42
4   com.apple.audio.CoreAudio     	0x00007fffb971e8d0 HALC_ProxyIOContext::IOWorkLoop() + 1196
5   com.apple.audio.CoreAudio     	0x00007fffb971e264 HALC_ProxyIOContext::IOThreadEntry(void*) + 128
6   com.apple.audio.CoreAudio     	0x00007fffb971dfa3 HALB_IOThread::Entry(void*) + 75
7   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 26:: com.apple.NSURLConnectionLoader
0   libsystem_kernel.dylib        	0x00007fffcf4e334a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fffcf4e2797 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fffb9bb87e4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fffb9bb7c71 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation      	0x00007fffb9bb74c4 CFRunLoopRunSpecific + 420
5   com.apple.CFNetwork           	0x00007fffb8cf20f4 +[NSURLConnection(Loader) _resourceLoadLoop:] + 313
6   com.apple.Foundation          	0x00007fffbb5dc7dd __NSThread__start__ + 1243
7   libsystem_pthread.dylib       	0x00007fffcf5d593b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fffcf5d5887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fffcf5d508d thread_start + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000119b2c260  rbx: 0x8d56cbc2cfd38618  rcx: 0x00007fffd476ca20  rdx: 0x0000000000000000
  rdi: 0x8d56cbc2cfd38618  rsi: 0x0000000000000001  rbp: 0x00007fff592d4f90  rsp: 0x00007fff592d4f70
   r8: 0x0000000000000000   r9: 0x0000610000440e70  r10: 0x000000000000000e  r11: 0x00007fffb8acc9fe
  r12: 0xa5fb6992f96b0016  r13: 0x0000608000a647c0  r14: 0x00007f89cfef1570  r15: 0x00007fff592d5098
  rip: 0x0000000119aa9cbd  rfl: 0x0000000000010206  cr2: 0x0000000119b15280
  
Logical CPU:     2
Error Code:      0x00000000
Trap Number:     13


Binary Images:
       0x106929000 -        0x1085c2fff  com.apple.logic10 (10.4.4 - 4981.1) <F6D2F8DF-D31D-310B-96CC-547FA1FF06D4> /Applications/Logic Pro X.app/Contents/MacOS/Logic Pro X
       0x108d80000 -        0x109248fff  com.apple.music.apps.MALogicLegacySong (10.3.2 - 4981.1) <7AA7C68A-6BB5-3DC5-9CC6-CBBF4D1A0452> /Applications/Logic Pro X.app/Contents/Frameworks/MALogicLegacySong.framework/Versions/A/MALogicLegacySong
       0x109333000 -        0x109335fff  com.apple.music.apps.MAResourcesPlugInsShared (10.3.2 - 4981.1) <660BC2F4-DE3C-3E83-A4E9-62DD4A3F983D> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesPlugInsShared.framework/Versions/A/MAResourcesPlugInsShared
       0x10933f000 -        0x109356ff3  com.apple.music.apps.MAAudioUnitSupport (10.3.2 - 4981.1) <D43516B3-D103-3E59-AD92-576C254B10CC> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioUnitSupport.framework/Versions/A/MAAudioUnitSupport
       0x109367000 -        0x1093a6fff  com.apple.iTunesLibrary (12.8.2 - 12.8.2) <68DDB4B8-4064-3B32-8B26-641C6B2A4931> /Library/Frameworks/iTunesLibrary.framework/Versions/A/iTunesLibrary
       0x1093d1000 -        0x109418ff7  com.apple.music.apps.MALoopManagement (10.3.2 - 4981.1) <DDFF866F-5D01-3358-B21F-FFBD9EEE142A> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopManagement.framework/Versions/A/MALoopManagement
       0x109442000 -        0x1096affff  com.apple.music.apps.MACore (10.3.2 - 4981.1) <0D6FB19A-6CBF-3EFD-B8CE-82BABC2F8E27> /Applications/Logic Pro X.app/Contents/Frameworks/MACore.framework/Versions/A/MACore
       0x109814000 -        0x109852ff7  com.apple.audio.midi.CoreMIDI (1.10 - 88) <5E2D1F53-B466-312E-AEA7-117B68C9A7F0> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
       0x10987b000 -        0x1099c1ffb  com.apple.music.apps.MAVectorUIKit (10.3.2 - 4981.1) <A6C6F112-5C03-3D01-B8CE-93FEB0B2B263> /Applications/Logic Pro X.app/Contents/Frameworks/MAVectorUIKit.framework/Versions/A/MAVectorUIKit
       0x109a34000 -        0x109b57fff  com.apple.music.apps.MAHarmony (10.3.2 - 4981.1) <DF11457A-47EA-3964-B1F1-1862EA21BC68> /Applications/Logic Pro X.app/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
       0x109b97000 -        0x109cc9ff3  com.apple.music.apps.OMF (10.3.2 - 4981.1) <15C1A93E-5A53-3FBE-81B3-9F2E663B3015> /Applications/Logic Pro X.app/Contents/Frameworks/OMF.framework/Versions/A/OMF
       0x109cef000 -        0x10a86eff7  com.apple.music.apps.MADSP (10.3.2 - 4981.1) <6EE906E4-AC35-3CFF-AF22-89C0C1B0BCB8> /Applications/Logic Pro X.app/Contents/Frameworks/MADSP.framework/Versions/A/MADSP
       0x10b1b7000 -        0x10b1bbff7  com.apple.music.apps.MAResources (10.3.2 - 4981.1) <7C9995BC-E7BE-36EE-BD24-6AE13B665191> /Applications/Logic Pro X.app/Contents/Frameworks/MAResources.framework/Versions/A/MAResources
       0x10b1c1000 -        0x10b21dff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <DD6F8D1F-69EE-335A-8654-72B24E25423D> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
       0x10b267000 -        0x10b352ff7  com.apple.music.apps.MAFiles (10.3.2 - 4981.1) <84ABA50D-68C4-383D-84F1-C49219BAF811> /Applications/Logic Pro X.app/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
       0x10b39b000 -        0x10b4e7ff7  com.apple.music.apps.MAAudioEngine (10.3.2 - 4981.1) <D0C094AF-06C1-3A68-B751-1665B12F084A> /Applications/Logic Pro X.app/Contents/Frameworks/MAAudioEngine.framework/Versions/A/MAAudioEngine
       0x10b6ac000 -        0x10bde3fff  com.apple.music.apps.MAPlugInGUI (10.3.2 - 4981.1) <9911DEB1-8591-37A8-9785-0C17BE7F42FE> /Applications/Logic Pro X.app/Contents/Frameworks/MAPlugInGUI.framework/Versions/A/MAPlugInGUI
       0x10c14c000 -        0x10c457fff  com.apple.music.apps.MAMusicAnalysis (10.3.2 - 4981.1) <7B291FE2-823C-3953-AEE6-B3D05F9C0B35> /Applications/Logic Pro X.app/Contents/Frameworks/MAMusicAnalysis.framework/Versions/A/MAMusicAnalysis
       0x10c4d6000 -        0x10c4ffffb  com.apple.music.apps.MAVideo (10.3.2 - 4981.1) <B6B54116-0542-3935-89EB-E7DBD3879B58> /Applications/Logic Pro X.app/Contents/Frameworks/MAVideo.framework/Versions/A/MAVideo
       0x10c511000 -        0x10c8fcfff  com.apple.LogicUIKit (10.3.2 - 4981.1) <02A45895-CE4E-3B5A-87E0-D193A2358406> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKit.framework/Versions/A/MAToolKit
       0x10ca5e000 -        0x10cf11ff7  com.apple.music.apps.Animal (10.3.2 - 4981.1) <81C90FD9-13A4-38C2-986C-7F9F491C4887> /Applications/Logic Pro X.app/Contents/Frameworks/Animal.framework/Versions/A/Animal
       0x10d156000 -        0x10d17dffb  com.apple.music.apps.MALoopBrowser (10.3.2 - 4981.1) <2227EDA5-B38C-3B7B-82DA-9306906BAE50> /Applications/Logic Pro X.app/Contents/Frameworks/MALoopBrowser.framework/Versions/A/MALoopBrowser
       0x10d196000 -        0x10d2a2fff  com.apple.music.apps.MAWorkspace (10.3.2 - 4981.1) <388E6019-77E3-3711-A213-DB8553C96688> /Applications/Logic Pro X.app/Contents/Frameworks/MAWorkspace.framework/Versions/A/MAWorkspace
       0x10d308000 -        0x10d359ffb  com.apple.LogicUIKitHighLevel (10.3.2 - 4981.1) <0B8DB949-0CCB-37F5-9BAA-B015520BF671> /Applications/Logic Pro X.app/Contents/Frameworks/MAToolKitHighLevel.framework/Versions/A/MAToolKitHighLevel
       0x10d388000 -        0x10d38aff3  com.apple.music.apps.MAResourcesLg (10.3.2 - 4981.1) <8CD2B845-4A96-35B1-991D-BF8DC2D1D97C> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesLg.framework/Versions/A/MAResourcesLg
       0x10d394000 -        0x10d396ff3  com.apple.music.apps.MAContentDownloading (10.3.2 - 4981.1) <DA20E538-66DA-3086-84F8-01F4CDCA0DBE> /Applications/Logic Pro X.app/Contents/Frameworks/MAContentDownloading.framework/Versions/A/MAContentDownloading
       0x10d3a1000 -        0x10d3b0ff7 +com.nxtbgthng.OAuth2Client (1.1.0 - 4981.1) <977CC4D3-A71F-3D8E-80F5-D43817E71BFC> /Applications/Logic Pro X.app/Contents/Frameworks/OAuth2Client.framework/Versions/A/OAuth2Client
       0x10d3bd000 -        0x10d3c0ffb +com.yourcompany.SoundCloudAPI (2.0b6 - 4981.1) <50861EBE-839D-36BB-9E3E-02B0CBF7DB18> /Applications/Logic Pro X.app/Contents/Frameworks/SoundCloudAPI.framework/Versions/A/SoundCloudAPI
       0x10d3cd000 -        0x10d3cfff3  com.apple.music.apps.MAResourcesGB (10.3.2 - 4981.1) <18B9E3B0-C21E-335F-894B-3A4ED5349085> /Applications/Logic Pro X.app/Contents/Frameworks/MAResourcesGB.framework/Versions/A/MAResourcesGB
       0x10d3d5000 -        0x10d3eefff  libexpat.1.dylib (15.1) <588CA992-60BB-363B-BEE7-3CC0A26C1AFA> /usr/lib/libexpat.1.dylib
       0x10d3f9000 -        0x10d525ff7  com.apple.AudioVideoBridging (506.1 - 506.1) <ABFF7D29-9D86-37CD-9F05-2D5388ECDA09> /System/Library/Frameworks/AudioVideoBridging.framework/Versions/A/AudioVideoBridging
       0x10d5db000 -        0x10d5efff3  com.apple.AudioServerApplication (1.0 - 200.9) <4977039B-FC27-3D6E-9B3E-81B3071ADBB3> /System/Library/PrivateFrameworks/AudioServerApplication.framework/Versions/A/AudioServerApplication
       0x10d603000 -        0x10d612fff  com.apple.TimeSync (1.0 - 503.1) <D06817FE-7DEC-3F8C-9484-2EA4CFBC0889> /System/Library/PrivateFrameworks/TimeSync.framework/Versions/A/TimeSync
       0x10d629000 -        0x10ddc9ff7  com.apple.music.apps.MAAlchemy (10.3.2 - 4981.1) <EC18A0C0-E252-350C-902A-3FBF29646481> /Applications/Logic Pro X.app/Contents/Frameworks/MAAlchemy.framework/Versions/A/MAAlchemy
       0x10e04c000 -        0x10e08cff3  libpcre.0.dylib (9) <B3E07AF3-5DF9-3BBD-9ADD-A697B433BA36> /usr/lib/libpcre.0.dylib
       0x10e093000 -        0x10e0ccfff  com.apple.MAGFFoundation (1.0 - 4981.1) <614FC5FF-BDBE-3498-84B3-9431B47BA757> /Applications/Logic Pro X.app/Contents/Frameworks/MAGFFoundation.framework/Versions/A/MAGFFoundation
       0x110634000 -        0x110636ff7  com.apple.music.apps.anvil.resources (10.3.2 - 4981.1) <BD4201DA-01EF-332A-AA6E-626386C7CDF6> /Applications/Logic Pro X.app/Contents/PlugIns/anvil.res/Contents/MacOS/anvil
       0x11063c000 -        0x11063efff  com.apple.music.apps.common.resources (10.3.2 - 4981.1) <4D52A724-C902-3A25-A6CF-F7C562B23EDC> /Applications/Logic Pro X.app/Contents/PlugIns/common.res/Contents/MacOS/common
       0x111618000 -        0x11161aff3  com.apple.music.apps.ebp.resources (10.3.2 - 4981.1) <9AA2B6C3-012B-3B2C-BDE4-6D46BD4F9EEE> /Applications/Logic Pro X.app/Contents/PlugIns/ebp.res/Contents/MacOS/ebp
       0x1132bc000 -        0x113462fff  GLEngine (14.0.16) <C21BEA53-21B2-3EBB-84C6-CFCAB4D6012A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x1134a1000 -        0x1139fcff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.25.24 - 10.2.5) <39010A86-1664-31B4-B574-D6E5874B4F59> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
       0x113c0f000 -        0x113c39fff  GLRendererFloat (14.0.16) <8CB95D3F-453E-3FD1-B9AE-E72E00A9562F> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x113c43000 -        0x113cbbff7  com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.25.24 - 10.2.5) <CECBB447-44E9-38FC-AE01-114BC3478FDE> /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
       0x113fe1000 -        0x113fe3ff3  com.apple.music.apps.efx.resources (10.3.2 - 4981.1) <68B8A3BA-BEEE-32BF-99BB-897820080C52> /Applications/Logic Pro X.app/Contents/PlugIns/efx.res/Contents/MacOS/efx
       0x113fe9000 -        0x113febff3  com.apple.music.apps.egt.resources (10.3.2 - 4981.1) <8F9BC900-5F58-3232-A33A-6B2371D69FE4> /Applications/Logic Pro X.app/Contents/PlugIns/egt.res/Contents/MacOS/egt
       0x113ff3000 -        0x113ff3fff +libboost_system.dylib (0) <822F03E2-8838-34FA-9CA8-EA856CEC30F1> /usr/local/opt/boost/lib/libboost_system.dylib
       0x11760a000 -        0x117647dc7  dyld (434) <33DB4E37-BC29-37A4-92AB-30328E66A8FA> /usr/lib/dyld
       0x11877d000 -        0x11877fff3  com.apple.music.apps.emx.resources (10.3.2 - 4981.1) <5EC3B36E-FC9C-3D1C-8B88-D400EEF0DD33> /Applications/Logic Pro X.app/Contents/PlugIns/emx.res/Contents/MacOS/emx
       0x118785000 -        0x118787ff3  com.apple.music.apps.es1.resources (10.3.2 - 4981.1) <EDC72095-2BDA-359E-91A5-7B2A7D9C3EE3> /Applications/Logic Pro X.app/Contents/PlugIns/es1.res/Contents/MacOS/es1
       0x11878d000 -        0x11878fff3  com.apple.music.apps.es2.resources (10.3.2 - 4981.1) <D8062FAC-A1DE-3D89-A969-6A3CDF6065D3> /Applications/Logic Pro X.app/Contents/PlugIns/es2.res/Contents/MacOS/es2
       0x118795000 -        0x118797ff3  com.apple.music.apps.esp.resources (10.3.2 - 4981.1) <05288DB2-759D-3A35-8300-451D5C61C580> /Applications/Logic Pro X.app/Contents/PlugIns/esp.res/Contents/MacOS/esp
       0x11879d000 -        0x11879fff3  com.apple.music.apps.evb3.resources (10.3.2 - 4981.1) <2E49378F-AE70-3351-B6C1-B9BC256A59C2> /Applications/Logic Pro X.app/Contents/PlugIns/evb3.res/Contents/MacOS/evb3
       0x1187a5000 -        0x1187a7ff3  com.apple.music.apps.evd6.resources (10.3.2 - 4981.1) <E2BDD5A1-CD59-39A2-A863-09B5CF0DF9AF> /Applications/Logic Pro X.app/Contents/PlugIns/evd6.res/Contents/MacOS/evd6
       0x1187ae000 -        0x1187b2fff  com.apple.audio.AppleHDAHALPlugIn (279.48 - 279.48) <ECA84145-2AC4-347D-BBC0-933AAAC15356> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x118bdc000 -        0x118be0ff7  com.apple.music.apps.midi.device.plugin.Logic-Remote (10.3.2 - 4981.1) <13CB9CC9-0327-341A-BD0C-7DE16B8B979D> /Applications/Logic Pro X.app/Contents/MIDI Device Plug-ins/Logic Remote.bundle/Contents/MacOS/Logic Remote
       0x1193be000 -        0x1193c0ff3  com.apple.music.apps.evoc.resources (10.3.2 - 4981.1) <D7979BEA-3DE6-3EA4-A2D4-E5BFF9EDF601> /Applications/Logic Pro X.app/Contents/PlugIns/evoc.res/Contents/MacOS/evoc
       0x1193c6000 -        0x1193c8ff7  com.apple.music.apps.evp88.resources (10.3.2 - 4981.1) <708AC093-F7C9-3FE2-97A6-0905010271B3> /Applications/Logic Pro X.app/Contents/PlugIns/evp88.res/Contents/MacOS/evp88
       0x1193e3000 -        0x1193e5ff7  com.apple.music.apps.exs24.resources (10.3.2 - 4981.1) <0A230533-B2C0-3294-B38A-0BDCE59714BF> /Applications/Logic Pro X.app/Contents/PlugIns/exs24.res/Contents/MacOS/exs24
       0x1193eb000 -        0x1193edfff  com.apple.music.apps.guitarcontrols.resources (10.3.2 - 4981.1) <13164E7B-99B8-3B72-88C8-3633D1E42A54> /Applications/Logic Pro X.app/Contents/PlugIns/guitarcontrols.res/Contents/MacOS/guitarcontrols
       0x1193f3000 -        0x1193f5fff  com.apple.music.apps.mutapdel.resources (10.3.2 - 4981.1) <4C04B338-6A5A-3FA7-AD29-5391530325A1> /Applications/Logic Pro X.app/Contents/PlugIns/mutapdel.res/Contents/MacOS/mutapdel
       0x119600000 -        0x119602ff3  com.apple.music.apps.pedalboard.resources (10.3.2 - 4981.1) <4D22143F-DDCA-3304-B597-7FD4828A3033> /Applications/Logic Pro X.app/Contents/PlugIns/pedalboard.res/Contents/MacOS/pedalboard
       0x119608000 -        0x11960afff  com.apple.music.apps.revolver.resources (10.3.2 - 4981.1) <82B9E2E2-BB7F-3D17-BCC6-A4D4A54BD50A> /Applications/Logic Pro X.app/Contents/PlugIns/revolver.res/Contents/MacOS/revolver
       0x119610000 -        0x119612fff  com.apple.music.apps.sphere.resources (10.3.2 - 4981.1) <A659AFD9-EBEF-3782-9035-649AB10863F0> /Applications/Logic Pro X.app/Contents/PlugIns/sphere.res/Contents/MacOS/sphere
       0x1197d6000 -        0x1197e5ff7 +libboost_filesystem.dylib (0) <C29A14E1-ACF0-3F2F-B059-2A76A028C38F> /usr/local/opt/boost/lib/libboost_filesystem.dylib
       0x1197f7000 -        0x1197fafff +libogg.0.dylib (0) <DF7E4F03-BEC0-34BE-AF7D-D1B8A48AC7E3> /usr/local/opt/libogg/lib/libogg.0.dylib
       0x119835000 -        0x119859fff +libFLAC.8.dylib (0) <AE903E03-23A6-3395-B6B2-C7A8D6F60EEF> /usr/local/opt/flac/lib/libFLAC.8.dylib
       0x119a97000 -        0x119b29fff +io.github.SuperCollider (1.0 - 1.0) <5F518052-4EC3-34F4-ABCF-6D18979CC75F> /Users/USER/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/MacOS/SuperColliderAU
       0x11a800000 -        0x11a859ff7 +libsndfile.1.dylib (0) <629CE87E-B6FB-34A3-90B6-84739FFFC173> /usr/local/opt/libsndfile/lib/libsndfile.1.dylib
       0x11a86b000 -        0x11a88dfff +libvorbis.0.dylib (0) <A6B60BE2-BF92-3F11-AE4D-2E2EFF0CB96C> /usr/local/opt/libvorbis/lib/libvorbis.0.dylib
       0x11a892000 -        0x11a909fff +libvorbisenc.2.dylib (0) <E0D1BB5E-85E3-3CBD-A785-728B9892D793> /usr/local/opt/libvorbis/lib/libvorbisenc.2.dylib
    0x7fffb47df000 -     0x7fffb4b24ff7  com.apple.RawCamera.bundle (7.04 - 914) <86A67D11-9791-3CE6-9FF5-3387C0AB925B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fffb6359000 -     0x7fffb651afff  com.apple.avfoundation (2.0 - 1187.36) <2F390EAD-07BB-3788-9E73-13104C2E04CD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fffb651b000 -     0x7fffb65bdff7  com.apple.audio.AVFAudio (1.0 - ???) <7997D588-B542-3EBB-B822-D719C1114BB4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fffb65be000 -     0x7fffb6687ff3  com.apple.AVKit (1.1 - 356.12) <1A0929CC-BD23-377D-8A22-6C092409AA9D> /System/Library/Frameworks/AVKit.framework/Versions/A/AVKit
    0x7fffb6688000 -     0x7fffb6688fff  com.apple.Accelerate (1.11 - Accelerate 1.11) <916E360F-323C-3AE1-AB3D-D1F3B284AEE9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fffb6689000 -     0x7fffb66a0ffb  libCGInterfaces.dylib (331.5) <17109679-A284-3C72-AA60-DBA815D3062B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fffb66a1000 -     0x7fffb6bbafeb  com.apple.vImage (8.1 - ???) <B58A7937-BEE2-38FE-87F4-5D5F40D31DC9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fffb6bbb000 -     0x7fffb6d2cff3  libBLAS.dylib (1185.50.4) <4087FFE0-627E-3623-96B4-F0A9A1991E09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fffb6d2d000 -     0x7fffb6d41ffb  libBNNS.dylib (15) <254698C7-7D36-3FFF-864E-ADEEEE543076> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fffb6d42000 -     0x7fffb7138fef  libLAPACK.dylib (1185.50.4) <C35FFB2F-A0E6-3903-8A3C-113A74BCBCA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fffb7139000 -     0x7fffb714ffff  libLinearAlgebra.dylib (1185.50.4) <345CAACF-7263-36EF-B69B-793EA8B390AF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fffb7150000 -     0x7fffb7156fff  libQuadrature.dylib (3) <EF56C8E6-DE22-3C69-B543-A8648F335FDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fffb7157000 -     0x7fffb716bff7  libSparseBLAS.dylib (1185.50.4) <67BA432E-FB59-3C78-A8BE-ED4274CBC359> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fffb716c000 -     0x7fffb72f3fe7  libvDSP.dylib (600.60.1) <4155F45B-41CD-3782-AE8F-7AE740FD83C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fffb72f4000 -     0x7fffb73a6fff  libvMisc.dylib (600.60.1) <E18365D7-DCC4-3304-A8D1-395E656D7B99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fffb73a7000 -     0x7fffb73a7fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <7C5733E7-0568-3E7D-AF61-160F19FED544> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fffb73a8000 -     0x7fffb73e5ffb  com.apple.Accounts (113 - 113) <8550BD08-7D05-3AC4-A0CC-B67ECB2DE950> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fffb73e6000 -     0x7fffb7665ff7  com.apple.AddressBook.framework (10.0 - 1756.20) <E512B69B-8DBE-3085-95BE-750B8EFC97FD> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fffb7666000 -     0x7fffb843fff3  com.apple.AppKit (6.9 - 1504.83.101) <C7A0F7F4-F4F5-3735-8A6B-EE01CF527E80> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fffb8451000 -     0x7fffb8451fff  com.apple.ApplicationServices (48 - 48) <36EB2785-BBD2-33F0-BB13-8C804D47110A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fffb8452000 -     0x7fffb84c0ff7  com.apple.ApplicationServices.ATS (377 - 422.4) <78B556FF-28E6-3147-AE0D-8E0EC45EEE77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fffb855a000 -     0x7fffb8689fff  libFontParser.dylib (194.15) <FF329191-6339-363E-9D95-FFE9D55E7F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fffb868a000 -     0x7fffb86d4ff7  libFontRegistry.dylib (196.8) <5E5F95FD-F69B-3F1A-9592-C0AB8F5FF57C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fffb8732000 -     0x7fffb8765fff  libTrueTypeScaler.dylib (194.15) <513743F9-500B-37C5-A925-A82E7182F3E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fffb87d2000 -     0x7fffb887cff7  com.apple.ColorSync (4.12.0 - 502.2) <ACA4001E-A0E3-33F6-9CD6-EEC2AA15E322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fffb887d000 -     0x7fffb88cefff  com.apple.HIServices (1.22 - 594) <EF8432A1-15C5-360C-9D14-19ADA43FCFDC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fffb88cf000 -     0x7fffb88deff3  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2CBE7F61-2056-3F96-99A1-0D527796AFA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fffb88df000 -     0x7fffb892cfff  com.apple.print.framework.PrintCore (12 - 491) <5027FD58-F0EE-33E4-8577-934CA06CD2AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fffb892d000 -     0x7fffb8968fff  com.apple.QD (3.12 - 313) <B339C41D-8CDF-3342-8414-F9717DCCADD4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fffb8969000 -     0x7fffb8974fff  com.apple.speech.synthesis.framework (6.6.2 - 6.6.2) <7853EFF4-62B9-394E-B7B8-41A645656820> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fffb8975000 -     0x7fffb8b81ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1F4026C6-23C1-39E8-823D-72298FECF75C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fffb8b82000 -     0x7fffb8b82fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <2CEE36AF-79E6-3B3E-B369-285E6C1886F7> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fffb8ceb000 -     0x7fffb90c8fff  com.apple.CFNetwork (811.11 - 811.11) <5E5A7D4D-BCBA-3995-8C13-4D01DE1FAB33> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fffb90e2000 -     0x7fffb90e2fff  com.apple.Carbon (154 - 157) <69F403C7-F0CB-34E6-89B0-235CF4978C17> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fffb90e3000 -     0x7fffb90e6fff  com.apple.CommonPanels (1.2.6 - 98) <BF04BB22-D54C-309E-9F5C-897D969CAF70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fffb90e7000 -     0x7fffb93f0fff  com.apple.HIToolbox (2.1.1 - 857.8) <25E0AC26-27FE-32E5-9226-F4D42B25ED30> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fffb93f1000 -     0x7fffb93f4ff7  com.apple.help (1.3.5 - 49) <B1A930E3-5907-3677-BACD-858EF68B172D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fffb93f5000 -     0x7fffb93fafff  com.apple.ImageCapture (9.0 - 9.0) <341252B4-E082-361A-B756-6A330259C741> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fffb93fb000 -     0x7fffb9492ff3  com.apple.ink.framework (10.9 - 219) <1BD40B45-FD33-3177-A935-565EE5FC79D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fffb9493000 -     0x7fffb94adfff  com.apple.openscripting (1.7 - 172.1) <78F3256B-AF4C-324A-A591-ECA4443A469F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fffb94ae000 -     0x7fffb94afff3  com.apple.print.framework.Print (12 - 267) <E2F82F1F-DC27-3EF0-9F75-B354F701450A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fffb94b0000 -     0x7fffb94b2ff7  com.apple.securityhi (9.0 - 55006) <0DA7BABC-CE24-35FC-BF23-8EDF72D8C237> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fffb94b3000 -     0x7fffb94b9ff7  com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <082895DC-3AC7-3DEF-ADCA-5B018C19C9D3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fffb959a000 -     0x7fffb959afff  com.apple.Cocoa (6.11 - 22) <85EDFBE1-75F0-369E-8CA8-C6A639B98FA6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fffb96e4000 -     0x7fffb9771fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <78767F88-91D4-31CE-AAC6-1F9407F479BB> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fffb9772000 -     0x7fffb9785fff  com.apple.CoreBluetooth (1.0 - 1) <BCB78777-76F0-3CC1-8443-9E61AEF7EF63> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fffb9786000 -     0x7fffb9a81fff  com.apple.CoreData (120 - 754.2) <4C9CAB2C-60D4-3694-A0A0-5B04B14BD14E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fffb9a82000 -     0x7fffb9b2fff7  com.apple.CoreDisplay (1.0 - 1) <53D1EAFE-23A4-398D-BF52-E4299E670DB6> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fffb9b30000 -     0x7fffb9fcbfe7  com.apple.CoreFoundation (6.9 - 1349.98) <78CE7738-61B5-3997-902E-053426B3C2A9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fffb9fcc000 -     0x7fffba64efff  com.apple.CoreGraphics (2.0 - 1070.22.1) <8A053296-AA99-371C-B9C5-FCBF87C6CEFE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fffba64f000 -     0x7fffba892ffb  com.apple.CoreImage (12.4.0 - 451.4.9) <BE4303C9-C9D9-361D-AC94-DBE40EB6700E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fffba8f9000 -     0x7fffba9aafff  com.apple.CoreMedia (1.0 - 1907.59.1.6) <570690D8-A956-3629-9E46-4F8BDDB8A82C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fffba9ab000 -     0x7fffba9f6ff7  com.apple.CoreMediaIO (805.0 - 4932) <2A8AAD00-4F29-39C3-A371-3A8BA6200CAA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fffba9f7000 -     0x7fffba9f7fff  com.apple.CoreServices (775.20 - 775.20) <6DE824F2-B5FF-3EDA-8618-AED3C8020024> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fffba9f8000 -     0x7fffbaa49fff  com.apple.AE (712.6 - 712.6) <9E9B4EC3-564D-3BA9-A9A4-1603E1F97F40> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fffbaa4a000 -     0x7fffbad25ff7  com.apple.CoreServices.CarbonCore (1159.8 - 1159.8) <2B661676-E4F2-3E6F-BD25-DB685FCCA06A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fffbad26000 -     0x7fffbad59fff  com.apple.DictionaryServices (1.2 - 274) <D23866E2-F7C8-3984-A9D4-96552CCDE573> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fffbad5a000 -     0x7fffbad62ff3  com.apple.CoreServices.FSEvents (1230.50.1 - 1230.50.1) <2AD1B0E5-7214-37C4-8D11-A27C9CAC0F74> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fffbad63000 -     0x7fffbaecfffb  com.apple.LaunchServices (775.20 - 775.20) <9106FF16-9587-313F-822C-2CD56204903E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fffbaed0000 -     0x7fffbaf80ffb  com.apple.Metadata (10.7.0 - 1075.41) <FE2BC948-5014-3C50-9ED7-F9544B611363> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fffbaf81000 -     0x7fffbafe0fff  com.apple.CoreServices.OSServices (775.20 - 775.20) <82D7E763-999D-31A0-AAE7-4F7A40105739> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fffbafe1000 -     0x7fffbb051fff  com.apple.SearchKit (1.4.0 - 1.4.0) <7A6DDA2B-03F1-3137-BA9E-1CC211973E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fffbb052000 -     0x7fffbb097ff7  com.apple.coreservices.SharedFileList (38 - 38) <DA096678-93AB-3291-BDE2-482F1D544589> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fffbb120000 -     0x7fffbb26dffb  com.apple.CoreText (352.0 - 544.18) <B883809B-561B-31C5-949E-D2564B6F808A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fffbb26e000 -     0x7fffbb2a3ff3  com.apple.CoreVideo (1.8 - 235.3) <AC11D5FB-C77B-34F5-B942-F698E84C229F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fffbb2a4000 -     0x7fffbb315ffb  com.apple.framework.CoreWLAN (11.0 - 1200.31) <7300F2B4-0976-37F3-95E9-4B3BC102ED01> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fffbb348000 -     0x7fffbb353ff3  com.apple.DirectoryService.Framework (10.12 - 194) <45BEA292-4550-3082-8CE7-5D6CE7E0052A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fffbb354000 -     0x7fffbb412ff7  com.apple.DiscRecording (9.0.3 - 9030.4.5) <9397E609-CB54-37B2-B28E-D4BC6C34BFAB> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fffbb413000 -     0x7fffbb418fff  com.apple.DiskArbitration (2.7 - 2.7) <F47E07A4-D69D-312A-82C8-A1EE3C7C0EAC> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fffbb5a7000 -     0x7fffbb5a9ff7  com.apple.ExceptionHandling (1.5 - 12) <23464743-95E9-3EA7-868F-FE6DA0B17449> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHandling
    0x7fffbb5aa000 -     0x7fffbb950ff3  com.apple.Foundation (6.9 - 1349.92) <CF64A84C-CBBD-3B6B-BC49-CF05398F2280> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fffbb97c000 -     0x7fffbb9adfff  com.apple.GSS (4.0 - 2.0) <453B5C6D-08B0-3199-AFC8-C71BABD6B704> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fffbba6d000 -     0x7fffbbb10ff7  com.apple.Bluetooth (5.0.5 - 5.0.5f7) <DC83B429-A8C1-34F1-9FD9-C9BB99156DBE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fffbbb11000 -     0x7fffbbba7fff  com.apple.framework.IOKit (2.0.2 - 1324.60.8) <46DA8966-AC27-3F51-BBB2-359A229BB0F7> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fffbbba8000 -     0x7fffbbbaeffb  com.apple.IOSurface (159.12 - 159.12) <E3D6FCED-F938-30A3-AD08-0998B674A492> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fffbbbaf000 -     0x7fffbbc00ff7  com.apple.ImageCaptureCore (7.0 - 7.0) <A640CA2F-8093-34AB-947C-26679ECB8A6D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fffbbc01000 -     0x7fffbbd61fef  com.apple.ImageIO.framework (3.3.0 - 1599.13.1) <B48585FF-3B2D-32F6-85A6-07ECDDB2A6E9> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fffbbd62000 -     0x7fffbbd66fff  libGIF.dylib (1599.13.1) <79C31DCF-3D95-32DE-9869-C1FA91F7C572> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fffbbd67000 -     0x7fffbbe57ff7  libJP2.dylib (1599.13.1) <5E34964D-36BC-3DDD-936B-D859B39117BB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fffbbe58000 -     0x7fffbbe7bffb  libJPEG.dylib (1599.13.1) <863E6D9C-E45A-33F7-8C52-2D2B81FCAE63> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fffbbe7c000 -     0x7fffbbea3ff7  libPng.dylib (1599.13.1) <06282D7B-70EC-34A5-9240-A80FD18DC2D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fffbbea4000 -     0x7fffbbea6ff3  libRadiance.dylib (1599.13.1) <823DDB0C-6BD0-3073-ABE4-313FDA38E3B4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fffbbea7000 -     0x7fffbbef5fff  libTIFF.dylib (1599.13.1) <B48CCFEF-BD6E-37EA-8F1C-CC2CF6775A0E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fffbc053000 -     0x7fffbcc5dfff  com.apple.JavaScriptCore (12603 - 12603.3.8) <9557271A-1838-38DD-93E3-D8A9ECDE3B6B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fffbcc5e000 -     0x7fffbcc77ff7  com.apple.Kerberos (3.0 - 1) <B9D242EB-E325-3A21-9812-C77CBBFB0D51> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fffbcc78000 -     0x7fffbccaefff  com.apple.LDAPFramework (2.4.28 - 194.5) <492ACA22-373E-3DD9-BAEB-9EF6AA962FD5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fffbcf01000 -     0x7fffbcf07fff  com.apple.MediaAccessibility (1.0 - 97.1.1) <0BD82735-6644-37CE-B13D-8E7CC59A1752> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fffbcf1d000 -     0x7fffbd456ff7  com.apple.MediaToolbox (1.0 - 1907.59.1.6) <FA068C6F-0506-35C3-A637-C4AFF82411DB> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fffbd457000 -     0x7fffbd4b2fff  com.apple.Metal (87.18 - 87.18) <E3618B54-C728-34CA-9E8A-9BD33A295D31> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fffbd4b3000 -     0x7fffbd4cbfff  com.apple.MetalKit (1.0 - 76.1) <BA9002FF-00C1-32C8-BC06-634C81C3DB02> /System/Library/Frameworks/MetalKit.framework/Versions/A/MetalKit
    0x7fffbd4cc000 -     0x7fffbdd4bfff  com.apple.ModelIO (1.0 - 1) <366820F9-6795-3D93-AAF2-630D94B395E6> /System/Library/Frameworks/ModelIO.framework/Versions/A/ModelIO
    0x7fffbdd4c000 -     0x7fffbdd9aff7  com.apple.MultipeerConnectivity (135.3 - 135.3) <068FDF41-9BA2-39C4-98EF-5ED6167FE026> /System/Library/Frameworks/MultipeerConnectivity.framework/Versions/A/MultipeerConnectivity
    0x7fffbdd9b000 -     0x7fffbdda3fff  com.apple.NetFS (6.0 - 4.0) <14A24D00-5673-330A-959D-87F72040DEFF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fffbdf7a000 -     0x7fffbdf82ff7  libcldcpuengine.dylib (2.8.5) <0D182C1C-2593-34C8-B454-78D3F5FF5724> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fffbdf83000 -     0x7fffbdfd1ff3  com.apple.opencl (2.8.6 - 2.8.6) <E7958F3E-F56C-35EC-87CD-6ADFC25D4512> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fffbdfd2000 -     0x7fffbdfebffb  com.apple.CFOpenDirectory (10.12 - 194) <A64E9A01-3F6E-36EA-9C10-88C564A68C9D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fffbdfec000 -     0x7fffbdff7ff7  com.apple.OpenDirectory (10.12 - 194) <4298FFD0-B1A7-3064-AF5B-708B3FA38671> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fffbdff8000 -     0x7fffbdffafff  libCVMSPluginSupport.dylib (14.0.16) <25655EB3-7BF6-36EC-BD17-47F4DF499D7F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fffbdffb000 -     0x7fffbdffeff7  libCoreFSCache.dylib (156.3) <687C4CC3-6537-344B-8BE1-5234C8CB2864> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fffbdfff000 -     0x7fffbe003fff  libCoreVMClient.dylib (156.3) <E7AEFCBE-B6BF-3C7C-9A4E-E78CB04DB794> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fffbe004000 -     0x7fffbe00dff7  libGFXShared.dylib (14.0.16) <679D8495-1C5F-3932-A452-050A21E0EEBB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fffbe00e000 -     0x7fffbe019fff  libGL.dylib (14.0.16) <0801F3B9-A525-32BB-9BC0-478947CE21D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fffbe01a000 -     0x7fffbe056ff7  libGLImage.dylib (14.0.16) <FE39C57B-056C-3CBF-B653-A8F2005631C1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fffbe057000 -     0x7fffbe1cdff3  libGLProgrammability.dylib (14.0.16) <46B8611A-D245-33BF-AA38-E44B2119DA12> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fffbe1ce000 -     0x7fffbe20fff7  libGLU.dylib (14.0.16) <B285EAD6-B3AA-3753-BB85-75864BD6E76C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fffbeb77000 -     0x7fffbeb85fff  com.apple.opengl (14.0.16 - 14.0.16) <8D4CC067-4A70-34AE-945D-29407D780452> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fffbec22000 -     0x7fffbed69fff  com.apple.QTKit (7.7.3 - 2978.8) <80B27C5D-087F-3B83-AF99-AD6BA2E1105D> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fffbed6a000 -     0x7fffbefd4ff7  com.apple.imageKit (3.0 - 1023) <9C547565-CBAA-3ACB-A3F6-1366A0DCDCB4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fffbefd5000 -     0x7fffbf09cfff  com.apple.PDFKit (1.0 - 1) <BE82F14C-B20C-3771-B16C-F0723F6552AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fffbf09d000 -     0x7fffbf5c3ff7  com.apple.QuartzComposer (5.1 - 356) <C66293F6-EF05-3B36-8524-081CEB9FADD7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fffbf5c4000 -     0x7fffbf5e7ffb  com.apple.quartzfilters (1.10.0 - 1.10.0) <365342ED-7A1A-3C75-AE60-90764E96034C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fffbf5e8000 -     0x7fffbf6d5fff  com.apple.QuickLookUIFramework (5.0 - 720.7) <3136C23E-399E-3296-928A-B18EC9FC423C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fffbf6d6000 -     0x7fffbf6d6fff  com.apple.quartzframework (1.5 - 21) <09455972-8A33-3D61-B193-BA7E7CF984CA> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fffbf6d7000 -     0x7fffbf8d7fff  com.apple.QuartzCore (1.11 - 453.41.2) <564FBF07-0072-3587-91BE-7B0EFD6FBC1D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fffbf8d8000 -     0x7fffbf92dfff  com.apple.QuickLookFramework (5.0 - 720.7) <3BD7BA2F-924C-3EFF-B26E-3F930E62E6B4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fffbf92e000 -     0x7fffbf947fff  com.apple.SafariServices.framework (12607 - 12607.3.10) <481200D1-0ED9-33C0-AFDB-0EF2246DCF3D> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fffbfe2a000 -     0x7fffbfe41ff7  com.apple.ScriptingBridge (1.3.3 - 69) <F51B85CD-9C80-317E-B594-4A03612EAF52> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x7fffbfe42000 -     0x7fffc0144fff  com.apple.security (7.0 - 57740.60.30) <2DD7275B-40E5-3F8C-8258-8C73DD3EE438> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fffc0145000 -     0x7fffc01bafff  com.apple.securityfoundation (6.0 - 55132.50.7) <2AF6A217-45D3-30C2-86B6-F35AF827E698> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fffc01bb000 -     0x7fffc01e4fff  com.apple.securityinterface (10.0 - 55079.50.4) <BFF71026-2F8C-3B74-BAF6-3F01CD8DCE36> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fffc01e5000 -     0x7fffc01e8ff3  com.apple.xpc.ServiceManagement (1.0 - 1) <F2AACDEF-7DCC-35B9-A6B6-119FF8D83DBB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fffc0428000 -     0x7fffc0433ffb  com.apple.StoreKit (1.0 - 584) <A3111CF4-FB8C-3A75-8953-36EB447D4809> /System/Library/Frameworks/StoreKit.framework/Versions/A/StoreKit
    0x7fffc056f000 -     0x7fffc05deff7  com.apple.SystemConfiguration (1.14 - 1.14) <98E76341-BB2F-3DF4-9DD4-F4AC7648EF0F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fffc05df000 -     0x7fffc098dfff  com.apple.VideoToolbox (1.0 - 1907.59.1.6) <EB2577A4-DCDF-3FD1-B5FA-42A55653A74D> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fffc098e000 -     0x7fffc1d15ff3  com.apple.WebCore (12603 - 12603.3.8) <FE0B8503-5E89-3D55-BF48-1370FE81910A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fffc1d16000 -     0x7fffc1f02ff3  com.apple.WebKitLegacy (12603 - 12603.3.8) <28A763DA-BA6C-3350-8200-6DEA86FF7878> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fffc1f03000 -     0x7fffc22aefff  com.apple.WebKit (12603 - 12603.3.8) <38192059-8C02-3BBC-BF1F-E1D5E3150E16> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fffc26ba000 -     0x7fffc26c1ffb  com.apple.APFS (1.0 - 1) <6E79797E-26BD-3E49-891C-03B223F7BD59> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fffc2716000 -     0x7fffc2789ff3  com.apple.ICE (3.0 - 917.49) <B4DA9BA6-6AC8-325F-B2B4-B81E0E6BC809> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ICE.framework/Versions/A/ICE
    0x7fffc278a000 -     0x7fffc278aff7  com.apple.LegacyHandle (3.0 - 917.49) <38305AD9-355D-3CCD-ADE8-272D75D200CB> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandle.framework/Versions/A/LegacyHandle
    0x7fffc278b000 -     0x7fffc2791fff  com.apple.SimpleKeyExchange (3.0 - 917.49) <ED0CB556-7D37-3222-B614-5D6B925B2EA3> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/SimpleKeyExchange.framework/Versions/A/SimpleKeyExchange
    0x7fffc2792000 -     0x7fffc27b2fff  com.apple.ViceroyTrace (3.0 - 917.49) <FF476F1C-1588-3EE3-87D9-0F650378FD7F> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/ViceroyTrace.framework/Versions/A/ViceroyTrace
    0x7fffc27b3000 -     0x7fffc27b5ff3  com.apple.snatmap (3.0 - 917.49) <0FCBEAF5-9E72-3E8E-98CD-D57FDA7B66EA> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.framework/Versions/A/snatmap
    0x7fffc2e37000 -     0x7fffc2e52ff3  com.apple.AppContainer (4.0 - 307.50.21) <C2E6BA3D-81FF-39C3-B4BF-DBB9A17DE078> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fffc2e53000 -     0x7fffc2e60ff3  com.apple.AppSandbox (4.0 - 307.50.21) <BF9FA426-8C11-358B-9E1F-A3901E3F2B14> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fffc2e61000 -     0x7fffc2e83ffb  com.apple.framework.Apple80211 (12.0 - 1200.47.1) <F362FADE-B6F5-32B5-84E8-C3CE7FE5F851> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fffc2e84000 -     0x7fffc2e93feb  com.apple.AppleFSCompression (88.50.3 - 1.0) <478E8BFF-8BA2-375E-BE02-BA27F115C15A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fffc2f87000 -     0x7fffc301297f  com.apple.AppleJPEG (1.0 - 1) <B9E9570D-04A4-34E4-B756-D200043B25B8> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fffc3026000 -     0x7fffc3041fff  com.apple.aps.framework (4.0 - 4.0) <6CA07CDF-1E35-34E9-95BF-BD565FF42BAD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fffc3042000 -     0x7fffc304affb  com.apple.AppleSRP (5.0 - 1) <6AAE93B6-9816-35B2-9C59-D5C3218065AF> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fffc304b000 -     0x7fffc304eff3  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <42A1731A-A576-307A-B07C-9F8F64696CB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fffc304f000 -     0x7fffc30a1fff  com.apple.AppleVAFramework (5.0.36 - 5.0.36) <149E882D-5DB1-3A2A-9D61-1D7C9A71A0D5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fffc30ab000 -     0x7fffc30b2ff7  com.apple.AssetCacheServices (48.3 - 48.3) <C59F7295-36D8-3109-A910-C83D884CC92C> /System/Library/PrivateFrameworks/AssetCacheServices.framework/Versions/A/AssetCacheServices
    0x7fffc3445000 -     0x7fffc34c3ff7  com.apple.backup.framework (1.8.6 - 1.8.6) <2D75451A-8818-3D72-8480-489DF77D708B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fffc34ec000 -     0x7fffc3529ffb  com.apple.bom (14.0 - 194.1.5) <304CDDD5-F138-3B3E-97B4-69CA7CE3D7CE> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fffc3b5f000 -     0x7fffc3b86fff  com.apple.CalendarAgentLink (8.0 - 250) <E50E29F6-2BAB-3B8B-BBEA-7DC0B8B077AD> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
    0x7fffc414e000 -     0x7fffc4175ff3  com.apple.ChunkingLibrary (173 - 173) <FC2165F9-FC93-39C0-8323-C2F43A5E00A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fffc4a8e000 -     0x7fffc4a99ff7  com.apple.CommerceCore (1.0 - 584) <F13121B4-5F5B-3BDE-AFE3-341F56A8DD11> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
    0x7fffc4a9a000 -     0x7fffc4aa3ffb  com.apple.CommonAuth (4.0 - 2.0) <A71AD8F9-5CC8-3072-8A0B-F5427D3E8163> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fffc4aa4000 -     0x7fffc4ab0fff  com.apple.commonutilities (8.0 - 900) <B0C96E6D-2C68-36EF-86BE-A2E5F380C78B> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fffc4b6a000 -     0x7fffc4bbbff7  com.apple.AddressBook.ContactsFoundation (8.0 - 2250.11) <1324A70E-A093-3DB9-A802-07B8F4A499B5> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
    0x7fffc4bbc000 -     0x7fffc4bdefff  com.apple.contacts.ContactsPersistence (1.0 - 2250.11) <7CDEB852-B3B7-328F-9537-DFB3A58B882C> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
    0x7fffc4c28000 -     0x7fffc5007ff7  com.apple.CoreAUC (226.0.0 - 226.0.0) <FBF6C5BC-5937-3957-B6BA-E101DF9B0DF6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fffc5008000 -     0x7fffc5038fff  com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <3F6857D1-AE7C-3593-B064-930F5BB7269E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fffc50d3000 -     0x7fffc50dbffb  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2AB86FAF-37B3-3323-9EF0-CA591B6E357C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fffc51ec000 -     0x7fffc51fcfff  com.apple.CoreEmoji (1.0 - 40.3.3) <E9A28301-2D79-3A97-A046-028258A6ABE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fffc52c1000 -     0x7fffc52d7ff3  com.apple.CoreMediaAuthoring (2.2 - 956) <AEBFF55F-BF1E-3CA5-AA9C-1CE22218A665> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fffc52de000 -     0x7fffc536effb  com.apple.CorePDF (4.0 - 4) <7F50E4A6-940C-33F5-BE4E-7E01AFE98A8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fffc5537000 -     0x7fffc5567ff3  com.apple.CoreServicesInternal (276.2 - 276.2) <05EB7D45-DD4C-3A0F-AC63-A0C2A68E6481> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fffc57f8000 -     0x7fffc5887ff7  com.apple.CoreSymbolication (62046) <2D4C3324-B647-3696-B92E-AAB1053EEB54> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fffc5888000 -     0x7fffc59c7fe7  com.apple.coreui (2.1 - 431.3) <8D0FA478-9B6C-3D6D-8ADF-8677BA0BF134> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fffc59c8000 -     0x7fffc5a98ff3  com.apple.CoreUtils (5.1 - 510.31) <B6636BBF-D37E-360E-A3EE-61BDC1736EEA> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fffc5ae8000 -     0x7fffc5b4dff3  com.apple.framework.CoreWiFi (12.0 - 1200.31) <1B3FE242-8AEB-38BD-84A4-65DBC476FEEA> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fffc5b4e000 -     0x7fffc5b5cff7  com.apple.CrashReporterSupport (10.12 - 827) <802A9B81-E349-348B-90AB-10E40B654250> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fffc5bce000 -     0x7fffc5bd8ffb  com.apple.framework.DFRFoundation (1.0 - 104.25) <7CFF896C-EF22-3941-BB3D-F3615CE4C908> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fffc5bd9000 -     0x7fffc5bddff3  com.apple.DSExternalDisplay (3.1 - 380) <4B5E3FF0-E8C3-38CC-BF72-418C928956AB> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fffc5c13000 -     0x7fffc5c88ffb  com.apple.datadetectorscore (7.0 - 539.1) <D84B64BA-CD56-368E-A31A-AC47C3780D0B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fffc5cc4000 -     0x7fffc5d03fff  com.apple.DebugSymbols (137 - 137) <58A70B66-2628-3CFE-B103-2200D95FC5F7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fffc5d04000 -     0x7fffc5e15fff  com.apple.desktopservices (1.11.6 - 1.11.6) <225B3746-8626-34CD-8FA9-48A7C04ACCCF> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fffc5e18000 -     0x7fffc5e19ff3  com.apple.diagnosticlogcollection (10.0 - 1000) <8FAE46F9-77CF-3652-82F0-872977C5F45C> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/DiagnosticLogCollection
    0x7fffc5e1a000 -     0x7fffc5eeffff  com.apple.DiskImagesFramework (444.50.19 - 444.50.19) <A7C95C24-44EE-3EF0-BE04-628DFD04D57C> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fffc5f58000 -     0x7fffc5f63fff  com.apple.DisplayServicesFW (3.1 - 380) <0BDF6C17-5E5F-33F8-8E99-C7350C6F9667> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fffc5fa8000 -     0x7fffc5faaffb  com.apple.EFILogin (2.0 - 2) <A74B0065-643F-3BC1-8FE9-E7CEAA29AD9A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fffc60fd000 -     0x7fffc652eff7  com.apple.vision.FaceCore (3.3.2 - 3.3.2) <9391D5A3-738C-3136-9D07-518CB43DBADA> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fffc7885000 -     0x7fffc7885fff  libmetal_timestamp.dylib (600.0.49.9) <E5EED927-1671-3390-BCBB-D76201D63C73> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fffc7892000 -     0x7fffc789dff3  libGPUSupportMercury.dylib (14.0.16) <BE0ED0DC-DDE4-32F0-9315-39678785A538> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fffc7b56000 -     0x7fffc7b72fff  com.apple.GenerationalStorage (2.0 - 267.2) <22381303-B9A8-32D8-BDBF-871F0CDD81A5> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fffc8283000 -     0x7fffc82f9ff3  com.apple.Heimdal (4.0 - 2.0) <9E554667-2A6D-3A86-883A-50C8AF98D0C0> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fffc82fa000 -     0x7fffc830bfff  com.apple.HelpData (2.1.12 - 100.1) <EEB8CC44-9AFF-3005-A25D-18FE46574FD5> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fffc8860000 -     0x7fffc88c3ffb  com.apple.imfoundation (10.0 - 1000) <5D06CD08-8F99-357B-B90B-3F2F8C22D4F8> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
    0x7fffc8914000 -     0x7fffc891bffb  com.apple.IOAccelerator (311.16.4 - 311.16.4) <F41EB563-1439-3745-BE98-4A4B6F45A7DF> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fffc891d000 -     0x7fffc8931ff7  com.apple.IOPresentment (1.0 - 29.10) <30DF04EE-10E2-353F-845F-A97B87DF3207> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fffc8932000 -     0x7fffc8954fff  com.apple.IconServices (74.4 - 74.4) <218DDD05-35F4-3833-B98D-471ED0EBC031> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fffc89f0000 -     0x7fffc8a00ff3  com.apple.IntlPreferences (2.0 - 216) <7A417848-2A43-35A3-9CD4-61F33D573C56> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
    0x7fffc8a3b000 -     0x7fffc8bf2fff  com.apple.LanguageModeling (1.0 - 123.2.5) <A8CA965F-0399-310D-91C3-B93DDDE9A442> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fffc9262000 -     0x7fffc9265fff  com.apple.Mangrove (1.0 - 1) <98814966-FD65-302B-B47E-00928DC34E5C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fffc92a4000 -     0x7fffc92a6ffb  com.apple.marco (10.0 - 1000) <A4D35D48-6020-3FF7-BB4F-8193534A4B8F> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x7fffc933e000 -     0x7fffc9372ff3  com.apple.MediaKit (16 - 845) <883DC63F-F90F-3FB9-8C23-9CECD72EBCDE> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fffc9373000 -     0x7fffc94d3ffb  com.apple.MediaRemote (1.0 - 1) <24B6D0D5-E41F-366E-8881-BD427639BD34> /System/Library/PrivateFrameworks/MediaRemote.framework/Versions/A/MediaRemote
    0x7fffc94d4000 -     0x7fffc94efffb  com.apple.MediaServices (1.0 - 1) <C7097932-E6BF-396A-B838-785000FBF58D> /System/Library/PrivateFrameworks/MediaServices.framework/Versions/A/MediaServices
    0x7fffc9513000 -     0x7fffc958cff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <C323FC94-FFA5-3EE6-B2AC-7E61EA92F304> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fffc959e000 -     0x7fffc9709ff7  com.apple.mobiledevice (988.250.11.100.2 - 988.250.11.100.2) <E3A6F6AC-EF91-3A77-8AD8-82D51C7F0388> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
    0x7fffc970a000 -     0x7fffc9718fff  com.apple.MobileKeyBag (2.0 - 1.0) <F30A4E9C-FAB8-3FD7-B881-5021F40C12FB> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fffc9729000 -     0x7fffc9751ff7  com.apple.MultitouchSupport.framework (368.16 - 368.16) <F6EFB289-F4B1-36E7-88D4-D1C7B1630A23> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fffc9803000 -     0x7fffc980efff  com.apple.NetAuth (6.2 - 6.2) <E1D6BFF0-7F37-3866-9925-5DF40EB3A1F4> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fffc9c5b000 -     0x7fffc9c5dfff  com.apple.OAuth (25 - 25) <D6E5F36D-71B8-3E12-9601-CE2A1D6ED60B> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fffc9c7f000 -     0x7fffc9d83fc7  com.apple.PackageKit (3.0 - 629.0.1) <1E22618E-6033-3D4C-A9AF-6064E50333BE> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    0x7fffca0e7000 -     0x7fffca128ff3  com.apple.PerformanceAnalysis (1.148.3 - 148.3) <DE16079A-5267-372A-9435-E993EB41252A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fffca16b000 -     0x7fffca172ff3  com.apple.phonenumbers (1.1.1 - 105) <B8EFDDD3-BA26-39B8-9EA0-3649184BF527> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x7fffca760000 -     0x7fffca782fff  com.apple.pluginkit.framework (1.0 - 1) <B09BC1B5-63C4-368E-A7BA-4155D3798E27> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fffca7d5000 -     0x7fffca80fffb  com.apple.ProtectedCloudStorage (1.0 - 1) <FD1F4A30-A8A4-3570-98E0-347117CE99A7> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fffca810000 -     0x7fffca82afff  com.apple.ProtocolBuffer (1 - 249.1) <A1F1B0F3-078F-378F-A9A9-0DEEA70E816A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fffca82b000 -     0x7fffca83aff7  com.apple.QuickLookThumbnailing (1.0 - 1) <173EE873-1700-3FCA-9782-C060FBB5BCAD> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fffca843000 -     0x7fffca866ff3  com.apple.RemoteViewServices (2.0 - 124) <6B967FDA-6591-302C-BA0A-76C4856E584E> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fffcb530000 -     0x7fffcb533fff  com.apple.SecCodeWrapper (4.0 - 307.50.21) <F8E957B2-D3F0-3B73-B38C-AE8868F00939> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fffcb5c2000 -     0x7fffcb64ffff  com.apple.Sharing (696.2.67.1 - 696.2.67.1) <267A3C7C-BB70-3E92-B773-A3F9EDD12E84> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fffcb670000 -     0x7fffcb8d6ff3  com.apple.SkyLight (1.600.0 - 170.3.11.11) <0F7F9F9B-90E2-3FE4-9A39-DE7EC10DAF79> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fffcbab5000 -     0x7fffcbac1ff7  com.apple.SpeechRecognitionCore (3.3.2 - 3.3.2) <684BD1EA-8268-331C-A5A9-080EB375C658> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fffcc1ad000 -     0x7fffcc221fdf  com.apple.Symbolication (62048.1) <1A30ED19-7532-3F46-9DD3-9879A973D0CF> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fffcc660000 -     0x7fffcc666ff7  com.apple.TCC (1.0 - 1) <911B534B-4AC7-34E4-935E-E42ECD008CBC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fffcc6f2000 -     0x7fffcc7b8ff7  com.apple.TextureIO (2.8 - 2.8) <3D61E533-4156-3B21-B7ED-CB823E680DFC> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fffcc801000 -     0x7fffcc816ff3  com.apple.ToneKit (1.0 - 1) <B709293D-0A79-398A-8AA9-50F6340C227C> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fffcc817000 -     0x7fffcc825ffb  com.apple.ToneLibrary (1.0 - 1) <F2ED5DFC-5F11-3012-BCD7-17753413141F> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fffcc82c000 -     0x7fffcc82dfff  com.apple.TrustEvaluationAgent (2.0 - 28.50.1) <EBE65DD5-1732-3747-8C6C-7BECEBF089A4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fffcc82e000 -     0x7fffcc9bfff3  com.apple.UIFoundation (1.0 - 490.8) <0342C3E6-AB89-3F0D-A9CE-5F2CD3587B75> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fffcd48e000 -     0x7fffcd54efff  com.apple.ViewBridge (283 - 283) <25A635B3-C87C-3D3A-ADF3-539713FA1048> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fffcd999000 -     0x7fffcd99ffff  com.apple.XPCService (2.0 - 1) <4B28B225-2105-33F4-9ED0-F04288FF4FB1> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fffcd9ec000 -     0x7fffcda6aff7  com.apple.iLifeMediaBrowser (2.11.2 - 733) <13B4CC92-9DFE-3C01-A519-6E32CC504662> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowser
    0x7fffcda70000 -     0x7fffcda72ffb  com.apple.loginsupport (1.0 - 1) <F3140B97-12C3-35A7-9D3D-43DA2D13C113> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fffcda9e000 -     0x7fffcdac5ff7  com.apple.contacts.vCard (1.0 - 2250.11) <DD615DAF-AF34-3AB4-9CB4-DA0A882D59A5> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fffcdac7000 -     0x7fffcdae2ff7  libCRFSuite.dylib (34) <F78B7F5F-0B4F-35C6-AA2F-84EE9CB22137> /usr/lib/libCRFSuite.dylib
    0x7fffcdae3000 -     0x7fffcdaeefff  libChineseTokenizer.dylib (21) <0886E908-A825-36AF-B94B-2361FD8BC2A1> /usr/lib/libChineseTokenizer.dylib
    0x7fffcdaef000 -     0x7fffcdb7fff7  libCoreStorage.dylib (540.30.1) <85C0A366-F901-36E3-854A-FE8A14A04A72> /usr/lib/libCoreStorage.dylib
    0x7fffcdb80000 -     0x7fffcdb81ff3  libDiagnosticMessagesClient.dylib (102) <84A04D24-0E60-3810-A8C0-90A65E2DF61A> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fffcdb82000 -     0x7fffcdd95fff  libFosl_dynamic.dylib (16.39) <E22A4243-D148-3C74-BA15-2D906A3D1F9E> /usr/lib/libFosl_dynamic.dylib
    0x7fffcddb1000 -     0x7fffcddb8fff  libMatch.1.dylib (27) <70D4BD2A-9383-37F2-B0D6-9B592D236601> /usr/lib/libMatch.1.dylib
    0x7fffcddb9000 -     0x7fffcddb9fff  libOpenScriptingUtil.dylib (172.1) <0F1BA407-97D1-36F6-882D-A355EAAD5E00> /usr/lib/libOpenScriptingUtil.dylib
    0x7fffcddba000 -     0x7fffcddbeffb  libScreenReader.dylib (477.40.7) <F7305560-6CF0-3000-8301-72E04BEAA693> /usr/lib/libScreenReader.dylib
    0x7fffcddbf000 -     0x7fffcddc0ffb  libSystem.B.dylib (1238.60.2) <58358A17-4318-3AD9-B18E-CC36502B9127> /usr/lib/libSystem.B.dylib
    0x7fffcde2c000 -     0x7fffcde57ff3  libarchive.2.dylib (41.70.2) <907D1FB1-9A65-33F5-AFC8-0B6E5AE9D83A> /usr/lib/libarchive.2.dylib
    0x7fffcde58000 -     0x7fffcded4fc7  libate.dylib (1.12.13) <D0767875-D02E-3377-84D8-5F174C27BEA9> /usr/lib/libate.dylib
    0x7fffcded8000 -     0x7fffcded8ff3  libauto.dylib (187) <34388D0B-C539-3C1B-9408-2BC152162E43> /usr/lib/libauto.dylib
    0x7fffcded9000 -     0x7fffcdee9ff3  libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
    0x7fffcdeea000 -     0x7fffcdef8ff7  libbz2.1.0.dylib (38) <ADFA329A-DCE7-356D-8F09-A3168DFC6610> /usr/lib/libbz2.1.0.dylib
    0x7fffcdef9000 -     0x7fffcdf4fff7  libc++.1.dylib (307.5) <0B43BB5D-E6EB-3464-8DE9-B41AC8ED9D1C> /usr/lib/libc++.1.dylib
    0x7fffcdf50000 -     0x7fffcdf79ff7  libc++abi.dylib (307.4) <BC271AD3-831B-362A-9DA7-E8C51F285FE4> /usr/lib/libc++abi.dylib
    0x7fffcdf7a000 -     0x7fffcdf8affb  libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
    0x7fffcdf8b000 -     0x7fffcdfa1fcf  libcompression.dylib (39) <F2726F95-F54E-3B21-BCB5-F7151DEFDC2F> /usr/lib/libcompression.dylib
    0x7fffcdfa2000 -     0x7fffcdfa2ff7  libcoretls.dylib (121.50.4) <64B1001E-10F6-3542-A3B2-C4B49F51817F> /usr/lib/libcoretls.dylib
    0x7fffcdfa3000 -     0x7fffcdfa4ff3  libcoretls_cfhelpers.dylib (121.50.4) <1A10303E-5EB0-3C7C-9165-021FCDFD934D> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fffce05e000 -     0x7fffce142ff7  libcrypto.0.9.8.dylib (64.50.7) <B34BC0FA-18ED-37C5-9D46-393803CADEBB> /usr/lib/libcrypto.0.9.8.dylib
    0x7fffce143000 -     0x7fffce2d3ff7  libcrypto.35.dylib (11.50.4) <11578EE7-5538-3543-AAE5-A9B3E91536B2> /usr/lib/libcrypto.35.dylib
    0x7fffce2d4000 -     0x7fffce2dffff  libcsfde.dylib (540.30.1) <0C2B183B-16D9-3D5F-962D-0A09C7063211> /usr/lib/libcsfde.dylib
    0x7fffce2e0000 -     0x7fffce333ff7  libcups.2.dylib (450.4) <2DA65D4A-1428-3F74-869A-E16246DE88C7> /usr/lib/libcups.2.dylib
    0x7fffce334000 -     0x7fffce386fff  libcurl.4.dylib (95.70.5) <ED932C5D-6FA2-364A-B562-3F67D1B40C71> /usr/lib/libcurl.4.dylib
    0x7fffce387000 -     0x7fffce38eff3  libdscsym.dylib (148.3) <1FF45ED3-4518-3431-BD66-88461B3395AC> /usr/lib/libdscsym.dylib
    0x7fffce3b0000 -     0x7fffce3b0fff  libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
    0x7fffce3be000 -     0x7fffce3bffff  libffi.dylib (18.1) <49D03682-E111-351C-8266-4519B3B82BE9> /usr/lib/libffi.dylib
    0x7fffce3c0000 -     0x7fffce3c5ff7  libheimdal-asn1.dylib (498.50.12) <1AC5AB99-2E62-3B9C-ADE4-AE65CFCDA471> /usr/lib/libheimdal-asn1.dylib
    0x7fffce3c6000 -     0x7fffce4b8ff7  libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
    0x7fffce4b9000 -     0x7fffce6deffb  libicucore.A.dylib (57168.0.1) <99D53A36-19F6-34F0-86AB-D8BD6C9BD3AD> /usr/lib/libicucore.A.dylib
    0x7fffce6e4000 -     0x7fffce6e5fff  liblangid.dylib (126) <2085E7A7-9A34-3735-87F4-F174EF8EABF0> /usr/lib/liblangid.dylib
    0x7fffce6e6000 -     0x7fffce6ffffb  liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
    0x7fffce700000 -     0x7fffce716ff7  libmarisa.dylib (5) <9030D214-5D0F-30CB-AC03-902C63909362> /usr/lib/libmarisa.dylib
    0x7fffce717000 -     0x7fffce9bfff7  libmecabra.dylib (744.8) <D429FCC9-42A4-38B3-8784-44024BC859EF> /usr/lib/libmecabra.dylib
    0x7fffce9f2000 -     0x7fffcea6cff3  libnetwork.dylib (856.60.1) <191E99F5-4723-3180-8013-02AF2F9AE4B8> /usr/lib/libnetwork.dylib
    0x7fffcea6d000 -     0x7fffcee3f047  libobjc.A.dylib (709.1) <70614861-0340-32E2-85ED-FE65759CDFFA> /usr/lib/libobjc.A.dylib
    0x7fffcee42000 -     0x7fffcee46fff  libpam.2.dylib (21.30.1) <71EB0D88-DE84-3C8D-A2C5-58AA282BC5BC> /usr/lib/libpam.2.dylib
    0x7fffcee47000 -     0x7fffcee78fff  libpcap.A.dylib (67.60.2) <B2D36AD8-D5C8-3875-AC81-4787A15E44C2> /usr/lib/libpcap.A.dylib
    0x7fffcee95000 -     0x7fffceeb1ffb  libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
    0x7fffceeb2000 -     0x7fffceeebfff  libsandbox.1.dylib (592.70.2) <9017CBC7-DC59-3668-8E86-738D141AF11C> /usr/lib/libsandbox.1.dylib
    0x7fffceeec000 -     0x7fffceefeffb  libsasl2.2.dylib (209) <32107C59-22C6-3049-B86E-9C2F85FF549B> /usr/lib/libsasl2.2.dylib
    0x7fffceeff000 -     0x7fffcef00ff3  libspindump.dylib (231.3) <1A34FC5F-2E60-3C81-9F4A-C1FF0FE39FE1> /usr/lib/libspindump.dylib
    0x7fffcef01000 -     0x7fffcf04fff7  libsqlite3.dylib (254.8) <1ECF7DF7-7A07-3B4B-A63B-F4EFF6BC7ACF> /usr/lib/libsqlite3.dylib
    0x7fffcf0ab000 -     0x7fffcf0feffb  libssl.35.dylib (11.50.4) <81C74F15-DE70-3B59-BB9D-9224646B49CC> /usr/lib/libssl.35.dylib
    0x7fffcf0ff000 -     0x7fffcf14ffff  libstdc++.6.dylib (104.1) <A980E08C-A511-3D19-9881-1D79B7CFF2BA> /usr/lib/libstdc++.6.dylib
    0x7fffcf161000 -     0x7fffcf193fff  libtidy.A.dylib (15.18.3) <7CAB2432-BBBB-34A0-B2BF-8419690C5BC7> /usr/lib/libtidy.A.dylib
    0x7fffcf194000 -     0x7fffcf197ff7  libutil.dylib (47.30.1) <88CC63B3-0EDF-306E-9AB5-D87EBE0F3F16> /usr/lib/libutil.dylib
    0x7fffcf198000 -     0x7fffcf1a5ff7  libxar.1.dylib (417.1) <78B14DC5-5256-3820-8259-117C5046BB9F> /usr/lib/libxar.1.dylib
    0x7fffcf1a6000 -     0x7fffcf295ff3  libxml2.2.dylib (30.24) <D84C6B99-6D4C-3651-8086-387D631CBA37> /usr/lib/libxml2.2.dylib
    0x7fffcf296000 -     0x7fffcf2bffff  libxslt.1.dylib (15.9.3) <F57ED43F-7912-3C99-8500-AB0EEE9FA178> /usr/lib/libxslt.1.dylib
    0x7fffcf2c0000 -     0x7fffcf2d1ff3  libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
    0x7fffcf2e0000 -     0x7fffcf2e4ff7  libcache.dylib (79) <093A4DAB-8385-3D47-A350-E20CB7CCF7BF> /usr/lib/system/libcache.dylib
    0x7fffcf2e5000 -     0x7fffcf2effff  libcommonCrypto.dylib (60092.50.5) <4C8A7FE1-C190-3015-A744-66F8220EAF6A> /usr/lib/system/libcommonCrypto.dylib
    0x7fffcf2f0000 -     0x7fffcf2f7fff  libcompiler_rt.dylib (62) <55D47421-772A-32AB-B529-1A46C2F43B4D> /usr/lib/system/libcompiler_rt.dylib
    0x7fffcf2f8000 -     0x7fffcf300fff  libcopyfile.dylib (138) <819BEA3C-DF11-3E3D-A1A1-5A51C5BF1961> /usr/lib/system/libcopyfile.dylib
    0x7fffcf301000 -     0x7fffcf384fdb  libcorecrypto.dylib (442.50.22) <E36CE660-855A-3166-8B9C-645C514B2C52> /usr/lib/system/libcorecrypto.dylib
    0x7fffcf385000 -     0x7fffcf3b6fff  libdispatch.dylib (703.50.38) <54B02414-5908-3EF0-B4D2-230B7FEB1CF7> /usr/lib/system/libdispatch.dylib
    0x7fffcf3b7000 -     0x7fffcf3bcffb  libdyld.dylib (434) <4A0E66C1-4596-38E6-898E-BD2660478D3D> /usr/lib/system/libdyld.dylib
    0x7fffcf3bd000 -     0x7fffcf3bdffb  libkeymgr.dylib (28) <7AA011A9-DC21-3488-BF73-3B5B14D1FDD6> /usr/lib/system/libkeymgr.dylib
    0x7fffcf3be000 -     0x7fffcf3cafff  libkxld.dylib (3789.73.50) <E2CCB6DE-F92B-33CE-81A8-DDC42E62B62D> /usr/lib/system/libkxld.dylib
    0x7fffcf3cb000 -     0x7fffcf3cbfff  liblaunch.dylib (972.70.5) <1F770D9B-3892-3BBB-9471-68DDDDB0F69A> /usr/lib/system/liblaunch.dylib
    0x7fffcf3cc000 -     0x7fffcf3d1ff3  libmacho.dylib (898) <17D5D855-F6C3-3B04-B680-E9BF02EF8AED> /usr/lib/system/libmacho.dylib
    0x7fffcf3d2000 -     0x7fffcf3d4ff3  libquarantine.dylib (85.50.1) <12448CC2-378E-35F3-BE33-9DC395A5B970> /usr/lib/system/libquarantine.dylib
    0x7fffcf3d5000 -     0x7fffcf3d6ffb  libremovefile.dylib (45) <38D4CB9C-10CD-30D3-8B7B-A515EC75FE85> /usr/lib/system/libremovefile.dylib
    0x7fffcf3d7000 -     0x7fffcf3efff7  libsystem_asl.dylib (349.50.5) <096E4228-3B7C-30A6-8B13-EC909A64499A> /usr/lib/system/libsystem_asl.dylib
    0x7fffcf3f0000 -     0x7fffcf3f0ff7  libsystem_blocks.dylib (67) <10DC5404-73AB-35B3-A277-A8AFECB476EB> /usr/lib/system/libsystem_blocks.dylib
    0x7fffcf3f1000 -     0x7fffcf47efef  libsystem_c.dylib (1158.50.2) <E5AE5244-7D0C-36AC-8BB6-C7AE7EA52A4B> /usr/lib/system/libsystem_c.dylib
    0x7fffcf47f000 -     0x7fffcf482ffb  libsystem_configuration.dylib (888.60.3) <094DBBF4-276A-3A11-8AF3-72743CC338E6> /usr/lib/system/libsystem_configuration.dylib
    0x7fffcf483000 -     0x7fffcf486fff  libsystem_coreservices.dylib (41.4) <7D26DE79-B424-3450-85E1-F7FAB32714AB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fffcf487000 -     0x7fffcf49ffff  libsystem_coretls.dylib (121.50.4) <EC6FCF07-DCFB-3A03-9CC9-6DD3709974C6> /usr/lib/system/libsystem_coretls.dylib
    0x7fffcf4a0000 -     0x7fffcf4a6fff  libsystem_dnssd.dylib (765.50.11) <B87F96B8-2694-3DB3-9923-1B4E2245C8BF> /usr/lib/system/libsystem_dnssd.dylib
    0x7fffcf4a7000 -     0x7fffcf4d0ff7  libsystem_info.dylib (503.50.4) <611DB84C-BF70-3F92-8702-B9F28A900920> /usr/lib/system/libsystem_info.dylib
    0x7fffcf4d1000 -     0x7fffcf4f3ff7  libsystem_kernel.dylib (3789.73.50) <932ACBB6-9962-3839-AEE3-D8AA6BF1DD02> /usr/lib/system/libsystem_kernel.dylib
    0x7fffcf4f4000 -     0x7fffcf53bfe7  libsystem_m.dylib (3121.6) <86D499B5-BBDC-3D3B-8A4E-97AE8E6672A4> /usr/lib/system/libsystem_m.dylib
    0x7fffcf53c000 -     0x7fffcf55aff7  libsystem_malloc.dylib (116.50.9) <82647590-DAEF-3499-8BF3-F1E3048861FE> /usr/lib/system/libsystem_malloc.dylib
    0x7fffcf55b000 -     0x7fffcf5b4ffb  libsystem_network.dylib (856.60.1) <369D0221-56CA-3C3E-9EDE-94B41CAE77B7> /usr/lib/system/libsystem_network.dylib
    0x7fffcf5b5000 -     0x7fffcf5beff3  libsystem_networkextension.dylib (563.60.2) <B021F2B3-8A75-3633-ABB0-FC012B8E9B0C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fffcf5bf000 -     0x7fffcf5c8ff3  libsystem_notify.dylib (165.20.1) <B8160190-A069-3B3A-BDF6-2AA408221FAE> /usr/lib/system/libsystem_notify.dylib
    0x7fffcf5c9000 -     0x7fffcf5d1fe7  libsystem_platform.dylib (126.50.8) <897462FD-B318-321B-A554-E61982630F7E> /usr/lib/system/libsystem_platform.dylib
    0x7fffcf5d2000 -     0x7fffcf5dcff7  libsystem_pthread.dylib (218.60.3) <B8FB5E20-3295-39E2-B5EB-B464D1D4B104> /usr/lib/system/libsystem_pthread.dylib
    0x7fffcf5dd000 -     0x7fffcf5e0ff7  libsystem_sandbox.dylib (592.70.2) <19320A42-2E3B-361B-BBDA-2F5F2E87B100> /usr/lib/system/libsystem_sandbox.dylib
    0x7fffcf5e1000 -     0x7fffcf5e2ff3  libsystem_secinit.dylib (24.50.4) <F78B847B-3565-3E4B-98A6-F7AD40392E2D> /usr/lib/system/libsystem_secinit.dylib
    0x7fffcf5e3000 -     0x7fffcf5eaffb  libsystem_symptoms.dylib (532.50.48) <1C822669-BF39-3639-A00B-B9170A63F342> /usr/lib/system/libsystem_symptoms.dylib
    0x7fffcf5eb000 -     0x7fffcf5feff7  libsystem_trace.dylib (518.70.1) <AC63A7FE-50D9-3A30-96E6-F6B7FF16E465> /usr/lib/system/libsystem_trace.dylib
    0x7fffcf5ff000 -     0x7fffcf604ffb  libunwind.dylib (35.3) <3D50D8A8-C460-334D-A519-2DA841102C6B> /usr/lib/system/libunwind.dylib
    0x7fffcf605000 -     0x7fffcf62eff7  libxpc.dylib (972.70.5) <255AA6A1-26AA-33F6-BC11-3DCE12A0BC0F> /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: 17265
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=447.1M resident=0K(0%) swapped_out_or_unallocated=447.1M(100%)
Writable regions: Total=1.4G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.4G(100%)
 
                                  VIRTUAL   REGION 
REGION TYPE                          SIZE    COUNT (non-coalesced) 
===========                       =======  ======= 
Accelerate framework                 512K        4 
Activity Tracing                     256K        2 
CG backing stores                   1708K        4 
CG image                              32K        5 
CoreAnimation                       3280K        9 
CoreImage                           1176K        3 
CoreUI image data                   1164K        9 
CoreUI image file                    232K        5 
Foundation                             4K        2 
Image IO                            2736K        6 
JS JIT generated code                  8K        3 
JS JIT generated code (reserved)     1.0G        2         reserved VM address space (unallocated)
Kernel Alloc Once                      8K        2 
MALLOC                             286.0M       53 
MALLOC guard page                     48K       11 
MALLOC_LARGE (reserved)             12.7M        3         reserved VM address space (unallocated)
Memory Tag 242                        12K        2 
Memory Tag 249                       408K        2 
SQLite page cache                    128K        3 
STACK GUARD                         56.1M       28 
Stack                               21.2M       28 
VM_ALLOCATE                          144K       22 
VM_ALLOCATE (reserved)                40K        3         reserved VM address space (unallocated)
WebKit Malloc                       16.1M       34 
__DATA                              54.9M      394 
__GLSLBUILTINS                      2588K        2 
__IMAGE                              528K        2 
__LINKEDIT                         130.2M       72 
__TEXT                             316.9M      378 
__UNICODE                            556K        2 
mapped file                         58.4M       33 
shared memory                       16.4M       20 
===========                       =======  ======= 
TOTAL                                2.0G     1116 
TOTAL, minus reserved VM space     971.5M     1116 

Model: MacBookPro11,2, BootROM 156.0.0.0.0, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (7.21.171.134.1a2)
Bluetooth: Version 5.0.5f7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0256F, 251 GB
USB Device: USB 3.0 Bus
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1

Max 8 crash report:

Process:               Max [1975]
Path:                  /Applications/Max.app/Contents/MacOS/Max
Identifier:            com.cycling74.Max
Version:               8.0.8 [5586c03] (8.0.8)
Code Type:             X86-64 (Native)
Parent Process:        ??? [1]
Responsible:           Max [1975]
User ID:               501

Date/Time:             2019-09-05 22:23:04.315 -0400
OS Version:            Mac OS X 10.12.6 (16G2128)
Report Version:        12
Anonymous UUID:        2881BD59-C0A2-518F-B449-34AC7E4D2129


Time Awake Since Boot: 160 seconds

System Integrity Protection: enabled

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

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

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

VM Regions Near 0x78:
--> 
    __TEXT                 000000010cb79000-000000010d7d5000 [ 12.4M] r-x/rwx SM=COW  /Applications/Max.app/Contents/MacOS/Max

Thread 0 Crashed:: CrBrowserMain  Dispatch queue: com.apple.main-thread
0   io.github.SuperCollider       	0x000000012122bcbd boost::asio::detail::scheduler::stop() + 13 (conditionally_enabled_mutex.hpp:53)
1   io.github.SuperCollider       	0x0000000121297295 UDPPort::stopAsioThread() + 21 (UDPPort.cpp:208)
2   io.github.SuperCollider       	0x0000000121299cb0 SCProcess::quit() + 32 (SCProcess.cpp:124)
3   io.github.SuperCollider       	0x0000000121283bb3 SuperColliderAU::~SuperColliderAU() + 51 (SuperColliderAU.cpp:46)
4   io.github.SuperCollider       	0x000000012129648e ComponentBase::AP_Close(void*) + 30 (ComponentBase.cpp:122)
5   com.apple.audio.toolbox.AudioToolbox	0x00007fff815371db APComponentInstance::DisposeInstance() + 21
6   com.apple.audio.toolbox.AudioToolbox	0x00007fff81680bab AudioComponentInstanceDispose + 429
7   com.cycling74.Max             	0x000000010d2705fa juce::AudioUnitPluginInstance::~AudioUnitPluginInstance() + 346
8   com.cycling74.Max             	0x000000010d26a22e juce::AudioUnitPluginInstance::~AudioUnitPluginInstance() + 14
9   com.cycling74.Max             	0x000000010d264abb juce::AudioUnitPluginFormat::findAllTypesForFile(juce::OwnedArray<juce::PluginDescription, juce::DummyCriticalSection>&, juce::String const&) + 603
10  com.cycling74.Max             	0x000000010ced2ab5 jpluginwrapper_new(symbol*, char*, short, object*, char*, long) + 517
11  com.cycling74.Max             	0x000000010ccac315 object_new_imp + 90
12  vst~                          	0x000000011f6cc78b vst_doplug + 1591
13  vst~                          	0x000000011f6c90e6 vst_new + 1937
14  com.cycling74.Max             	0x000000010cbb9f64 typedmess_fun + 374
15  com.cycling74.Max             	0x000000010ccac3af object_new_typed_flags + 135
16  com.cycling74.Max             	0x000000010cb9d1f3 newload_internal + 108
17  com.cycling74.Max             	0x000000010cb9d172 newload + 14
18  com.cycling74.Max             	0x000000010cbb9f64 typedmess_fun + 374
19  com.cycling74.Max             	0x000000010cbbaa2b aeval + 1038
20  com.cycling74.Max             	0x000000010cb8aefb atombuf_eval + 135
21  com.cycling74.Max             	0x000000010cd7fb64 jnewobj_new + 1813
22  com.cycling74.Max             	0x000000010cbb9f64 typedmess_fun + 374
23  com.cycling74.Max             	0x000000010ccac460 object_new_typed_flags + 312
24  com.cycling74.Max             	0x000000010cd96234 jpatcher_newobject + 625
25  com.cycling74.Max             	0x000000010ccad230 object_method_typedfun + 97
26  com.cycling74.Max             	0x000000010cdb21a8 jpatchercontroller_newobjects_imp + 191
27  com.cycling74.Max             	0x000000010cdb7500 jpatchercontroller_newobjects + 92
28  com.cycling74.Max             	0x000000010cdb33d4 jpatchercontroller_createobject + 121
29  com.cycling74.Max             	0x000000010cd50968 jdrag_createobject + 310
30  com.cycling74.Max             	0x000000010ccaa127 object_method_imp + 353
31  com.cycling74.Max             	0x000000010cd502cd jdrag_process_dropitem_cb(_dragitem*, _dp_iter*) + 217
32  com.cycling74.Max             	0x000000010cc46e4f linklist_funall_imp + 125
33  com.cycling74.Max             	0x000000010cd4fffc jdrag_process_drop + 832
34  com.cycling74.Max             	0x000000010cd9a7da jpatcher_dragdrop + 96
35  com.cycling74.Max             	0x000000010ccaa127 object_method_imp + 353
36  com.cycling74.Max             	0x000000010cd4e72b DragRecipient::itemDropped(juce::DragAndDropTarget::SourceDetails const&) + 295
37  com.cycling74.Max             	0x000000010cded7e2 PatcherComponent::itemDropped(juce::DragAndDropTarget::SourceDetails const&) + 346
38  com.cycling74.Max             	0x000000010d3e38ec juce::DragAndDropContainer::DragImageComponent::mouseUp(juce::MouseEvent const&) + 476
39  com.cycling74.Max             	0x000000010d3a32e9 juce::Component::MouseListenerList::sendMouseEvent(juce::Component&, juce::Component::BailOutChecker&, void (juce::MouseListener::*)(juce::MouseEvent const&), juce::MouseEvent const&) + 185
40  com.cycling74.Max             	0x000000010d3c9e9f juce::MouseInputSourceInternal::setButtons(juce::Point<float>, juce::Time, juce::ModifierKeys) + 2015
41  com.cycling74.Max             	0x000000010d3d4c4c juce::ComponentPeer::handleMouseEvent(juce::MouseInputSource::InputSourceType, juce::Point<float>, juce::ModifierKeys, float, float, long long, juce::PenDetails, int) + 860
42  com.cycling74.Max             	0x000000010d3d484a juce::NSViewComponentPeer::sendMouseEvent(NSEvent*) + 314
43  com.cycling74.Max             	0x000000010d3ce5d0 juce::JuceNSViewClass::mouseUp(objc_object*, objc_selector*, NSEvent*) + 128
44  com.apple.AppKit              	0x00007fff80b568de -[NSWindow(NSEventRouting) _reallySendEvent:isDelayedEvent:] + 1544
45  com.apple.AppKit              	0x00007fff80b55f0a -[NSWindow(NSEventRouting) sendEvent:] + 541
46  com.apple.AppKit              	0x00007fff809da681 -[NSApplication(NSEvent) sendEvent:] + 1145
47  com.cycling74.Max             	0x000000010cf1a18d -[MaxCefApplication sendEvent:] + 118
48  com.apple.AppKit              	0x00007fff80255427 -[NSApplication run] + 1002
49  com.cycling74.Max             	0x000000010cf1a0dd -[MaxCefApplication run] + 77
50  com.cycling74.chromium        	0x000000010fad50dc 0x10dc17000 + 32235740
51  com.cycling74.chromium        	0x000000010fad3dbe 0x10dc17000 + 32230846
52  com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
53  com.cycling74.chromium        	0x000000010f7f64af 0x10dc17000 + 29226159
54  com.cycling74.Max             	0x000000010cf230b2 MaxCefEventLoopHandler::runMessageLoop() + 18
55  com.cycling74.Max             	0x000000010d2c790b juce::JUCEApplicationBase::main(int, char const**) + 251
56  libdyld.dylib                 	0x00007fff97f70235 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 2:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 3:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 4:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 5:: Chrome_IOThread
0   libsystem_kernel.dylib        	0x00007fff9809fd96 kevent + 10
1   com.cycling74.chromium        	0x000000010fb5abf9 0x10dc17000 + 32783353
2   com.cycling74.chromium        	0x000000010fb586ed 0x10dc17000 + 32773869
3   com.cycling74.chromium        	0x000000010fad3c02 0x10dc17000 + 32230402
4   com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
5   com.cycling74.chromium        	0x000000010ee356c4 0x10dc17000 + 18998980
6   com.cycling74.chromium        	0x000000010fb2458b 0x10dc17000 + 32560523
7   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
8   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 6:: NetworkConfigWatcher
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fff8276c7e4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fff8276bc71 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation      	0x00007fff8276b4c4 CFRunLoopRunSpecific + 420
5   com.apple.Foundation          	0x00007fff84180182 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6   com.cycling74.chromium        	0x000000010fad4e8e 0x10dc17000 + 32235150
7   com.cycling74.chromium        	0x000000010fad3dbe 0x10dc17000 + 32230846
8   com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
9   com.cycling74.chromium        	0x000000010fb2458b 0x10dc17000 + 32560523
10  com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
11  libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
12  libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
13  libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 7:: DnsConfigService
0   libsystem_kernel.dylib        	0x00007fff9809fd96 kevent + 10
1   com.cycling74.chromium        	0x000000010fb5abf9 0x10dc17000 + 32783353
2   com.cycling74.chromium        	0x000000010fb586ed 0x10dc17000 + 32773869
3   com.cycling74.chromium        	0x000000010fad3c1b 0x10dc17000 + 32230427
4   com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
5   com.cycling74.chromium        	0x000000010fb2458b 0x10dc17000 + 32560523
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 8:: TaskSchedulerServiceThread
0   libsystem_kernel.dylib        	0x00007fff9809fd96 kevent + 10
1   com.cycling74.chromium        	0x000000010fb5abf9 0x10dc17000 + 32783353
2   com.cycling74.chromium        	0x000000010fb586ed 0x10dc17000 + 32773869
3   com.cycling74.chromium        	0x000000010fad3c1b 0x10dc17000 + 32230427
4   com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
5   com.cycling74.chromium        	0x000000010fb2458b 0x10dc17000 + 32560523
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 9:: TaskSchedulerBackgroundWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb0fe79 0x10dc17000 + 32476793
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 10:: TaskSchedulerBackgroundBlockingWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb1007d 0x10dc17000 + 32477309
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 11:: TaskSchedulerForegroundWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb0fe79 0x10dc17000 + 32476793
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 12:: TaskSchedulerForegroundBlockingWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb1007d 0x10dc17000 + 32477309
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 13:: TaskSchedulerForegroundBlockingWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb1007d 0x10dc17000 + 32477309
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 14:: TaskSchedulerForegroundBlockingWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb0fe79 0x10dc17000 + 32476793
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 15:: TaskSchedulerSingleThreadSharedBackgroundBlocking0
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb086bf 0x10dc17000 + 32446143
4   com.cycling74.chromium        	0x000000010fb0fa1a 0x10dc17000 + 32475674
5   com.cycling74.chromium        	0x000000010fb0fe79 0x10dc17000 + 32476793
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 16:: CompositorTileWorker1/40451
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   com.cycling74.chromium        	0x000000010fb07cf8 0x10dc17000 + 32443640
3   com.cycling74.chromium        	0x0000000110626818 0x10dc17000 + 44103704
4   com.cycling74.chromium        	0x000000010fb23a2b 0x10dc17000 + 32557611
5   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
6   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
7   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
8   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 17:: AudioThread
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb086bf 0x10dc17000 + 32446143
4   com.cycling74.chromium        	0x000000010fad332d 0x10dc17000 + 32228141
5   com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
6   com.cycling74.chromium        	0x000000010fb2458b 0x10dc17000 + 32560523
7   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
8   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
9   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
10  libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 18:: TaskSchedulerSingleThreadForegroundBlocking1
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb086bf 0x10dc17000 + 32446143
4   com.cycling74.chromium        	0x000000010fb0fa1a 0x10dc17000 + 32475674
5   com.cycling74.chromium        	0x000000010fb1007d 0x10dc17000 + 32477309
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 19:: TaskSchedulerSingleThreadSharedForegroundBlocking2
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb086bf 0x10dc17000 + 32446143
4   com.cycling74.chromium        	0x000000010fb0fa1a 0x10dc17000 + 32475674
5   com.cycling74.chromium        	0x000000010fb0fe79 0x10dc17000 + 32476793
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 20:: TaskSchedulerBackgroundBlockingWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb1007d 0x10dc17000 + 32477309
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 21:: TaskSchedulerBackgroundBlockingWorker
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.cycling74.chromium        	0x000000010fb08795 0x10dc17000 + 32446357
3   com.cycling74.chromium        	0x000000010fb08871 0x10dc17000 + 32446577
4   com.cycling74.chromium        	0x000000010fb0fa28 0x10dc17000 + 32475688
5   com.cycling74.chromium        	0x000000010fb0fe79 0x10dc17000 + 32476793
6   com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
7   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
8   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
9   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 22:: NetworkConfigWatcher
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fff8276c7e4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fff8276bc71 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation      	0x00007fff8276b4c4 CFRunLoopRunSpecific + 420
5   com.apple.Foundation          	0x00007fff84180182 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 277
6   com.cycling74.chromium        	0x000000010fad4e8e 0x10dc17000 + 32235150
7   com.cycling74.chromium        	0x000000010fad3dbe 0x10dc17000 + 32230846
8   com.cycling74.chromium        	0x000000010faf2dc5 0x10dc17000 + 32357829
9   com.cycling74.chromium        	0x000000010fb2458b 0x10dc17000 + 32560523
10  com.cycling74.chromium        	0x000000010fb22517 0x10dc17000 + 32552215
11  libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
12  libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
13  libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 23:
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.apple.audio.midi.CoreMIDI 	0x0000000114fc19c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 107
3   com.apple.audio.midi.CoreMIDI 	0x0000000114fd7ba9 MIDIProcess::RunMIDIInThread() + 105
4   com.apple.audio.midi.CoreMIDI 	0x0000000114fe4a9a XThread::RunHelper(void*) + 10
5   com.apple.audio.midi.CoreMIDI 	0x0000000114fe8053 CAPThread::Entry(CAPThread*) + 85
6   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
7   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
8   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 24:
0   libsystem_kernel.dylib        	0x00007fff980a019e poll + 10
1   synophrys                     	0x000000011c127e05 master_thread + 469
2   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 25:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 26:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 27:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 28:
0   libsystem_kernel.dylib        	0x00007fff980a019e poll + 10
1   synophrys                     	0x000000011c127e05 master_thread + 469
2   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 29:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 30:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 31:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 32:
0   libsystem_kernel.dylib        	0x00007fff980a019e poll + 10
1   synophrys                     	0x000000011c127e05 master_thread + 469
2   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
3   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
4   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 33:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 34:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 35:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   synophrys                     	0x000000011c12847b worker_thread + 400
3   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
4   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
5   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 36:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a833 _pthread_cond_wait + 769
2   com.cycling74.Max             	0x000000010cc56f05 systhread_cond_timedwait + 81
3   com.cycling74.Max             	0x000000010cc58d0d mactimer_isr + 170
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 37:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff9818948e _pthread_wqthread + 1023
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 38:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 39:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 40:: com.apple.NSEventThread
0   libsystem_kernel.dylib        	0x00007fff9809734a mach_msg_trap + 10
1   libsystem_kernel.dylib        	0x00007fff98096797 mach_msg + 55
2   com.apple.CoreFoundation      	0x00007fff8276c7e4 __CFRunLoopServiceMachPort + 212
3   com.apple.CoreFoundation      	0x00007fff8276bc71 __CFRunLoopRun + 1361
4   com.apple.CoreFoundation      	0x00007fff8276b4c4 CFRunLoopRunSpecific + 420
5   com.apple.AppKit              	0x00007fff803adf02 _NSEventThread + 205
6   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
7   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
8   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 41:
0   libsystem_kernel.dylib        	0x00007fff9809ef46 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff98025b72 nanosleep + 199
2   libsystem_c.dylib             	0x00007fff98025a66 usleep + 54
3   com.cycling74.Max             	0x000000010ce81262 backgroundtask_threadproc + 67
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 42:
0   libsystem_kernel.dylib        	0x00007fff9809ef46 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff98025b72 nanosleep + 199
2   libsystem_c.dylib             	0x00007fff98025a66 usleep + 54
3   com.cycling74.Max             	0x000000010ce81262 backgroundtask_threadproc + 67
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 43:
0   libsystem_kernel.dylib        	0x00007fff9809ef46 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff98025b72 nanosleep + 199
2   libsystem_c.dylib             	0x00007fff98025a66 usleep + 54
3   com.cycling74.Max             	0x000000010ce81262 backgroundtask_threadproc + 67
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 44:
0   libsystem_kernel.dylib        	0x00007fff9809ef46 __semwait_signal + 10
1   libsystem_c.dylib             	0x00007fff98025b72 nanosleep + 199
2   libsystem_c.dylib             	0x00007fff98025a66 usleep + 54
3   com.cycling74.Max             	0x000000010ce81262 backgroundtask_threadproc + 67
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 45:
0   libsystem_kernel.dylib        	0x00007fff9809e0c2 __accept + 10
1   com.cycling74.Max             	0x000000010d2b27a3 juce::StreamingSocket::waitForNextConnection() const + 99
2   com.cycling74.Max             	0x000000010ce764f7 tcpconnection_listenthread(_tcpconnection*) + 54
3   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
4   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
5   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
6   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 46:: JUCE Timer
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   com.cycling74.Max             	0x000000010d284bee juce::WaitableEvent::wait(int) const + 190
3   com.cycling74.Max             	0x000000010d2c9bc0 juce::Timer::TimerThread::run() + 592
4   com.cycling74.Max             	0x000000010d29194f threadEntryProc + 591
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 47:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   com.cycling74.Max             	0x000000010cc56e96 systhread_cond_wait + 9
3   maxurl                        	0x000000011bd2302b maxurl_perform_request + 354
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 48:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   com.cycling74.Max             	0x000000010cc56e96 systhread_cond_wait + 9
3   maxurl                        	0x000000011bd2302b maxurl_perform_request + 354
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 49:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 50:
0   libsystem_kernel.dylib        	0x00007fff9809ebf2 __psynch_cvwait + 10
1   libsystem_pthread.dylib       	0x00007fff9818a7fa _pthread_cond_wait + 712
2   com.cycling74.Max             	0x000000010cc56e96 systhread_cond_wait + 9
3   maxurl                        	0x000000011bd2302b maxurl_perform_request + 354
4   com.cycling74.Max             	0x000000010cc569bc systhread_threadproc + 64
5   libsystem_pthread.dylib       	0x00007fff9818993b _pthread_body + 180
6   libsystem_pthread.dylib       	0x00007fff98189887 _pthread_start + 286
7   libsystem_pthread.dylib       	0x00007fff9818908d thread_start + 13

Thread 51:
0   libsystem_kernel.dylib        	0x00007fff9809f44e __workq_kernreturn + 10
1   libsystem_pthread.dylib       	0x00007fff98189621 _pthread_wqthread + 1426
2   libsystem_pthread.dylib       	0x00007fff9818907d start_wqthread + 13

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x00000001212ae260  rbx: 0x0000000000000000  rcx: 0x00007fff9d320a20  rdx: 0x0000000000000000
  rdi: 0x0000000000000000  rsi: 0x0000000000000001  rbp: 0x00007fff530822c0  rsp: 0x00007fff530822a0
   r8: 0x00007fff9d3216c8   r9: 0x0000000000002cb5  r10: 0x000000000000000e  r11: 0x00007fff816809fe
  r12: 0xc4da1cd7ed32002f  r13: 0x000000010d718ac8  r14: 0x00007f94b459acb0  r15: 0x00007fff530825c8
  rip: 0x000000012122bcbd  rfl: 0x0000000000010206  cr2: 0x0000000000000078
  
Logical CPU:     0
Error Code:      0x00000004
Trap Number:     14


Binary Images:
       0x10cb79000 -        0x10d7d4c37 +com.cycling74.Max (8.0.8 [5586c03] - 8.0.8) <34CADD01-04B5-3FD6-AC68-F2A85ABE0F30> /Applications/Max.app/Contents/MacOS/Max
       0x10dc17000 -        0x114520fc7 +com.cycling74.chromium (0) <6C3877D8-ECC4-3228-B144-999F73318F90> /Applications/Max.app/Contents/x64/Frameworks/Chromium Embedded Framework.framework/Chromium Embedded Framework
       0x114f0f000 -        0x114f6bff7  com.apple.audio.CoreAudioKit (1.6.6 - 1.6.6) <DD6F8D1F-69EE-335A-8654-72B24E25423D> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
       0x114fb4000 -        0x114ff2ff7  com.apple.audio.midi.CoreMIDI (1.10 - 88) <5E2D1F53-B466-312E-AEA7-117B68C9A7F0> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
       0x11501b000 -        0x11501dff7  com.apple.ForceFeedback (1.0.6 - 1.0.6) <313F7E57-FA8B-3AEC-BE47-C2C7B4F6FFAB> /System/Library/Frameworks/ForceFeedback.framework/Versions/A/ForceFeedback
       0x11502a000 -        0x115043fff  libexpat.1.dylib (15.1) <588CA992-60BB-363B-BEE7-3CC0A26C1AFA> /usr/lib/libexpat.1.dylib
       0x115054000 -        0x115180ff7  com.apple.AudioVideoBridging (506.1 - 506.1) <ABFF7D29-9D86-37CD-9F05-2D5388ECDA09> /System/Library/Frameworks/AudioVideoBridging.framework/Versions/A/AudioVideoBridging
       0x115236000 -        0x11524aff3  com.apple.AudioServerApplication (1.0 - 200.9) <4977039B-FC27-3D6E-9B3E-81B3071ADBB3> /System/Library/PrivateFrameworks/AudioServerApplication.framework/Versions/A/AudioServerApplication
       0x115261000 -        0x115270fff  com.apple.TimeSync (1.0 - 503.1) <D06817FE-7DEC-3F8C-9484-2EA4CFBC0889> /System/Library/PrivateFrameworks/TimeSync.framework/Versions/A/TimeSync
       0x115838000 -        0x1158a2ff7 +com.cycling74.MaxAPI (1.0 - 1.0) <E36A75DD-C80A-3499-B5C1-E648D63B9F74> /Applications/Max.app/Contents/Frameworks/MaxAPI.framework/MaxAPI
       0x115986000 -        0x115987fff +fseventwatcher (8.0.8 [5586c03] - 8.0.8) <CCF564DC-34BA-3326-BE8A-8E91ECB7ACE4> /Applications/Max.app/Contents/Resources/C74/extensions/max/fseventwatcher.mxo/Contents/MacOS/fseventwatcher
       0x1166e0000 -        0x11671ddc7  dyld (434) <33DB4E37-BC29-37A4-92AB-30328E66A8FA> /usr/lib/dyld
       0x11a08d000 -        0x11a091fff  com.apple.audio.AppleHDAHALPlugIn (279.48 - 279.48) <ECA84145-2AC4-347D-BBC0-933AAAC15356> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
       0x11a2a1000 -        0x11a2a2ff7 +augraph (8.0.8 [5586c03] - 8.0.8) <FF7D99CD-2C9F-3C31-86FF-CC30DCA3F054> /Applications/Max.app/Contents/Resources/C74/externals/mididrivers/augraph.mxo/Contents/MacOS/augraph
       0x11a2a6000 -        0x11a2a9ff3 +coremidi (8.0.8 [5586c03] - 8.0.8) <18EA490D-7F89-3A51-B5E3-12422DA1CB24> /Applications/Max.app/Contents/Resources/C74/externals/mididrivers/coremidi.mxo/Contents/MacOS/coremidi
       0x11a2ae000 -        0x11a2aefff +midi_adrewire (8.0.8 [5586c03] - 8.0.8) <F92A9C58-D19F-3673-B3A5-6492B89333CB> /Applications/Max.app/Contents/Resources/C74/externals/mididrivers/midi_adrewire.mxo/Contents/MacOS/midi_adrewire
       0x11a2b2000 -        0x11a357fe7 +com.cycling74.MaxAudioAPI (1.0) <429C0E05-E393-3A7C-845F-6DEEE560D48E> /Applications/Max.app/Contents/Frameworks/MaxAudioAPI.framework/Versions/A/MaxAudioAPI
       0x11a3b1000 -        0x11a3b3ff7 +ad_coreaudio (8.0.8 [5586c03] - 8.0.8) <370D8BB0-EB89-3C15-BF0B-24AB51821CDD> /Applications/Max.app/Contents/Resources/C74/externals/ad/ad_coreaudio.mxo/Contents/MacOS/ad_coreaudio
       0x11a3b7000 -        0x11a3b8fff +ad_nonreal (8.0.8 [5586c03] - 8.0.8) <69C06487-DC3A-31C1-AC03-FB0E9F6B61AE> /Applications/Max.app/Contents/Resources/C74/externals/ad/ad_nonreal.mxo/Contents/MacOS/ad_nonreal
       0x11a3bb000 -        0x11a3cfff7 +ad_portaudio (8.0.8 [5586c03] - 8.0.8) <8804DB5B-983D-3C0E-BC49-96E2EDA73AC3> /Applications/Max.app/Contents/Resources/C74/externals/ad/ad_portaudio.mxo/Contents/MacOS/ad_portaudio
       0x11a3d7000 -        0x11a3ddff7 +ad_rewire (8.0.8 [5586c03] - 8.0.8) <842F4D2A-A387-3465-93BB-1B172D4BE995> /Applications/Max.app/Contents/Resources/C74/externals/ad/ad_rewire.mxo/Contents/MacOS/ad_rewire
       0x11a3e5000 -        0x11a50aff3 +gl2 (8.0.8 [5586c03] - 8.0.8) <2A068A43-C8C6-3252-84BC-1F51C6CC29AF> /Applications/Max.app/Contents/Resources/C74/extensions/jitter/gl2.mxo/Contents/MacOS/gl2
       0x11a584000 -        0x11a6a2fff +com.cycling74.JitterAPI (1.7.0 - 1.7.0) <B2E1C68B-3AF5-32E5-89B2-17A7BE7532FA> /Applications/Max.app/Contents/Frameworks/JitterAPI.framework/Versions/A/JitterAPI
       0x11a778000 -        0x11a7d4ff7 +com.cycling74.MaxLua (1.0) <D23F54AA-955A-38D8-9D14-27B1D4BFCCA8> /Applications/Max.app/Contents/Frameworks/MaxLua.framework/Versions/A/MaxLua
       0x11a7fb000 -        0x11a883fff +sketch (8.0.8 [5586c03] - 8.0.8) <AD520353-26D5-3F38-B7FF-1359CB812C69> /Applications/Max.app/Contents/Resources/C74/extensions/jitter/sketch.mxo/Contents/MacOS/sketch
       0x11a8f9000 -        0x11a92efff +live.guilib (8.0.8 [5586c03] - 8.0.8) <02E91175-F0FD-3D0F-AFDD-7C8A8B5E247A> /Applications/Max.app/Contents/Resources/C74/extensions/m4l/live.guilib.mxo/Contents/MacOS/live.guilib
       0x11a94b000 -        0x11a951fff +autohelp (8.0.8 [5586c03] - 8.0.8) <3C1C531A-430E-3630-9C3D-B0BBFF3CFBDF> /Applications/Max.app/Contents/Resources/C74/extensions/max/autohelp.mxo/Contents/MacOS/autohelp
       0x11a957000 -        0x11b8d4f77 +clang (8.0.8 [5586c03] - 8.0.8) <97B3968C-92DE-3EBF-829E-ED667FCFA094> /Applications/Max.app/Contents/Resources/C74/extensions/max/clang.mxo/Contents/MacOS/clang
       0x11bbc6000 -        0x11bbc8fff +debugwindow (8.0.8 [5586c03] - 8.0.8) <1E2BBC29-2B86-3136-AC95-9C0D41531727> /Applications/Max.app/Contents/Resources/C74/extensions/max/debugwindow.mxo/Contents/MacOS/debugwindow
       0x11bbcc000 -        0x11bcb2ffb +genpatcher (8.0.8 [5586c03] - 8.0.8) <8C1E0E4B-BC3F-3269-A3F5-2894C46E4703> /Applications/Max.app/Contents/Resources/C74/extensions/max/genpatcher.mxo/Contents/MacOS/genpatcher
       0x11bd20000 -        0x11bd41ff3 +maxurl (8.0.8 [5586c03] - 8.0.8) <6EE43B39-0591-3E3F-A912-C9BBBAF0B8A1> /Applications/Max.app/Contents/Resources/C74/extensions/max/maxurl.mxo/Contents/MacOS/maxurl
       0x11bd56000 -        0x11bf66fff +maxxslt (8.0.8 [5586c03] - 8.0.8) <75BB61CE-8FBB-3EFB-B9A7-E42F719ADB08> /Applications/Max.app/Contents/Resources/C74/extensions/max/maxxslt.mxo/Contents/MacOS/maxxslt
       0x11bff4000 -        0x11bffafff +maxzlib (8.0.8 [5586c03] - 8.0.8) <A64C57AD-0CBE-36EE-81FF-2C13DD03BFF4> /Applications/Max.app/Contents/Resources/C74/extensions/max/maxzlib.mxo/Contents/MacOS/maxzlib
       0x11c001000 -        0x11c003fff +objectview (8.0.8 [5586c03] - 8.0.8) <2A56FF22-0345-3349-9D46-F98FAC8E6052> /Applications/Max.app/Contents/Resources/C74/extensions/max/objectview.mxo/Contents/MacOS/objectview
       0x11c008000 -        0x11c00dfff +palblocks (8.0.8 [5586c03] - 8.0.8) <F5D3A06C-780B-36AD-9782-284141C25713> /Applications/Max.app/Contents/Resources/C74/extensions/max/palblocks.mxo/Contents/MacOS/palblocks
       0x11c014000 -        0x11c01cffb +pianoroll (8.0.8 [5586c03] - 8.0.8) <3820580A-7541-3FC8-B50E-F97970AE03A9> /Applications/Max.app/Contents/Resources/C74/extensions/max/pianoroll.mxo/Contents/MacOS/pianoroll
       0x11c023000 -        0x11c023fff +qtimage (8.0.8 [5586c03] - 8.0.8) <10E65FBF-0A08-35D9-962F-969BD235828F> /Applications/Max.app/Contents/Resources/C74/extensions/max/qtimage.mxo/Contents/MacOS/qtimage
       0x11c026000 -        0x11c02bffb +querylib (8.0.8 [5586c03] - 8.0.8) <538010A4-F2C4-3C63-943A-7DE3C8D6008D> /Applications/Max.app/Contents/Resources/C74/extensions/max/querylib.mxo/Contents/MacOS/querylib
       0x11c035000 -        0x11c03aff3 +setplugpath (8.0.8 [5586c03] - 8.0.8) <07D769DF-1FED-362C-B67D-A360E71A4123> /Applications/Max.app/Contents/Resources/C74/extensions/max/setplugpath.mxo/Contents/MacOS/setplugpath
       0x11c041000 -        0x11c0d6ffb +sqlite (8.0.8 [5586c03] - 8.0.8) <8B868948-C4DF-39F0-9038-EEE33D527659> /Applications/Max.app/Contents/Resources/C74/extensions/max/sqlite.mxo/Contents/MacOS/sqlite
       0x11c113000 -        0x11c139ff7 +synophrys (8.0.8 [5586c03] - 8.0.8) <99AE236D-7F4B-3A88-B4DB-C22CE85684EB> /Applications/Max.app/Contents/Resources/C74/extensions/max/synophrys.mxo/Contents/MacOS/synophrys
       0x11c151000 -        0x11c179ff7 +yaml (8.0.8 [5586c03] - 8.0.8) <4D3BD4E4-2D51-3A59-9337-9F76CB9D9696> /Applications/Max.app/Contents/Resources/C74/extensions/max/yaml.mxo/Contents/MacOS/yaml
       0x11c1ae000 -        0x11c1b1ffb +zoomer (8.0.8 [5586c03] - 8.0.8) <FA13CEE6-AFD1-38EF-9726-F2945484C737> /Applications/Max.app/Contents/Resources/C74/extensions/max/zoomer.mxo/Contents/MacOS/zoomer
       0x11c1b5000 -        0x11c1beff7 +max~ (8.0.8 [5586c03] - 8.0.8) <C5C47EC2-0A4E-3A14-9020-52F4A1120710> /Applications/Max.app/Contents/Resources/C74/extensions/msp/max~.mxo/Contents/MacOS/max~
       0x11c1c9000 -        0x11c1cffff +polybuffer (8.0.8 [5586c03] - 8.0.8) <3AC8FEE8-8623-3B5C-9D9A-4DA04C5EDC0B> /Applications/Max.app/Contents/Resources/C74/extensions/msp/polybuffer.mxo/Contents/MacOS/polybuffer
       0x11c1d8000 -        0x11c1d9fff +probe.history~ (8.0.8 [5586c03] - 8.0.8) <BEACA424-6ABB-33C3-81C0-28D68B568EDC> /Applications/Max.app/Contents/Resources/C74/extensions/msp/probe.history~.mxo/Contents/MacOS/probe.history~
       0x11c1dd000 -        0x11c1e1fff  libFontRegistryUI.dylib (196.8) <8301E246-B801-395B-BDB2-C15658A8919B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resources/libFontRegistryUI.dylib
       0x11c45c000 -        0x11c45dffb +probe.meter~ (8.0.8 [5586c03] - 8.0.8) <CC0F499E-8EF4-322E-BDF6-4DE23818DD57> /Applications/Max.app/Contents/Resources/C74/extensions/msp/probe.meter~.mxo/Contents/MacOS/probe.meter~
       0x11c461000 -        0x11c463fff +probe.scope~ (8.0.8 [5586c03] - 8.0.8) <E8A6931A-8102-3818-8FD0-E5E6106C84FD> /Applications/Max.app/Contents/Resources/C74/extensions/msp/probe.scope~.mxo/Contents/MacOS/probe.scope~
       0x11c489000 -        0x11c48bfff +com.acme.mxj-safe (.. - ..) <2FE91571-9112-3E0E-B8C6-540701965179> /Applications/Max.app/Contents/Resources/C74/packages/max-mxj/extensions/mxj_safe.mxo/Contents/MacOS/mxj_safe
       0x11c491000 -        0x11c4a4fff +com.cycling74.sysaudio (8.0.0 [1974] - 8.0.0) <A3C0B6E5-414A-3CD9-9D7C-32C18774B06D> /Applications/Max.app/Contents/Resources/C74/packages/VIDDLL/extensions/sysaudio.mxo/Contents/MacOS/sysaudio
       0x11d723000 -        0x11d8c9fff  GLEngine (14.0.16) <C21BEA53-21B2-3EBB-84C6-CFCAB4D6012A> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
       0x11d908000 -        0x11de63ff7  com.apple.driver.AppleIntelHD5000GraphicsGLDriver (10.25.24 - 10.2.5) <39010A86-1664-31B4-B574-D6E5874B4F59> /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsGLDriver
       0x11e076000 -        0x11e0a0fff  GLRendererFloat (14.0.16) <8CB95D3F-453E-3FD1-B9AE-E72E00A9562F> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
       0x11e0aa000 -        0x11e122ff7  com.apple.driver.AppleIntelHD5000GraphicsMTLDriver (10.25.24 - 10.2.5) <CECBB447-44E9-38FC-AE01-114BC3478FDE> /System/Library/Extensions/AppleIntelHD5000GraphicsMTLDriver.bundle/Contents/MacOS/AppleIntelHD5000GraphicsMTLDriver
       0x11f642000 -        0x11f647fff +comment (8.0.8 [5586c03] - 8.0.8) <E2E67025-D356-3DF2-8EB3-04F2B8008FA9> /Applications/Max.app/Contents/Resources/C74/externals/max/comment.mxo/Contents/MacOS/comment
       0x11f6c7000 -        0x11f6d8ff3 +vst~ (8.0.8 [5586c03] - 8.0.8) <09FA3132-B1F4-3202-A7F1-0564E5562C01> /Applications/Max.app/Contents/Resources/C74/externals/msp/vst~.mxo/Contents/MacOS/vst~
       0x11f6e7000 -        0x11f6e7fff +libboost_system.dylib (0) <822F03E2-8838-34FA-9CA8-EA856CEC30F1> /usr/local/opt/boost/lib/libboost_system.dylib
       0x11f6e9000 -        0x11f6ecfff +libogg.0.dylib (0) <DF7E4F03-BEC0-34BE-AF7D-D1B8A48AC7E3> /usr/local/opt/libogg/lib/libogg.0.dylib
       0x11fb97000 -        0x11fba6ff7 +libboost_filesystem.dylib (0) <C29A14E1-ACF0-3F2F-B059-2A76A028C38F> /usr/local/opt/boost/lib/libboost_filesystem.dylib
       0x121219000 -        0x1212abfff +io.github.SuperCollider (1.0 - 1.0) <5F518052-4EC3-34F4-ABCF-6D18979CC75F> /Users/USER/Library/Audio/Plug-Ins/Components/SuperColliderAU.component/Contents/MacOS/SuperColliderAU
       0x121371000 -        0x1213caff7 +libsndfile.1.dylib (0) <629CE87E-B6FB-34A3-90B6-84739FFFC173> /usr/local/opt/libsndfile/lib/libsndfile.1.dylib
       0x1213dc000 -        0x121400fff +libFLAC.8.dylib (0) <AE903E03-23A6-3395-B6B2-C7A8D6F60EEF> /usr/local/opt/flac/lib/libFLAC.8.dylib
       0x12140d000 -        0x12142ffff +libvorbis.0.dylib (0) <A6B60BE2-BF92-3F11-AE4D-2E2EFF0CB96C> /usr/local/opt/libvorbis/lib/libvorbis.0.dylib
       0x121434000 -        0x1214abfff +libvorbisenc.2.dylib (0) <E0D1BB5E-85E3-3CBD-A785-728B9892D793> /usr/local/opt/libvorbis/lib/libvorbisenc.2.dylib
    0x7fff7d393000 -     0x7fff7d6d8ff7  com.apple.RawCamera.bundle (7.04 - 914) <86A67D11-9791-3CE6-9FF5-3387C0AB925B> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff7ef08000 -     0x7fff7ef0cffb  com.apple.agl (3.3.1 - AGL-3.3.1) <F44A14D8-1999-38BD-9B60-5E28B314C458> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x7fff7ef0d000 -     0x7fff7f0cefff  com.apple.avfoundation (2.0 - 1187.36) <2F390EAD-07BB-3788-9E73-13104C2E04CD> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff7f0cf000 -     0x7fff7f171ff7  com.apple.audio.AVFAudio (1.0 - ???) <7997D588-B542-3EBB-B822-D719C1114BB4> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Frameworks/AVFAudio.framework/Versions/A/AVFAudio
    0x7fff7f23c000 -     0x7fff7f23cfff  com.apple.Accelerate (1.11 - Accelerate 1.11) <916E360F-323C-3AE1-AB3D-D1F3B284AEE9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff7f23d000 -     0x7fff7f254ffb  libCGInterfaces.dylib (331.5) <17109679-A284-3C72-AA60-DBA815D3062B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
    0x7fff7f255000 -     0x7fff7f76efeb  com.apple.vImage (8.1 - ???) <B58A7937-BEE2-38FE-87F4-5D5F40D31DC9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff7f76f000 -     0x7fff7f8e0ff3  libBLAS.dylib (1185.50.4) <4087FFE0-627E-3623-96B4-F0A9A1991E09> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff7f8e1000 -     0x7fff7f8f5ffb  libBNNS.dylib (15) <254698C7-7D36-3FFF-864E-ADEEEE543076> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff7f8f6000 -     0x7fff7fcecfef  libLAPACK.dylib (1185.50.4) <C35FFB2F-A0E6-3903-8A3C-113A74BCBCA2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff7fced000 -     0x7fff7fd03fff  libLinearAlgebra.dylib (1185.50.4) <345CAACF-7263-36EF-B69B-793EA8B390AF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff7fd04000 -     0x7fff7fd0afff  libQuadrature.dylib (3) <EF56C8E6-DE22-3C69-B543-A8648F335FDD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff7fd0b000 -     0x7fff7fd1fff7  libSparseBLAS.dylib (1185.50.4) <67BA432E-FB59-3C78-A8BE-ED4274CBC359> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff7fd20000 -     0x7fff7fea7fe7  libvDSP.dylib (600.60.1) <4155F45B-41CD-3782-AE8F-7AE740FD83C3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff7fea8000 -     0x7fff7ff5afff  libvMisc.dylib (600.60.1) <E18365D7-DCC4-3304-A8D1-395E656D7B99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff7ff5b000 -     0x7fff7ff5bfff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) <7C5733E7-0568-3E7D-AF61-160F19FED544> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff7ff5c000 -     0x7fff7ff99ffb  com.apple.Accounts (113 - 113) <8550BD08-7D05-3AC4-A0CC-B67ECB2DE950> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x7fff7ff9a000 -     0x7fff80219ff7  com.apple.AddressBook.framework (10.0 - 1756.20) <E512B69B-8DBE-3085-95BE-750B8EFC97FD> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8021a000 -     0x7fff80ff3ff3  com.apple.AppKit (6.9 - 1504.83.101) <C7A0F7F4-F4F5-3735-8A6B-EE01CF527E80> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff81005000 -     0x7fff81005fff  com.apple.ApplicationServices (48 - 48) <36EB2785-BBD2-33F0-BB13-8C804D47110A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff81006000 -     0x7fff81074ff7  com.apple.ApplicationServices.ATS (377 - 422.4) <78B556FF-28E6-3147-AE0D-8E0EC45EEE77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff8110e000 -     0x7fff8123dfff  libFontParser.dylib (194.15) <FF329191-6339-363E-9D95-FFE9D55E7F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff8123e000 -     0x7fff81288ff7  libFontRegistry.dylib (196.8) <5E5F95FD-F69B-3F1A-9592-C0AB8F5FF57C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff812e6000 -     0x7fff81319fff  libTrueTypeScaler.dylib (194.15) <513743F9-500B-37C5-A925-A82E7182F3E9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff81386000 -     0x7fff81430ff7  com.apple.ColorSync (4.12.0 - 502.2) <ACA4001E-A0E3-33F6-9CD6-EEC2AA15E322> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff81431000 -     0x7fff81482fff  com.apple.HIServices (1.22 - 594) <EF8432A1-15C5-360C-9D14-19ADA43FCFDC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff81483000 -     0x7fff81492ff3  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2CBE7F61-2056-3F96-99A1-0D527796AFA6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff81493000 -     0x7fff814e0fff  com.apple.print.framework.PrintCore (12 - 491) <5027FD58-F0EE-33E4-8577-934CA06CD2AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff814e1000 -     0x7fff8151cfff  com.apple.QD (3.12 - 313) <B339C41D-8CDF-3342-8414-F9717DCCADD4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff8151d000 -     0x7fff81528fff  com.apple.speech.synthesis.framework (6.6.2 - 6.6.2) <7853EFF4-62B9-394E-B7B8-41A645656820> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff81529000 -     0x7fff81735ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) <1F4026C6-23C1-39E8-823D-72298FECF75C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff81736000 -     0x7fff81736fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) <2CEE36AF-79E6-3B3E-B369-285E6C1886F7> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8189f000 -     0x7fff81c7cfff  com.apple.CFNetwork (811.11 - 811.11) <5E5A7D4D-BCBA-3995-8C13-4D01DE1FAB33> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff81c96000 -     0x7fff81c96fff  com.apple.Carbon (154 - 157) <69F403C7-F0CB-34E6-89B0-235CF4978C17> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff81c97000 -     0x7fff81c9afff  com.apple.CommonPanels (1.2.6 - 98) <BF04BB22-D54C-309E-9F5C-897D969CAF70> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff81c9b000 -     0x7fff81fa4fff  com.apple.HIToolbox (2.1.1 - 857.8) <25E0AC26-27FE-32E5-9226-F4D42B25ED30> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff81fa5000 -     0x7fff81fa8ff7  com.apple.help (1.3.5 - 49) <B1A930E3-5907-3677-BACD-858EF68B172D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff81fa9000 -     0x7fff81faefff  com.apple.ImageCapture (9.0 - 9.0) <341252B4-E082-361A-B756-6A330259C741> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff81faf000 -     0x7fff82046ff3  com.apple.ink.framework (10.9 - 219) <1BD40B45-FD33-3177-A935-565EE5FC79D7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff82047000 -     0x7fff82061fff  com.apple.openscripting (1.7 - 172.1) <78F3256B-AF4C-324A-A591-ECA4443A469F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff82062000 -     0x7fff82063ff3  com.apple.print.framework.Print (12 - 267) <E2F82F1F-DC27-3EF0-9F75-B354F701450A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff82064000 -     0x7fff82066ff7  com.apple.securityhi (9.0 - 55006) <0DA7BABC-CE24-35FC-BF23-8EDF72D8C237> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff82067000 -     0x7fff8206dff7  com.apple.speech.recognition.framework (6.0.1 - 6.0.1) <082895DC-3AC7-3DEF-ADCA-5B018C19C9D3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff8214e000 -     0x7fff8214efff  com.apple.Cocoa (6.11 - 22) <85EDFBE1-75F0-369E-8CA8-C6A639B98FA6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff82298000 -     0x7fff82325fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <78767F88-91D4-31CE-AAC6-1F9407F479BB> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff82326000 -     0x7fff82339fff  com.apple.CoreBluetooth (1.0 - 1) <BCB78777-76F0-3CC1-8443-9E61AEF7EF63> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff8233a000 -     0x7fff82635fff  com.apple.CoreData (120 - 754.2) <4C9CAB2C-60D4-3694-A0A0-5B04B14BD14E> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff82636000 -     0x7fff826e3ff7  com.apple.CoreDisplay (1.0 - 1) <53D1EAFE-23A4-398D-BF52-E4299E670DB6> /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff826e4000 -     0x7fff82b7ffe7  com.apple.CoreFoundation (6.9 - 1349.98) <78CE7738-61B5-3997-902E-053426B3C2A9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff82b80000 -     0x7fff83202fff  com.apple.CoreGraphics (2.0 - 1070.22.1) <8A053296-AA99-371C-B9C5-FCBF87C6CEFE> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff83203000 -     0x7fff83446ffb  com.apple.CoreImage (12.4.0 - 451.4.9) <BE4303C9-C9D9-361D-AC94-DBE40EB6700E> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff834ad000 -     0x7fff8355efff  com.apple.CoreMedia (1.0 - 1907.59.1.6) <570690D8-A956-3629-9E46-4F8BDDB8A82C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff8355f000 -     0x7fff835aaff7  com.apple.CoreMediaIO (805.0 - 4932) <2A8AAD00-4F29-39C3-A371-3A8BA6200CAA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff835ab000 -     0x7fff835abfff  com.apple.CoreServices (775.20 - 775.20) <6DE824F2-B5FF-3EDA-8618-AED3C8020024> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff835ac000 -     0x7fff835fdfff  com.apple.AE (712.6 - 712.6) <9E9B4EC3-564D-3BA9-A9A4-1603E1F97F40> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff835fe000 -     0x7fff838d9ff7  com.apple.CoreServices.CarbonCore (1159.8 - 1159.8) <2B661676-E4F2-3E6F-BD25-DB685FCCA06A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff838da000 -     0x7fff8390dfff  com.apple.DictionaryServices (1.2 - 274) <D23866E2-F7C8-3984-A9D4-96552CCDE573> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff8390e000 -     0x7fff83916ff3  com.apple.CoreServices.FSEvents (1230.50.1 - 1230.50.1) <2AD1B0E5-7214-37C4-8D11-A27C9CAC0F74> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff83917000 -     0x7fff83a83ffb  com.apple.LaunchServices (775.20 - 775.20) <9106FF16-9587-313F-822C-2CD56204903E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff83a84000 -     0x7fff83b34ffb  com.apple.Metadata (10.7.0 - 1075.41) <FE2BC948-5014-3C50-9ED7-F9544B611363> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff83b35000 -     0x7fff83b94fff  com.apple.CoreServices.OSServices (775.20 - 775.20) <82D7E763-999D-31A0-AAE7-4F7A40105739> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff83b95000 -     0x7fff83c05fff  com.apple.SearchKit (1.4.0 - 1.4.0) <7A6DDA2B-03F1-3137-BA9E-1CC211973E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff83c06000 -     0x7fff83c4bff7  com.apple.coreservices.SharedFileList (38 - 38) <DA096678-93AB-3291-BDE2-482F1D544589> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff83cd4000 -     0x7fff83e21ffb  com.apple.CoreText (352.0 - 544.18) <B883809B-561B-31C5-949E-D2564B6F808A> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff83e22000 -     0x7fff83e57ff3  com.apple.CoreVideo (1.8 - 235.3) <AC11D5FB-C77B-34F5-B942-F698E84C229F> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff83e58000 -     0x7fff83ec9ffb  com.apple.framework.CoreWLAN (11.0 - 1200.31) <7300F2B4-0976-37F3-95E9-4B3BC102ED01> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff83efc000 -     0x7fff83f07ff3  com.apple.DirectoryService.Framework (10.12 - 194) <45BEA292-4550-3082-8CE7-5D6CE7E0052A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff83f08000 -     0x7fff83fc6ff7  com.apple.DiscRecording (9.0.3 - 9030.4.5) <9397E609-CB54-37B2-B28E-D4BC6C34BFAB> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x7fff83fc7000 -     0x7fff83fccfff  com.apple.DiskArbitration (2.7 - 2.7) <F47E07A4-D69D-312A-82C8-A1EE3C7C0EAC> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff8415e000 -     0x7fff84504ff3  com.apple.Foundation (6.9 - 1349.92) <CF64A84C-CBBD-3B6B-BC49-CF05398F2280> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff84530000 -     0x7fff84561fff  com.apple.GSS (4.0 - 2.0) <453B5C6D-08B0-3199-AFC8-C71BABD6B704> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff84562000 -     0x7fff8457aff7  com.apple.GameController (1.0 - 1) <DAC8C83B-7EC8-3A88-A725-E13DD905BF4F> /System/Library/Frameworks/GameController.framework/Versions/A/GameController
    0x7fff84621000 -     0x7fff846c4ff7  com.apple.Bluetooth (5.0.5 - 5.0.5f7) <DC83B429-A8C1-34F1-9FD9-C9BB99156DBE> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff846c5000 -     0x7fff8475bfff  com.apple.framework.IOKit (2.0.2 - 1324.60.8) <46DA8966-AC27-3F51-BBB2-359A229BB0F7> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8475c000 -     0x7fff84762ffb  com.apple.IOSurface (159.12 - 159.12) <E3D6FCED-F938-30A3-AD08-0998B674A492> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff84763000 -     0x7fff847b4ff7  com.apple.ImageCaptureCore (7.0 - 7.0) <A640CA2F-8093-34AB-947C-26679ECB8A6D> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff847b5000 -     0x7fff84915fef  com.apple.ImageIO.framework (3.3.0 - 1599.13.1) <B48585FF-3B2D-32F6-85A6-07ECDDB2A6E9> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff84916000 -     0x7fff8491afff  libGIF.dylib (1599.13.1) <79C31DCF-3D95-32DE-9869-C1FA91F7C572> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff8491b000 -     0x7fff84a0bff7  libJP2.dylib (1599.13.1) <5E34964D-36BC-3DDD-936B-D859B39117BB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff84a0c000 -     0x7fff84a2fffb  libJPEG.dylib (1599.13.1) <863E6D9C-E45A-33F7-8C52-2D2B81FCAE63> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff84a30000 -     0x7fff84a57ff7  libPng.dylib (1599.13.1) <06282D7B-70EC-34A5-9240-A80FD18DC2D0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff84a58000 -     0x7fff84a5aff3  libRadiance.dylib (1599.13.1) <823DDB0C-6BD0-3073-ABE4-313FDA38E3B4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff84a5b000 -     0x7fff84aa9fff  libTIFF.dylib (1599.13.1) <B48CCFEF-BD6E-37EA-8F1C-CC2CF6775A0E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff84c07000 -     0x7fff85811fff  com.apple.JavaScriptCore (12603 - 12603.3.8) <9557271A-1838-38DD-93E3-D8A9ECDE3B6B> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff85812000 -     0x7fff8582bff7  com.apple.Kerberos (3.0 - 1) <B9D242EB-E325-3A21-9812-C77CBBFB0D51> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8582c000 -     0x7fff85862fff  com.apple.LDAPFramework (2.4.28 - 194.5) <492ACA22-373E-3DD9-BAEB-9EF6AA962FD5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff85ab5000 -     0x7fff85abbfff  com.apple.MediaAccessibility (1.0 - 97.1.1) <0BD82735-6644-37CE-B13D-8E7CC59A1752> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x7fff85ad1000 -     0x7fff8600aff7  com.apple.MediaToolbox (1.0 - 1907.59.1.6) <FA068C6F-0506-35C3-A637-C4AFF82411DB> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x7fff8600b000 -     0x7fff86066fff  com.apple.Metal (87.18 - 87.18) <E3618B54-C728-34CA-9E8A-9BD33A295D31> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff8694f000 -     0x7fff86957fff  com.apple.NetFS (6.0 - 4.0) <14A24D00-5673-330A-959D-87F72040DEFF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff86b2e000 -     0x7fff86b36ff7  libcldcpuengine.dylib (2.8.5) <0D182C1C-2593-34C8-B454-78D3F5FF5724> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
    0x7fff86b37000 -     0x7fff86b85ff3  com.apple.opencl (2.8.6 - 2.8.6) <E7958F3E-F56C-35EC-87CD-6ADFC25D4512> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff86b86000 -     0x7fff86b9fffb  com.apple.CFOpenDirectory (10.12 - 194) <A64E9A01-3F6E-36EA-9C10-88C564A68C9D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff86ba0000 -     0x7fff86babff7  com.apple.OpenDirectory (10.12 - 194) <4298FFD0-B1A7-3064-AF5B-708B3FA38671> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff86bac000 -     0x7fff86baefff  libCVMSPluginSupport.dylib (14.0.16) <25655EB3-7BF6-36EC-BD17-47F4DF499D7F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff86baf000 -     0x7fff86bb2ff7  libCoreFSCache.dylib (156.3) <687C4CC3-6537-344B-8BE1-5234C8CB2864> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff86bb3000 -     0x7fff86bb7fff  libCoreVMClient.dylib (156.3) <E7AEFCBE-B6BF-3C7C-9A4E-E78CB04DB794> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff86bb8000 -     0x7fff86bc1ff7  libGFXShared.dylib (14.0.16) <679D8495-1C5F-3932-A452-050A21E0EEBB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff86bc2000 -     0x7fff86bcdfff  libGL.dylib (14.0.16) <0801F3B9-A525-32BB-9BC0-478947CE21D9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff86bce000 -     0x7fff86c0aff7  libGLImage.dylib (14.0.16) <FE39C57B-056C-3CBF-B653-A8F2005631C1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff86c0b000 -     0x7fff86d81ff3  libGLProgrammability.dylib (14.0.16) <46B8611A-D245-33BF-AA38-E44B2119DA12> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
    0x7fff86d82000 -     0x7fff86dc3ff7  libGLU.dylib (14.0.16) <B285EAD6-B3AA-3753-BB85-75864BD6E76C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8772b000 -     0x7fff87739fff  com.apple.opengl (14.0.16 - 14.0.16) <8D4CC067-4A70-34AE-945D-29407D780452> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff877d6000 -     0x7fff8791dfff  com.apple.QTKit (7.7.3 - 2978.8) <80B27C5D-087F-3B83-AF99-AD6BA2E1105D> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff8791e000 -     0x7fff87b88ff7  com.apple.imageKit (3.0 - 1023) <9C547565-CBAA-3ACB-A3F6-1366A0DCDCB4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
    0x7fff87b89000 -     0x7fff87c50fff  com.apple.PDFKit (1.0 - 1) <BE82F14C-B20C-3771-B16C-F0723F6552AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
    0x7fff87c51000 -     0x7fff88177ff7  com.apple.QuartzComposer (5.1 - 356) <C66293F6-EF05-3B36-8524-081CEB9FADD7> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
    0x7fff88178000 -     0x7fff8819bffb  com.apple.quartzfilters (1.10.0 - 1.10.0) <365342ED-7A1A-3C75-AE60-90764E96034C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
    0x7fff8819c000 -     0x7fff88289fff  com.apple.QuickLookUIFramework (5.0 - 720.7) <3136C23E-399E-3296-928A-B18EC9FC423C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x7fff8828a000 -     0x7fff8828afff  com.apple.quartzframework (1.5 - 21) <09455972-8A33-3D61-B193-BA7E7CF984CA> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff8828b000 -     0x7fff8848bfff  com.apple.QuartzCore (1.11 - 453.41.2) <564FBF07-0072-3587-91BE-7B0EFD6FBC1D> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff8848c000 -     0x7fff884e1fff  com.apple.QuickLookFramework (5.0 - 720.7) <3BD7BA2F-924C-3EFF-B26E-3F930E62E6B4> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff884e2000 -     0x7fff884fbfff  com.apple.SafariServices.framework (12607 - 12607.3.10) <481200D1-0ED9-33C0-AFDB-0EF2246DCF3D> /System/Library/Frameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff889de000 -     0x7fff889f5ff7  com.apple.ScriptingBridge (1.3.3 - 69) <F51B85CD-9C80-317E-B594-4A03612EAF52> /System/Library/Frameworks/ScriptingBridge.framework/Versions/A/ScriptingBridge
    0x7fff889f6000 -     0x7fff88cf8fff  com.apple.security (7.0 - 57740.60.30) <2DD7275B-40E5-3F8C-8258-8C73DD3EE438> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff88cf9000 -     0x7fff88d6efff  com.apple.securityfoundation (6.0 - 55132.50.7) <2AF6A217-45D3-30C2-86B6-F35AF827E698> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff88d6f000 -     0x7fff88d98fff  com.apple.securityinterface (10.0 - 55079.50.4) <BFF71026-2F8C-3B74-BAF6-3F01CD8DCE36> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x7fff88d99000 -     0x7fff88d9cff3  com.apple.xpc.ServiceManagement (1.0 - 1) <F2AACDEF-7DCC-35B9-A6B6-119FF8D83DBB> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff89123000 -     0x7fff89192ff7  com.apple.SystemConfiguration (1.14 - 1.14) <98E76341-BB2F-3DF4-9DD4-F4AC7648EF0F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff89193000 -     0x7fff89541fff  com.apple.VideoToolbox (1.0 - 1907.59.1.6) <EB2577A4-DCDF-3FD1-B5FA-42A55653A74D> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x7fff89542000 -     0x7fff8a8c9ff3  com.apple.WebCore (12603 - 12603.3.8) <FE0B8503-5E89-3D55-BF48-1370FE81910A> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
    0x7fff8a8ca000 -     0x7fff8aab6ff3  com.apple.WebKitLegacy (12603 - 12603.3.8) <28A763DA-BA6C-3350-8200-6DEA86FF7878> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/Versions/A/WebKitLegacy
    0x7fff8aab7000 -     0x7fff8ae62fff  com.apple.WebKit (12603 - 12603.3.8) <38192059-8C02-3BBC-BF1F-E1D5E3150E16> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff8b26e000 -     0x7fff8b275ffb  com.apple.APFS (1.0 - 1) <6E79797E-26BD-3E49-891C-03B223F7BD59> /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff8b9eb000 -     0x7fff8ba06ff3  com.apple.AppContainer (4.0 - 307.50.21) <C2E6BA3D-81FF-39C3-B4BF-DBB9A17DE078> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x7fff8ba07000 -     0x7fff8ba14ff3  com.apple.AppSandbox (4.0 - 307.50.21) <BF9FA426-8C11-358B-9E1F-A3901E3F2B14> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff8ba15000 -     0x7fff8ba37ffb  com.apple.framework.Apple80211 (12.0 - 1200.47.1) <F362FADE-B6F5-32B5-84E8-C3CE7FE5F851> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8ba38000 -     0x7fff8ba47feb  com.apple.AppleFSCompression (88.50.3 - 1.0) <478E8BFF-8BA2-375E-BE02-BA27F115C15A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff8bb3b000 -     0x7fff8bbc697f  com.apple.AppleJPEG (1.0 - 1) <B9E9570D-04A4-34E4-B756-D200043B25B8> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff8bbda000 -     0x7fff8bbf5fff  com.apple.aps.framework (4.0 - 4.0) <6CA07CDF-1E35-34E9-95BF-BD565FF42BAD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePushService
    0x7fff8bbf6000 -     0x7fff8bbfeffb  com.apple.AppleSRP (5.0 - 1) <6AAE93B6-9816-35B2-9C59-D5C3218065AF> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x7fff8bbff000 -     0x7fff8bc02ff3  com.apple.AppleSystemInfo (3.1.5 - 3.1.5) <42A1731A-A576-307A-B07C-9F8F64696CB7> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x7fff8bc03000 -     0x7fff8bc55fff  com.apple.AppleVAFramework (5.0.36 - 5.0.36) <149E882D-5DB1-3A2A-9D61-1D7C9A71A0D5> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff8bff9000 -     0x7fff8c077ff7  com.apple.backup.framework (1.8.6 - 1.8.6) <2D75451A-8818-3D72-8480-489DF77D708B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff8c0a0000 -     0x7fff8c0ddffb  com.apple.bom (14.0 - 194.1.5) <304CDDD5-F138-3B3E-97B4-69CA7CE3D7CE> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff8c713000 -     0x7fff8c73afff  com.apple.CalendarAgentLink (8.0 - 250) <E50E29F6-2BAB-3B8B-BBEA-7DC0B8B077AD> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/CalendarAgentLink
    0x7fff8cd02000 -     0x7fff8cd29ff3  com.apple.ChunkingLibrary (173 - 173) <FC2165F9-FC93-39C0-8323-C2F43A5E00A3> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x7fff8d64e000 -     0x7fff8d657ffb  com.apple.CommonAuth (4.0 - 2.0) <A71AD8F9-5CC8-3072-8A0B-F5427D3E8163> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff8d71e000 -     0x7fff8d76fff7  com.apple.AddressBook.ContactsFoundation (8.0 - 2250.11) <1324A70E-A093-3DB9-A802-07B8F4A499B5> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundation
    0x7fff8d770000 -     0x7fff8d792fff  com.apple.contacts.ContactsPersistence (1.0 - 2250.11) <7CDEB852-B3B7-328F-9537-DFB3A58B882C> /System/Library/PrivateFrameworks/ContactsPersistence.framework/Versions/A/ContactsPersistence
    0x7fff8d7dc000 -     0x7fff8dbbbff7  com.apple.CoreAUC (226.0.0 - 226.0.0) <FBF6C5BC-5937-3957-B6BA-E101DF9B0DF6> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8dbbc000 -     0x7fff8dbecfff  com.apple.CoreAVCHD (5.9.0 - 5900.4.1) <3F6857D1-AE7C-3593-B064-930F5BB7269E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x7fff8dc87000 -     0x7fff8dc8fffb  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <2AB86FAF-37B3-3323-9EF0-CA591B6E357C> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
    0x7fff8dda0000 -     0x7fff8ddb0fff  com.apple.CoreEmoji (1.0 - 40.3.3) <E9A28301-2D79-3A97-A046-028258A6ABE5> /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff8de75000 -     0x7fff8de8bff3  com.apple.CoreMediaAuthoring (2.2 - 956) <AEBFF55F-BF1E-3CA5-AA9C-1CE22218A665> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
    0x7fff8de92000 -     0x7fff8df22ffb  com.apple.CorePDF (4.0 - 4) <7F50E4A6-940C-33F5-BE4E-7E01AFE98A8F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8e0eb000 -     0x7fff8e11bff3  com.apple.CoreServicesInternal (276.2 - 276.2) <05EB7D45-DD4C-3A0F-AC63-A0C2A68E6481> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff8e3ac000 -     0x7fff8e43bff7  com.apple.CoreSymbolication (62046) <2D4C3324-B647-3696-B92E-AAB1053EEB54> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff8e43c000 -     0x7fff8e57bfe7  com.apple.coreui (2.1 - 431.3) <8D0FA478-9B6C-3D6D-8ADF-8677BA0BF134> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff8e57c000 -     0x7fff8e64cff3  com.apple.CoreUtils (5.1 - 510.31) <B6636BBF-D37E-360E-A3EE-61BDC1736EEA> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff8e69c000 -     0x7fff8e701ff3  com.apple.framework.CoreWiFi (12.0 - 1200.31) <1B3FE242-8AEB-38BD-84A4-65DBC476FEEA> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff8e702000 -     0x7fff8e710ff7  com.apple.CrashReporterSupport (10.12 - 827) <802A9B81-E349-348B-90AB-10E40B654250> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff8e782000 -     0x7fff8e78cffb  com.apple.framework.DFRFoundation (1.0 - 104.25) <7CFF896C-EF22-3941-BB3D-F3615CE4C908> /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff8e78d000 -     0x7fff8e791ff3  com.apple.DSExternalDisplay (3.1 - 380) <4B5E3FF0-E8C3-38CC-BF72-418C928956AB> /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff8e7c7000 -     0x7fff8e83cffb  com.apple.datadetectorscore (7.0 - 539.1) <D84B64BA-CD56-368E-A31A-AC47C3780D0B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff8e878000 -     0x7fff8e8b7fff  com.apple.DebugSymbols (137 - 137) <58A70B66-2628-3CFE-B103-2200D95FC5F7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff8e8b8000 -     0x7fff8e9c9fff  com.apple.desktopservices (1.11.6 - 1.11.6) <225B3746-8626-34CD-8FA9-48A7C04ACCCF> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff8e9ce000 -     0x7fff8eaa3fff  com.apple.DiskImagesFramework (444.50.19 - 444.50.19) <A7C95C24-44EE-3EF0-BE04-628DFD04D57C> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff8eb0c000 -     0x7fff8eb17fff  com.apple.DisplayServicesFW (3.1 - 380) <0BDF6C17-5E5F-33F8-8E99-C7350C6F9667> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x7fff8eb5c000 -     0x7fff8eb5effb  com.apple.EFILogin (2.0 - 2) <A74B0065-643F-3BC1-8FE9-E7CEAA29AD9A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff8ecb1000 -     0x7fff8f0e2ff7  com.apple.vision.FaceCore (3.3.2 - 3.3.2) <9391D5A3-738C-3136-9D07-518CB43DBADA> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff90439000 -     0x7fff90439fff  libmetal_timestamp.dylib (600.0.49.9) <E5EED927-1671-3390-BCBB-D76201D63C73> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
    0x7fff90446000 -     0x7fff90451ff3  libGPUSupportMercury.dylib (14.0.16) <BE0ED0DC-DDE4-32F0-9315-39678785A538> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupportMercury.dylib
    0x7fff9070a000 -     0x7fff90726fff  com.apple.GenerationalStorage (2.0 - 267.2) <22381303-B9A8-32D8-BDBF-871F0CDD81A5> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
    0x7fff90e37000 -     0x7fff90eadff3  com.apple.Heimdal (4.0 - 2.0) <9E554667-2A6D-3A86-883A-50C8AF98D0C0> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff914c8000 -     0x7fff914cfffb  com.apple.IOAccelerator (311.16.4 - 311.16.4) <F41EB563-1439-3745-BE98-4A4B6F45A7DF> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff914d1000 -     0x7fff914e5ff7  com.apple.IOPresentment (1.0 - 29.10) <30DF04EE-10E2-353F-845F-A97B87DF3207> /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff914e6000 -     0x7fff91508fff  com.apple.IconServices (74.4 - 74.4) <218DDD05-35F4-3833-B98D-471ED0EBC031> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff915a4000 -     0x7fff915b4ff3  com.apple.IntlPreferences (2.0 - 216) <7A417848-2A43-35A3-9CD4-61F33D573C56> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPreferences
    0x7fff915ef000 -     0x7fff917a6fff  com.apple.LanguageModeling (1.0 - 123.2.5) <A8CA965F-0399-310D-91C3-B93DDDE9A442> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff91e16000 -     0x7fff91e19fff  com.apple.Mangrove (1.0 - 1) <98814966-FD65-302B-B47E-00928DC34E5C> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
    0x7fff91ef2000 -     0x7fff91f26ff3  com.apple.MediaKit (16 - 845) <883DC63F-F90F-3FB9-8C23-9CECD72EBCDE> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff920c7000 -     0x7fff92140ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) <C323FC94-FFA5-3EE6-B2AC-7E61EA92F304> /System/Library/PrivateFrameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff92152000 -     0x7fff922bdff7  com.apple.mobiledevice (988.250.11.100.2 - 988.250.11.100.2) <E3A6F6AC-EF91-3A77-8AD8-82D51C7F0388> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice
    0x7fff922be000 -     0x7fff922ccfff  com.apple.MobileKeyBag (2.0 - 1.0) <F30A4E9C-FAB8-3FD7-B881-5021F40C12FB> /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff922dd000 -     0x7fff92305ff7  com.apple.MultitouchSupport.framework (368.16 - 368.16) <F6EFB289-F4B1-36E7-88D4-D1C7B1630A23> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff923b7000 -     0x7fff923c2fff  com.apple.NetAuth (6.2 - 6.2) <E1D6BFF0-7F37-3866-9925-5DF40EB3A1F4> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff9280f000 -     0x7fff92811fff  com.apple.OAuth (25 - 25) <D6E5F36D-71B8-3E12-9601-CE2A1D6ED60B> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x7fff92c9b000 -     0x7fff92cdcff3  com.apple.PerformanceAnalysis (1.148.3 - 148.3) <DE16079A-5267-372A-9435-E993EB41252A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff92d1f000 -     0x7fff92d26ff3  com.apple.phonenumbers (1.1.1 - 105) <B8EFDDD3-BA26-39B8-9EA0-3649184BF527> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x7fff93314000 -     0x7fff93336fff  com.apple.pluginkit.framework (1.0 - 1) <B09BC1B5-63C4-368E-A7BA-4155D3798E27> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff93389000 -     0x7fff933c3ffb  com.apple.ProtectedCloudStorage (1.0 - 1) <FD1F4A30-A8A4-3570-98E0-347117CE99A7> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
    0x7fff933c4000 -     0x7fff933defff  com.apple.ProtocolBuffer (1 - 249.1) <A1F1B0F3-078F-378F-A9A9-0DEEA70E816A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff933df000 -     0x7fff933eeff7  com.apple.QuickLookThumbnailing (1.0 - 1) <173EE873-1700-3FCA-9782-C060FBB5BCAD> /System/Library/PrivateFrameworks/QuickLookThumbnailing.framework/Versions/A/QuickLookThumbnailing
    0x7fff933f7000 -     0x7fff9341aff3  com.apple.RemoteViewServices (2.0 - 124) <6B967FDA-6591-302C-BA0A-76C4856E584E> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff940e4000 -     0x7fff940e7fff  com.apple.SecCodeWrapper (4.0 - 307.50.21) <F8E957B2-D3F0-3B73-B38C-AE8868F00939> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x7fff94176000 -     0x7fff94203fff  com.apple.Sharing (696.2.67.1 - 696.2.67.1) <267A3C7C-BB70-3E92-B773-A3F9EDD12E84> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff94224000 -     0x7fff9448aff3  com.apple.SkyLight (1.600.0 - 170.3.11.11) <0F7F9F9B-90E2-3FE4-9A39-DE7EC10DAF79> /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff94669000 -     0x7fff94675ff7  com.apple.SpeechRecognitionCore (3.3.2 - 3.3.2) <684BD1EA-8268-331C-A5A9-080EB375C658> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff94d61000 -     0x7fff94dd5fdf  com.apple.Symbolication (62048.1) <1A30ED19-7532-3F46-9DD3-9879A973D0CF> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff95214000 -     0x7fff9521aff7  com.apple.TCC (1.0 - 1) <911B534B-4AC7-34E4-935E-E42ECD008CBC> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff952a6000 -     0x7fff9536cff7  com.apple.TextureIO (2.8 - 2.8) <3D61E533-4156-3B21-B7ED-CB823E680DFC> /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff953b5000 -     0x7fff953caff3  com.apple.ToneKit (1.0 - 1) <B709293D-0A79-398A-8AA9-50F6340C227C> /System/Library/PrivateFrameworks/ToneKit.framework/Versions/A/ToneKit
    0x7fff953cb000 -     0x7fff953d9ffb  com.apple.ToneLibrary (1.0 - 1) <F2ED5DFC-5F11-3012-BCD7-17753413141F> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff953e0000 -     0x7fff953e1fff  com.apple.TrustEvaluationAgent (2.0 - 28.50.1) <EBE65DD5-1732-3747-8C6C-7BECEBF089A4> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
    0x7fff953e2000 -     0x7fff95573ff3  com.apple.UIFoundation (1.0 - 490.8) <0342C3E6-AB89-3F0D-A9CE-5F2CD3587B75> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff96042000 -     0x7fff96102fff  com.apple.ViewBridge (283 - 283) <25A635B3-C87C-3D3A-ADF3-539713FA1048> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff9654d000 -     0x7fff96553fff  com.apple.XPCService (2.0 - 1) <4B28B225-2105-33F4-9ED0-F04288FF4FB1> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff96624000 -     0x7fff96626ffb  com.apple.loginsupport (1.0 - 1) <F3140B97-12C3-35A7-9D3D-43DA2D13C113> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff96652000 -     0x7fff96679ff7  com.apple.contacts.vCard (1.0 - 2250.11) <DD615DAF-AF34-3AB4-9CB4-DA0A882D59A5> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff9667b000 -     0x7fff96696ff7  libCRFSuite.dylib (34) <F78B7F5F-0B4F-35C6-AA2F-84EE9CB22137> /usr/lib/libCRFSuite.dylib
    0x7fff96697000 -     0x7fff966a2fff  libChineseTokenizer.dylib (21) <0886E908-A825-36AF-B94B-2361FD8BC2A1> /usr/lib/libChineseTokenizer.dylib
    0x7fff966a3000 -     0x7fff96733ff7  libCoreStorage.dylib (540.30.1) <85C0A366-F901-36E3-854A-FE8A14A04A72> /usr/lib/libCoreStorage.dylib
    0x7fff96734000 -     0x7fff96735ff3  libDiagnosticMessagesClient.dylib (102) <84A04D24-0E60-3810-A8C0-90A65E2DF61A> /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff96736000 -     0x7fff96949fff  libFosl_dynamic.dylib (16.39) <E22A4243-D148-3C74-BA15-2D906A3D1F9E> /usr/lib/libFosl_dynamic.dylib
    0x7fff96965000 -     0x7fff9696cfff  libMatch.1.dylib (27) <70D4BD2A-9383-37F2-B0D6-9B592D236601> /usr/lib/libMatch.1.dylib
    0x7fff9696d000 -     0x7fff9696dfff  libOpenScriptingUtil.dylib (172.1) <0F1BA407-97D1-36F6-882D-A355EAAD5E00> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff9696e000 -     0x7fff96972ffb  libScreenReader.dylib (477.40.7) <F7305560-6CF0-3000-8301-72E04BEAA693> /usr/lib/libScreenReader.dylib
    0x7fff96973000 -     0x7fff96974ffb  libSystem.B.dylib (1238.60.2) <58358A17-4318-3AD9-B18E-CC36502B9127> /usr/lib/libSystem.B.dylib
    0x7fff969e0000 -     0x7fff96a0bff3  libarchive.2.dylib (41.70.2) <907D1FB1-9A65-33F5-AFC8-0B6E5AE9D83A> /usr/lib/libarchive.2.dylib
    0x7fff96a0c000 -     0x7fff96a88fc7  libate.dylib (1.12.13) <D0767875-D02E-3377-84D8-5F174C27BEA9> /usr/lib/libate.dylib
    0x7fff96a8c000 -     0x7fff96a8cff3  libauto.dylib (187) <34388D0B-C539-3C1B-9408-2BC152162E43> /usr/lib/libauto.dylib
    0x7fff96a8d000 -     0x7fff96a9dff3  libbsm.0.dylib (34) <20084796-B04D-3B35-A003-EA11459557A9> /usr/lib/libbsm.0.dylib
    0x7fff96a9e000 -     0x7fff96aacff7  libbz2.1.0.dylib (38) <ADFA329A-DCE7-356D-8F09-A3168DFC6610> /usr/lib/libbz2.1.0.dylib
    0x7fff96aad000 -     0x7fff96b03ff7  libc++.1.dylib (307.5) <0B43BB5D-E6EB-3464-8DE9-B41AC8ED9D1C> /usr/lib/libc++.1.dylib
    0x7fff96b04000 -     0x7fff96b2dff7  libc++abi.dylib (307.4) <BC271AD3-831B-362A-9DA7-E8C51F285FE4> /usr/lib/libc++abi.dylib
    0x7fff96b2e000 -     0x7fff96b3effb  libcmph.dylib (6) <2B5D405E-2D0B-3320-ABD6-622934C86ABE> /usr/lib/libcmph.dylib
    0x7fff96b3f000 -     0x7fff96b55fcf  libcompression.dylib (39) <F2726F95-F54E-3B21-BCB5-F7151DEFDC2F> /usr/lib/libcompression.dylib
    0x7fff96b56000 -     0x7fff96b56ff7  libcoretls.dylib (121.50.4) <64B1001E-10F6-3542-A3B2-C4B49F51817F> /usr/lib/libcoretls.dylib
    0x7fff96b57000 -     0x7fff96b58ff3  libcoretls_cfhelpers.dylib (121.50.4) <1A10303E-5EB0-3C7C-9165-021FCDFD934D> /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff96c12000 -     0x7fff96cf6ff7  libcrypto.0.9.8.dylib (64.50.7) <B34BC0FA-18ED-37C5-9D46-393803CADEBB> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff96cf7000 -     0x7fff96e87ff7  libcrypto.35.dylib (11.50.4) <11578EE7-5538-3543-AAE5-A9B3E91536B2> /usr/lib/libcrypto.35.dylib
    0x7fff96e88000 -     0x7fff96e93fff  libcsfde.dylib (540.30.1) <0C2B183B-16D9-3D5F-962D-0A09C7063211> /usr/lib/libcsfde.dylib
    0x7fff96e94000 -     0x7fff96ee7ff7  libcups.2.dylib (450.4) <2DA65D4A-1428-3F74-869A-E16246DE88C7> /usr/lib/libcups.2.dylib
    0x7fff96ee8000 -     0x7fff96f3afff  libcurl.4.dylib (95.70.5) <ED932C5D-6FA2-364A-B562-3F67D1B40C71> /usr/lib/libcurl.4.dylib
    0x7fff96f3b000 -     0x7fff96f42ff3  libdscsym.dylib (148.3) <1FF45ED3-4518-3431-BD66-88461B3395AC> /usr/lib/libdscsym.dylib
    0x7fff96f64000 -     0x7fff96f64fff  libenergytrace.dylib (15) <A1B040A2-7977-3097-9ADF-34FF181EB970> /usr/lib/libenergytrace.dylib
    0x7fff96f65000 -     0x7fff96f71ffb  libexslt.0.dylib (15.9.3) <FF4C6DAE-3728-3ABB-A1F8-68D9274BDFEC> /usr/lib/libexslt.0.dylib
    0x7fff96f72000 -     0x7fff96f73fff  libffi.dylib (18.1) <49D03682-E111-351C-8266-4519B3B82BE9> /usr/lib/libffi.dylib
    0x7fff96f74000 -     0x7fff96f79ff7  libheimdal-asn1.dylib (498.50.12) <1AC5AB99-2E62-3B9C-ADE4-AE65CFCDA471> /usr/lib/libheimdal-asn1.dylib
    0x7fff96f7a000 -     0x7fff9706cff7  libiconv.2.dylib (50) <42125B35-81D7-3FC4-9475-A26DBE10884D> /usr/lib/libiconv.2.dylib
    0x7fff9706d000 -     0x7fff97292ffb  libicucore.A.dylib (57168.0.1) <99D53A36-19F6-34F0-86AB-D8BD6C9BD3AD> /usr/lib/libicucore.A.dylib
    0x7fff97298000 -     0x7fff97299fff  liblangid.dylib (126) <2085E7A7-9A34-3735-87F4-F174EF8EABF0> /usr/lib/liblangid.dylib
    0x7fff9729a000 -     0x7fff972b3ffb  liblzma.5.dylib (10) <44BD0279-99DD-36B5-8A6E-C11432E2098D> /usr/lib/liblzma.5.dylib
    0x7fff972b4000 -     0x7fff972caff7  libmarisa.dylib (5) <9030D214-5D0F-30CB-AC03-902C63909362> /usr/lib/libmarisa.dylib
    0x7fff972cb000 -     0x7fff97573ff7  libmecabra.dylib (744.8) <D429FCC9-42A4-38B3-8784-44024BC859EF> /usr/lib/libmecabra.dylib
    0x7fff975a6000 -     0x7fff97620ff3  libnetwork.dylib (856.60.1) <191E99F5-4723-3180-8013-02AF2F9AE4B8> /usr/lib/libnetwork.dylib
    0x7fff97621000 -     0x7fff979f3047  libobjc.A.dylib (709.1) <70614861-0340-32E2-85ED-FE65759CDFFA> /usr/lib/libobjc.A.dylib
    0x7fff979f6000 -     0x7fff979fafff  libpam.2.dylib (21.30.1) <71EB0D88-DE84-3C8D-A2C5-58AA282BC5BC> /usr/lib/libpam.2.dylib
    0x7fff979fb000 -     0x7fff97a2cfff  libpcap.A.dylib (67.60.2) <B2D36AD8-D5C8-3875-AC81-4787A15E44C2> /usr/lib/libpcap.A.dylib
    0x7fff97a49000 -     0x7fff97a65ffb  libresolv.9.dylib (64) <A244AE4C-00B0-396C-98FF-97FE4DB3DA30> /usr/lib/libresolv.9.dylib
    0x7fff97a66000 -     0x7fff97a9ffff  libsandbox.1.dylib (592.70.2) <9017CBC7-DC59-3668-8E86-738D141AF11C> /usr/lib/libsandbox.1.dylib
    0x7fff97aa0000 -     0x7fff97ab2ffb  libsasl2.2.dylib (209) <32107C59-22C6-3049-B86E-9C2F85FF549B> /usr/lib/libsasl2.2.dylib
    0x7fff97ab3000 -     0x7fff97ab4ff3  libspindump.dylib (231.3) <1A34FC5F-2E60-3C81-9F4A-C1FF0FE39FE1> /usr/lib/libspindump.dylib
    0x7fff97ab5000 -     0x7fff97c03ff7  libsqlite3.dylib (254.8) <1ECF7DF7-7A07-3B4B-A63B-F4EFF6BC7ACF> /usr/lib/libsqlite3.dylib
    0x7fff97c5f000 -     0x7fff97cb2ffb  libssl.35.dylib (11.50.4) <81C74F15-DE70-3B59-BB9D-9224646B49CC> /usr/lib/libssl.35.dylib
    0x7fff97cb3000 -     0x7fff97d03fff  libstdc++.6.dylib (104.1) <A980E08C-A511-3D19-9881-1D79B7CFF2BA> /usr/lib/libstdc++.6.dylib
    0x7fff97d48000 -     0x7fff97d4bff7  libutil.dylib (47.30.1) <88CC63B3-0EDF-306E-9AB5-D87EBE0F3F16> /usr/lib/libutil.dylib
    0x7fff97d4c000 -     0x7fff97d59ff7  libxar.1.dylib (417.1) <78B14DC5-5256-3820-8259-117C5046BB9F> /usr/lib/libxar.1.dylib
    0x7fff97d5a000 -     0x7fff97e49ff3  libxml2.2.dylib (30.24) <D84C6B99-6D4C-3651-8086-387D631CBA37> /usr/lib/libxml2.2.dylib
    0x7fff97e4a000 -     0x7fff97e73fff  libxslt.1.dylib (15.9.3) <F57ED43F-7912-3C99-8500-AB0EEE9FA178> /usr/lib/libxslt.1.dylib
    0x7fff97e74000 -     0x7fff97e85ff3  libz.1.dylib (67) <46E3FFA2-4328-327A-8D34-A03E20BFFB8E> /usr/lib/libz.1.dylib
    0x7fff97e94000 -     0x7fff97e98ff7  libcache.dylib (79) <093A4DAB-8385-3D47-A350-E20CB7CCF7BF> /usr/lib/system/libcache.dylib
    0x7fff97e99000 -     0x7fff97ea3fff  libcommonCrypto.dylib (60092.50.5) <4C8A7FE1-C190-3015-A744-66F8220EAF6A> /usr/lib/system/libcommonCrypto.dylib
    0x7fff97ea4000 -     0x7fff97eabfff  libcompiler_rt.dylib (62) <55D47421-772A-32AB-B529-1A46C2F43B4D> /usr/lib/system/libcompiler_rt.dylib
    0x7fff97eac000 -     0x7fff97eb4fff  libcopyfile.dylib (138) <819BEA3C-DF11-3E3D-A1A1-5A51C5BF1961> /usr/lib/system/libcopyfile.dylib
    0x7fff97eb5000 -     0x7fff97f38fdb  libcorecrypto.dylib (442.50.22) <E36CE660-855A-3166-8B9C-645C514B2C52> /usr/lib/system/libcorecrypto.dylib
    0x7fff97f39000 -     0x7fff97f6afff  libdispatch.dylib (703.50.38) <54B02414-5908-3EF0-B4D2-230B7FEB1CF7> /usr/lib/system/libdispatch.dylib
    0x7fff97f6b000 -     0x7fff97f70ffb  libdyld.dylib (434) <4A0E66C1-4596-38E6-898E-BD2660478D3D> /usr/lib/system/libdyld.dylib
    0x7fff97f71000 -     0x7fff97f71ffb  libkeymgr.dylib (28) <7AA011A9-DC21-3488-BF73-3B5B14D1FDD6> /usr/lib/system/libkeymgr.dylib
    0x7fff97f72000 -     0x7fff97f7efff  libkxld.dylib (3789.73.50) <E2CCB6DE-F92B-33CE-81A8-DDC42E62B62D> /usr/lib/system/libkxld.dylib
    0x7fff97f7f000 -     0x7fff97f7ffff  liblaunch.dylib (972.70.5) <1F770D9B-3892-3BBB-9471-68DDDDB0F69A> /usr/lib/system/liblaunch.dylib
    0x7fff97f80000 -     0x7fff97f85ff3  libmacho.dylib (898) <17D5D855-F6C3-3B04-B680-E9BF02EF8AED> /usr/lib/system/libmacho.dylib
    0x7fff97f86000 -     0x7fff97f88ff3  libquarantine.dylib (85.50.1) <12448CC2-378E-35F3-BE33-9DC395A5B970> /usr/lib/system/libquarantine.dylib
    0x7fff97f89000 -     0x7fff97f8affb  libremovefile.dylib (45) <38D4CB9C-10CD-30D3-8B7B-A515EC75FE85> /usr/lib/system/libremovefile.dylib
    0x7fff97f8b000 -     0x7fff97fa3ff7  libsystem_asl.dylib (349.50.5) <096E4228-3B7C-30A6-8B13-EC909A64499A> /usr/lib/system/libsystem_asl.dylib
    0x7fff97fa4000 -     0x7fff97fa4ff7  libsystem_blocks.dylib (67) <10DC5404-73AB-35B3-A277-A8AFECB476EB> /usr/lib/system/libsystem_blocks.dylib
    0x7fff97fa5000 -     0x7fff98032fef  libsystem_c.dylib (1158.50.2) <E5AE5244-7D0C-36AC-8BB6-C7AE7EA52A4B> /usr/lib/system/libsystem_c.dylib
    0x7fff98033000 -     0x7fff98036ffb  libsystem_configuration.dylib (888.60.3) <094DBBF4-276A-3A11-8AF3-72743CC338E6> /usr/lib/system/libsystem_configuration.dylib
    0x7fff98037000 -     0x7fff9803afff  libsystem_coreservices.dylib (41.4) <7D26DE79-B424-3450-85E1-F7FAB32714AB> /usr/lib/system/libsystem_coreservices.dylib
    0x7fff9803b000 -     0x7fff98053fff  libsystem_coretls.dylib (121.50.4) <EC6FCF07-DCFB-3A03-9CC9-6DD3709974C6> /usr/lib/system/libsystem_coretls.dylib
    0x7fff98054000 -     0x7fff9805afff  libsystem_dnssd.dylib (765.50.11) <B87F96B8-2694-3DB3-9923-1B4E2245C8BF> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff9805b000 -     0x7fff98084ff7  libsystem_info.dylib (503.50.4) <611DB84C-BF70-3F92-8702-B9F28A900920> /usr/lib/system/libsystem_info.dylib
    0x7fff98085000 -     0x7fff980a7ff7  libsystem_kernel.dylib (3789.73.50) <932ACBB6-9962-3839-AEE3-D8AA6BF1DD02> /usr/lib/system/libsystem_kernel.dylib
    0x7fff980a8000 -     0x7fff980effe7  libsystem_m.dylib (3121.6) <86D499B5-BBDC-3D3B-8A4E-97AE8E6672A4> /usr/lib/system/libsystem_m.dylib
    0x7fff980f0000 -     0x7fff9810eff7  libsystem_malloc.dylib (116.50.9) <82647590-DAEF-3499-8BF3-F1E3048861FE> /usr/lib/system/libsystem_malloc.dylib
    0x7fff9810f000 -     0x7fff98168ffb  libsystem_network.dylib (856.60.1) <369D0221-56CA-3C3E-9EDE-94B41CAE77B7> /usr/lib/system/libsystem_network.dylib
    0x7fff98169000 -     0x7fff98172ff3  libsystem_networkextension.dylib (563.60.2) <B021F2B3-8A75-3633-ABB0-FC012B8E9B0C> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff98173000 -     0x7fff9817cff3  libsystem_notify.dylib (165.20.1) <B8160190-A069-3B3A-BDF6-2AA408221FAE> /usr/lib/system/libsystem_notify.dylib
    0x7fff9817d000 -     0x7fff98185fe7  libsystem_platform.dylib (126.50.8) <897462FD-B318-321B-A554-E61982630F7E> /usr/lib/system/libsystem_platform.dylib
    0x7fff98186000 -     0x7fff98190ff7  libsystem_pthread.dylib (218.60.3) <B8FB5E20-3295-39E2-B5EB-B464D1D4B104> /usr/lib/system/libsystem_pthread.dylib
    0x7fff98191000 -     0x7fff98194ff7  libsystem_sandbox.dylib (592.70.2) <19320A42-2E3B-361B-BBDA-2F5F2E87B100> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff98195000 -     0x7fff98196ff3  libsystem_secinit.dylib (24.50.4) <F78B847B-3565-3E4B-98A6-F7AD40392E2D> /usr/lib/system/libsystem_secinit.dylib
    0x7fff98197000 -     0x7fff9819effb  libsystem_symptoms.dylib (532.50.48) <1C822669-BF39-3639-A00B-B9170A63F342> /usr/lib/system/libsystem_symptoms.dylib
    0x7fff9819f000 -     0x7fff981b2ff7  libsystem_trace.dylib (518.70.1) <AC63A7FE-50D9-3A30-96E6-F6B7FF16E465> /usr/lib/system/libsystem_trace.dylib
    0x7fff981b3000 -     0x7fff981b8ffb  libunwind.dylib (35.3) <3D50D8A8-C460-334D-A519-2DA841102C6B> /usr/lib/system/libunwind.dylib
    0x7fff981b9000 -     0x7fff981e2ff7  libxpc.dylib (972.70.5) <255AA6A1-26AA-33F6-BC11-3DCE12A0BC0F> /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: 120
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=490.6M resident=0K(0%) swapped_out_or_unallocated=490.6M(100%)
Writable regions: Total=675.3M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=675.3M(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Accelerate framework               384K        4 
Activity Tracing                   256K        2 
CG backing stores                 7432K        6 
CG image                            76K        9 
CoreAnimation                      116K        8 
CoreUI image data                 1744K       14 
CoreUI image file                  224K        5 
Image IO                            76K        3 
Kernel Alloc Once                    8K        2 
MALLOC                           477.0M       50 
MALLOC guard page                   48K       10 
Memory Tag 242                      12K        2 
Memory Tag 249                     408K        2 
PROTECTED_MEMORY                     4K        2 
STACK GUARD                       56.2M       53 
Stack                            168.9M       55 
VM_ALLOCATE                        820K       25 
__DATA                            42.9M      370 
__GLSLBUILTINS                    2588K        2 
__IMAGE                            528K        2 
__LINKEDIT                       128.6M       67 
__TEXT                           362.0M      353 
__UNICODE                          556K        2 
mapped file                       93.8M       21 
shared memory                     16.4M       16 
===========                     =======  ======= 
TOTAL                              1.3G     1060 

Model: MacBookPro11,2, BootROM 156.0.0.0.0, 4 processors, Intel Core i7, 2.2 GHz, 16 GB, SMC 2.18f15
Graphics: Intel Iris Pro, Intel Iris Pro, Built-In
Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54343147533641465238412D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x134), Broadcom BCM43xx 1.0 (7.21.171.134.1a2)
Bluetooth: Version 5.0.5f7, 3 services, 27 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en0
Serial ATA Device: APPLE SSD SM0256F, 251 GB
USB Device: USB 3.0 Bus
USB Device: Apple Internal Keyboard / Trackpad
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus: MacBook Pro, Apple Inc., 17.1

Build fails with CMake errors

I was able to successfully build supercollider following your updated ReadMe, which I had never been able to do before. I am running mac OS Mojave. I made it to the next step, building supercolliderAU, but running "cmake .." yielded the following warnings and errors with a failed build:

Warning 1:
"CMake Warning at CMakeLists.txt:36 (find_package):
By not providing "FindPthreads.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Pthreads",
but CMake did not find one.

Could not find a package configuration file provided by "Pthreads" with any
of the following names:

PthreadsConfig.cmake
pthreads-config.cmake

Add the installation prefix of "Pthreads" to CMAKE_PREFIX_PATH or set
"Pthreads_DIR" to a directory containing one of the above files. If
"Pthreads" provides a separate development package or SDK, be sure it has
been installed."

Warning 2:
"CMake Warning at CMakeLists.txt:37 (find_package):
By not providing "FindSndfile.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "Sndfile", but
CMake did not find one.

Could not find a package configuration file provided by "Sndfile" with any
of the following names:

SndfileConfig.cmake
sndfile-config.cmake

Add the installation prefix of "Sndfile" to CMAKE_PREFIX_PATH or set
"Sndfile_DIR" to a directory containing one of the above files. If
"Sndfile" provides a separate development package or SDK, be sure it has
been installed."

And then the fatal error:

"failed to find AudioUnit/AudioUnit.r
/Users/anthonyroncolato/supercolliderAU/Source/SuperColliderAU.r:20: ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - SysError 2 during open of "AudioUnit/AudioUnit.r".
Fatal Error!
/Users/anthonyroncolato/supercolliderAU/Source/SuperColliderAU.r:20: ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - Fatal Error, can't recover.
/Users/anthonyroncolato/supercolliderAU/Source/SuperColliderAU.r: ### /Applications/Xcode.app/Contents/Developer/usr/bin/Rez - Since errors occurred, /Users/anthonyroncolato/supercolliderAU/Resources/SuperColliderAU.rsrc's resource fork was not written."

Despite the error, I decided to run "make" anyway just to see what would happen. It generated the supercolliderAU.component package, but when tested in Logic, it failed to recognize the plugin (which seems to be expected at this point).

Please let me know if I need to provide any further documentation or information, I'm very new to GitHub. Thank you!

Improve documentation in README

The doc says "you first need to build SuperCollider itself in the usual way". What is that?

To aid someone who is approaching SuperCollider for the first time, we could be more explicit... I found that building from the submodule didn't work and after much trial and error I discovered that I had to git clone --recursive the master SuperCollider repo separately, then copy it into the /SupercolliderAU/supercollider folder. But maybe it's that which has caused other problems with the AU validation (see the other issue I opened). Suffice to say that getting this project to build the component, and be valid when built, has been an unsuccessful journey so far.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.