<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Unable to launch application on Mac with subprocess.Popen (Python) in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881474#M13948</link>
    <description>&lt;P&gt;I found a related discussion:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/subprocess-run-unable-to-run-external-script/td-p/8003032" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;subprocess.run unable to run external script&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/561768"&gt;@marshaltu&lt;/a&gt;&amp;nbsp;could give us more information?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 30 Jun 2019 14:09:21 GMT</pubDate>
    <dc:creator>JeromeBriot</dc:creator>
    <dc:date>2019-06-30T14:09:21Z</dc:date>
    <item>
      <title>Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8876312#M13942</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a script that should launch some applications on Mac:&lt;/P&gt;&lt;PRE&gt;import subprocess
import os

fileName = '/Users/jeromebriot/Desktop/Body1.stl'

# Cura
apps = ('/Applications/Ultimaker Cura.app',
        '/Applications/Meshmixer.app',
        '/Applications/meshlab.app',
        '/Applications/PreForm.app',
        '/Applications/SlicerForFusion360.app')

exe = ('cura',
       'meshmixer',
       'meshlab',
       'PreForm',
       'SlicerForFusion360')

for i in range(0, len(apps)):

    fullPath = os.path.join(apps[i], 'Contents', 'MacOS', exe[i])

    if os.path.exists(fullPath):

       subprocess.Popen([fullPath, fileName])
#       subprocess.Popen(['open', apps[i]])

    else:
        print('{} not found.'.format(exe[i]))&lt;/PRE&gt;&lt;P&gt;The basic idea is to mimic the "Send to 3D utility" of the 3D print tool.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code works perfectly inside a terminal but it fails when run inside Spyder (and in&amp;nbsp;my add-in).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For some applications, I receive a message like "The app quit unexpectedly"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 12:09:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8876312#M13942</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-06-27T12:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8876560#M13943</link>
      <description>&lt;P&gt;Catching the exception, It looks like the return code for the faulty process &amp;nbsp;is always -6&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;import subprocess
import os

fileName = '/Users/jeromebriot/Desktop/Body1.stl'

# Cura
apps = ('/Applications/Ultimaker Cura.app',
        '/Applications/Meshmixer.app',
        '/Applications/meshlab.app',
        '/Applications/PreForm.app',
        '/Applications/SlicerForFusion360.app')

exe = ('cura',
       'meshmixer',
       'meshlab',
       'PreForm',
       'SlicerForFusion360')

for i in range(0, len(apps)):

    fullPath = os.path.join(apps[i], 'Contents', 'MacOS', exe[i])

    if os.path.exists(fullPath):

        try:

#           subprocess.Popen([fullPath, fileName])
            subprocess.run([fullPath, fileName], check=True)

#            subprocess.check_output([fullPath, fileName])
#           subprocess.Popen(['open', apps[i]])

        except subprocess.CalledProcessError as e:
            print(e.returncode)
            print(e.cmd)
            print(e.output)
            print(e.stderr)
            print(e.stdout)

    else:
        print('{} not found.'.format(exe[i]))&lt;/PRE&gt;&lt;P&gt;The code above returns:&lt;/P&gt;&lt;PRE&gt;-6
['/Applications/Ultimaker Cura.app/Contents/MacOS/cura', '/Users/jeromebriot/Desktop/Body1.stl']
None
None
None
-6
['/Applications/Meshmixer.app/Contents/MacOS/meshmixer', '/Users/jeromebriot/Desktop/Body1.stl']
None
None
None
-6
['/Applications/PreForm.app/Contents/MacOS/PreForm', '/Users/jeromebriot/Desktop/Body1.stl']
None
None
None&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jun 2019 13:19:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8876560#M13943</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-06-27T13:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8878488#M13944</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi Mr. JeromeBriot,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do you use the same &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;F360's Python&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt; in both cases or the terminal test was ran by an &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;external Python&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt; installation?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;MichaelT&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 06:50:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8878488#M13944</guid>
      <dc:creator>MichaelT_123</dc:creator>
      <dc:date>2019-06-28T06:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8880877#M13945</link>
      <description>&lt;P&gt;The code only works in an external terminal. Not inside Spyder (the one distributed with Fusion 360).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that I use the exact same version of Python in both cases (i.e. 3.5.3).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fusion-360-launch-app-mac.png" style="width: 762px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/652456i231E0CF1CD18D6E4/image-size/large?v=v2&amp;amp;px=999" role="button" title="fusion-360-launch-app-mac.png" alt="fusion-360-launch-app-mac.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jun 2019 14:03:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8880877#M13945</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-06-29T14:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881253#M13946</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi Mr. Jerome Briot,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Consider to implement the following code snippet:&lt;/P&gt;&lt;P&gt;###########################&lt;/P&gt;&lt;P&gt;&lt;EM&gt;def externalPackages ( packagesPath, add &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if ( add &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; #assume sys is imported&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#externalPackages = "C:\\Users\\MichaelT\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\site-packages"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;isAdded = False&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;for pth in sys.path:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if (pth == packagesPath &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;isAdded = True&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;break&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if ( not isAdded &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;sys.path.append( packagesPath )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;return&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#Environmental variable PYTHON_PACKAGES&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;#packagesPath = "C:\\Users\\MichaelT\\AppData\\Local\\Programs\\Python\\Python35\\Lib\\site-packages"&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;packagesPath = os.environ.get( 'PYTHON_PACKAGES' )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if ( packagesPath == None &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;messageStr = 'There is no PYTHON_PACKAGES environment variable defined.\n'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;messageStr += ' import subprocess\n'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;messageStr += ' import importlib, inspect\n'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;messageStr += ' import time, datetime\n'&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;adsk.core.Application.get().userInterface.messageBox( messageStr )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;sys.exit(-1)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;###########################&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is a messy copy&amp;amp;paste, but you are a &lt;FONT color="#0000FF"&gt;&lt;EM&gt;&lt;STRONG&gt;smart man&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; so it will be not a problem for you to extract &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;the juice&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt;!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;MichaelT&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;PS.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;This is for Windows, Apple is a mystery for me, so there might be some other intricacies.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jun 2019 02:23:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881253#M13946</guid>
      <dc:creator>MichaelT_123</dc:creator>
      <dc:date>2019-06-30T02:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881448#M13947</link>
      <description>&lt;P&gt;Thank you&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2900239"&gt;@MichaelT_123&lt;/a&gt;. But I'm not sure to understand what you mean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I should have said that everything works perfectly on Windows. The issue only occurs on Mac.&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jun 2019 13:31:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881448#M13947</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-06-30T13:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881474#M13948</link>
      <description>&lt;P&gt;I found a related discussion:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/subprocess-run-unable-to-run-external-script/td-p/8003032" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;subprocess.run unable to run external script&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/561768"&gt;@marshaltu&lt;/a&gt;&amp;nbsp;could give us more information?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jun 2019 14:09:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881474#M13948</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-06-30T14:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881491#M13949</link>
      <description>&lt;P&gt;I installed Anaconda 4.2.0 (with Python 3.5.2) on my Mac (pyenv).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The code works when executed inside Spyder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Note that this is Spyder 3 and not the old customized Spyder 2 distributed with Fusion 360.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Jun 2019 14:52:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881491#M13949</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-06-30T14:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881839#M13950</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi Mr. Jerome Briot,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do use&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;Anaconda Python 3.5&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt; as the "&lt;EM&gt;&lt;FONT color="#339966"&gt;external helper"&lt;/FONT&gt;&lt;/EM&gt; as well. It is nice to hear that you overcome &lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;the hurdle&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;MichaelT&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;PS.&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&lt;STRONG&gt;Working with '&lt;FONT color="#000000"&gt;black boxes' &lt;/FONT&gt;of code is always a challenge, whether it is Python, F360, Apple, etc.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;EM&gt;&lt;STRONG&gt;In old days &lt;FONT color="#FFCC99"&gt;of punched cards&lt;/FONT&gt; one has been &lt;FONT color="#800080"&gt;The Master Of Even A Single Hole&lt;/FONT&gt; :).&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2019 02:26:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8881839#M13950</guid>
      <dc:creator>MichaelT_123</dc:creator>
      <dc:date>2019-07-01T02:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8882227#M13951</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/2900239"&gt;@MichaelT_123&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;It is nice to hear that you overcome &lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;the hurdle&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not exactly. I meant that the code works with Anaconda but it still doesn't work with Fusion 360.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So maybe the issue is due to the customized version of Spyder that is shipped with Fusion 360.&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2019 08:42:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8882227#M13951</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-07-01T08:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8882543#M13952</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Hi Mr. Jerome Briot,&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;... I &lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#FF0000"&gt;do not know&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt; how I came out with &lt;EM&gt;&lt;STRONG&gt;&lt;FONT color="#0000FF"&gt;a hardle&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/EM&gt; conclusion?&lt;/P&gt;&lt;P&gt;I&amp;nbsp; have looked once again at posts and it seems that the error comes from OS ( mind you, MacOS is a something I avoid at all costs &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; bbbrrr ) .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;WARNING: THIS IS ONLY RESULT OF MY EMPTY MIND SEARCHING!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The error code refers to qml:TableViewSection (place specific to MacOS where executable markers are listed/assembled)&lt;/P&gt;&lt;P&gt;It seems that the subprocess has a problem of finding this table/database, while external console is true OS compatible and execute a respective app. May be the explicit direction of subprocess to a proper place could bring a resolution?&lt;/P&gt;&lt;P&gt;Can you try something like&amp;nbsp;&lt;FONT color="#3366FF"&gt;&lt;EM&gt;&lt;STRONG&gt;cwd=qmlDir&lt;/STRONG&gt;&lt;/EM&gt;&lt;/FONT&gt; ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, can you call an app &lt;STRONG&gt;&lt;EM&gt;&lt;FONT color="#3366FF"&gt;in situ&amp;nbsp;&lt;/FONT&gt;&lt;/EM&gt;&lt;/STRONG&gt;in Unix way?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Regards&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;MichaelT&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jul 2019 11:55:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8882543#M13952</guid>
      <dc:creator>MichaelT_123</dc:creator>
      <dc:date>2019-07-01T11:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8943443#M13953</link>
      <description>&lt;P&gt;I don't know if this could be of any help for someone but here is the crash log when I try to launch Cura from my add-in:&lt;/P&gt;&lt;PRE&gt;Process:               cura [931]
Path:                  /Applications/Ultimaker Cura.app/Contents/MacOS/cura
Identifier:            cura
Version:               4.2 (4.2.1)
Code Type:             X86-64 (Native)
Parent Process:        Autodesk Fusion 360 [371]
Responsible:           cura [931]
User ID:               501

Date/Time:             2019-08-01 17:53:17.163 +0200
OS Version:            Mac OS X 10.14.5 (18F132)
Report Version:        12
Anonymous UUID:        D9CB48F7-E7B5-DA5A-D97D-7C0918AF0DF9

Sleep/Wake UUID:       EEB35CBC-11AC-45C0-B6EC-2767CEBAC564

Time Awake Since Boot: 5400 seconds
Time Since Wake:       1200 seconds

System Integrity Protection: enabled

Crashed Thread:        0

Exception Type:        EXC_CRASH (SIGABRT)
Exception Codes:       0x0000000000000000, 0x0000000000000000
Exception Note:        EXC_CORPSE_NOTIFY

Application Specific Information:
abort() called

Thread 0 Crashed:
0   libsystem_kernel.dylib        	0x00007fff693172c6 __pthread_kill + 10
1   libsystem_c.dylib             	0x00007fff69234d8a raise + 26
2   libsystem_platform.dylib      	0x00007fff693c7b5d _sigtramp + 29
3   ???                           	000000000000000000 0 + 0
4   libsystem_c.dylib             	0x00007fff692816a6 abort + 127
5   libQt5Core.5.dylib            	0x000000010b3c24b9 0x10b3ab000 + 95417
6   libQt5Core.5.dylib            	0x000000010b3c3d07 QMessageLogger::fatal(char const*, ...) const + 231
7   libQt5Gui.5.dylib             	0x000000010bc94a28 QGuiApplicationPrivate::createPlatformIntegration() + 5912
8   libQt5Gui.5.dylib             	0x000000010bc94a4b QGuiApplicationPrivate::createEventDispatcher() + 27
9   libQt5Core.5.dylib            	0x000000010b5ae999 QCoreApplicationPrivate::init() + 2073
10  libQt5Gui.5.dylib             	0x000000010bc905b0 QGuiApplicationPrivate::init() + 64
11  libQt5Widgets.5.dylib         	0x000000010c70768a QApplicationPrivate::init() + 26
12  PyQt5.QtWidgets.so            	0x000000010c1e719f init_type_QApplication(_sipSimpleWrapper*, _object*, _object*, _object**, _object**, _object**) + 175
13  sip.so                        	0x0000000104a671fd sipSimpleWrapper_init + 183
14  nl.ultimaker.cura             	0x0000000104225c3c 0x1041bb000 + 437308
15  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
16  nl.ultimaker.cura             	0x000000010428db50 PyEval_EvalFrameEx + 27536
17  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
18  nl.ultimaker.cura             	0x0000000104286f9e PyEval_EvalCodeEx + 78
19  nl.ultimaker.cura             	0x00000001041f051d 0x1041bb000 + 218397
20  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
21  nl.ultimaker.cura             	0x000000010428db50 PyEval_EvalFrameEx + 27536
22  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
23  nl.ultimaker.cura             	0x0000000104286f9e PyEval_EvalCodeEx + 78
24  nl.ultimaker.cura             	0x00000001041f051d 0x1041bb000 + 218397
25  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
26  nl.ultimaker.cura             	0x00000001041dcbfd 0x1041bb000 + 138237
27  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
28  nl.ultimaker.cura             	0x0000000104225bae 0x1041bb000 + 437166
29  nl.ultimaker.cura             	0x0000000104222169 0x1041bb000 + 422249
30  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
31  nl.ultimaker.cura             	0x000000010428d056 PyEval_EvalFrameEx + 24726
32  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
33  nl.ultimaker.cura             	0x0000000104286f41 PyEval_EvalCode + 81
34  nl.ultimaker.cura             	0x00000001042aa166 PyImport_ExecCodeModuleObject + 390
35  nl.ultimaker.cura             	0x000000010431128d 0x1041bb000 + 1401485
36  nl.ultimaker.cura             	0x000000010420ff85 PyCFunction_Call + 165
37  nl.ultimaker.cura             	0x000000010428d3b0 PyEval_EvalFrameEx + 25584
38  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
39  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
40  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
41  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
42  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
43  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
44  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
45  nl.ultimaker.cura             	0x0000000104286f9e PyEval_EvalCodeEx + 78
46  nl.ultimaker.cura             	0x00000001041f051d 0x1041bb000 + 218397
47  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
48  nl.ultimaker.cura             	0x00000001041c7ae7 _PyObject_CallMethodIdObjArgs + 407
49  nl.ultimaker.cura             	0x00000001042ab14f PyImport_ImportModuleLevelObject + 2079
50  nl.ultimaker.cura             	0x0000000104283d57 0x1041bb000 + 822615
51  nl.ultimaker.cura             	0x000000010420ff1c PyCFunction_Call + 60
52  nl.ultimaker.cura             	0x000000010428d3b0 PyEval_EvalFrameEx + 25584
53  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
54  nl.ultimaker.cura             	0x0000000104286f41 PyEval_EvalCode + 81
55  nl.ultimaker.cura             	0x00000001042aa166 PyImport_ExecCodeModuleObject + 390
56  nl.ultimaker.cura             	0x000000010431128d 0x1041bb000 + 1401485
57  nl.ultimaker.cura             	0x000000010420ff85 PyCFunction_Call + 165
58  nl.ultimaker.cura             	0x000000010428d3b0 PyEval_EvalFrameEx + 25584
59  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
60  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
61  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
62  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
63  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
64  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
65  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
66  nl.ultimaker.cura             	0x0000000104286f9e PyEval_EvalCodeEx + 78
67  nl.ultimaker.cura             	0x00000001041f051d 0x1041bb000 + 218397
68  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
69  nl.ultimaker.cura             	0x00000001041c7ae7 _PyObject_CallMethodIdObjArgs + 407
70  nl.ultimaker.cura             	0x00000001042ab14f PyImport_ImportModuleLevelObject + 2079
71  nl.ultimaker.cura             	0x0000000104283d57 0x1041bb000 + 822615
72  nl.ultimaker.cura             	0x000000010420ff1c PyCFunction_Call + 60
73  nl.ultimaker.cura             	0x000000010428d3b0 PyEval_EvalFrameEx + 25584
74  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
75  nl.ultimaker.cura             	0x0000000104286f41 PyEval_EvalCode + 81
76  nl.ultimaker.cura             	0x00000001042aa166 PyImport_ExecCodeModuleObject + 390
77  nl.ultimaker.cura             	0x000000010431128d 0x1041bb000 + 1401485
78  nl.ultimaker.cura             	0x000000010420ff85 PyCFunction_Call + 165
79  nl.ultimaker.cura             	0x000000010428d3b0 PyEval_EvalFrameEx + 25584
80  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
81  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
82  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
83  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
84  nl.ultimaker.cura             	0x0000000104292392 0x1041bb000 + 881554
85  nl.ultimaker.cura             	0x000000010428ccff PyEval_EvalFrameEx + 23871
86  nl.ultimaker.cura             	0x0000000104291ba2 0x1041bb000 + 879522
87  nl.ultimaker.cura             	0x0000000104286f9e PyEval_EvalCodeEx + 78
88  nl.ultimaker.cura             	0x00000001041f051d 0x1041bb000 + 218397
89  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
90  nl.ultimaker.cura             	0x00000001041c7ae7 _PyObject_CallMethodIdObjArgs + 407
91  nl.ultimaker.cura             	0x00000001042ab14f PyImport_ImportModuleLevelObject + 2079
92  nl.ultimaker.cura             	0x0000000104283d57 0x1041bb000 + 822615
93  nl.ultimaker.cura             	0x000000010420ff1c PyCFunction_Call + 60
94  nl.ultimaker.cura             	0x00000001041c6eb5 PyObject_Call + 101
95  nl.ultimaker.cura             	0x00000001041c7036 PyObject_CallFunction + 246
96  nl.ultimaker.cura             	0x00000001042aa81d PyImport_Import + 429
97  nl.ultimaker.cura             	0x00000001041bbef5 main + 837
98  libdyld.dylib                 	0x00007fff691dc3d5 start + 1

Thread 1:
0   libsystem_kernel.dylib        	0x00007fff6931486a __psynch_cvwait + 10
1   libopenblasp-r0.3.5.dylib     	0x000000010547517b blas_thread_server + 235
2   libsystem_pthread.dylib       	0x00007fff693d02eb _pthread_body + 126
3   libsystem_pthread.dylib       	0x00007fff693d3249 _pthread_start + 66
4   libsystem_pthread.dylib       	0x00007fff693cf40d thread_start + 13

Thread 2:
0   libsystem_pthread.dylib       	0x00007fff693cf3f0 start_wqthread + 0
1   ???                           	0x00007fe7ec200000 0 + 140634075693056

Thread 3:
0   libsystem_pthread.dylib       	0x00007fff693cf3f0 start_wqthread + 0
1   ???                           	0x0000000054485244 0 + 1414025796

Thread 0 crashed with X86 Thread State (64-bit):
  rax: 0x0000000000000000  rbx: 0x00000001051085c0  rcx: 0x000000010447ca48  rdx: 0x0000000000000000
  rdi: 0x0000000000000307  rsi: 0x0000000000000006  rbp: 0x000000010447ca80  rsp: 0x000000010447ca48
   r8: 0x000000010447cf48   r9: 0x80013e052cc8f2e0  r10: 0x000000010510866c  r11: 0x0000000000000206
  r12: 0x0000000000000307  r13: 0x00007fe7ebe75260  r14: 0x0000000000000006  r15: 0x000000000000002d
  rip: 0x00007fff693172c6  rfl: 0x0000000000000206  cr2: 0x000000010447cf48
  
Logical CPU:     0
Error Code:      0x02000148
Trap Number:     133


Binary Images:
       0x1041bb000 -        0x104362ff7 +nl.ultimaker.cura (4.2 - 4.2.1) &amp;lt;C560C6DF-CAC0-3EB5-86FF-763A101636B3&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/cura
       0x10447d000 -        0x104480fff +zlib.cpython-35-darwin.so (0) &amp;lt;CEB24BF6-AA3D-3519-B872-6A6CC459CC70&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/zlib.cpython-35-darwin.so
       0x104485000 -        0x104499ff7 +libz.1.dylib (0) &amp;lt;785F9AF3-0FA4-343E-949E-CBEE4F54E539&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libz.1.dylib
       0x104542000 -        0x104542fff +_heapq.cpython-35-darwin.so (0) &amp;lt;CF5932EB-DAF8-33F4-BCA9-1DC6028197CB&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_heapq.cpython-35-darwin.so
       0x104546000 -        0x10454affb +_struct.cpython-35-darwin.so (0) &amp;lt;0B01E0E3-0594-3AB1-9C6F-61CA528FDA0A&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_struct.cpython-35-darwin.so
       0x104574000 -        0x104578ff7 +math.cpython-35-darwin.so (0) &amp;lt;0B0140C0-2AAC-3531-AD7C-F7B812105556&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/math.cpython-35-darwin.so
       0x10457f000 -        0x10458aff7 +_datetime.cpython-35-darwin.so (0) &amp;lt;F429AABA-0F17-3D49-957D-99DE64123575&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_datetime.cpython-35-darwin.so
       0x1045f6000 -        0x1045f6ffb +grp.cpython-35-darwin.so (0) &amp;lt;315E8042-9063-3C5E-9B06-2566C12BABF9&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/grp.cpython-35-darwin.so
       0x1045f9000 -        0x1045faffb +_bz2.cpython-35-darwin.so (0) &amp;lt;785A8E2D-5985-35D9-A657-5366860D1F13&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_bz2.cpython-35-darwin.so
       0x1045fe000 -        0x104601fff +_lzma.cpython-35-darwin.so (0) &amp;lt;C36344AB-BA30-3CA2-9D69-0F15644666AB&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_lzma.cpython-35-darwin.so
       0x104607000 -        0x104626ff3 +liblzma.5.dylib (0) &amp;lt;75C56960-6BD8-337F-AC86-EAC40D0FDB70&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/liblzma.5.dylib
       0x10463a000 -        0x10463cffb +_hashlib.cpython-35-darwin.so (0) &amp;lt;F8DAF286-0A6A-36E3-BF6A-495DD4A2399C&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_hashlib.cpython-35-darwin.so
       0x104641000 -        0x104684fff +libssl.1.0.0.dylib (0) &amp;lt;5D4CA0A6-3EB9-325B-887A-26746767A7EF&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libssl.1.0.0.dylib
       0x1046a4000 -        0x104861927 +libcrypto.1.0.0.dylib (0) &amp;lt;42B31BC1-6811-3461-BCD2-AEB18F0F2F64&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libcrypto.1.0.0.dylib
       0x1048e1000 -        0x1048e2fff +_random.cpython-35-darwin.so (0) &amp;lt;F820303A-4121-3BC3-8EF4-C9D3A7E02563&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_random.cpython-35-darwin.so
       0x1048e5000 -        0x1048e5ffb +_opcode.cpython-35-darwin.so (0) &amp;lt;4C893ED5-3F93-3D8C-B7EF-7DFA01ECC4E3&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_opcode.cpython-35-darwin.so
       0x1048e8000 -        0x1049d2fff +Arcus.so (0) &amp;lt;E54CB07C-EC9F-38ED-86C5-95D1AE032BE4&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/Arcus.so
       0x104a64000 -        0x104a77fff +sip.so (0) &amp;lt;5155672D-D6BD-3267-9808-F4A9C757D231&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/sip.so
       0x104a82000 -        0x104ab6ff7 +Savitar.so (0) &amp;lt;A9668CDD-328F-3BD3-8ADD-2D2E6FFE7601&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/Savitar.so
       0x104b35000 -        0x104cabff3 +multiarray.cpython-35-darwin.so (0) &amp;lt;74E8E54C-A9CA-3385-A5E0-63574CBE9BE6&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/core/multiarray.cpython-35-darwin.so
       0x104d83000 -        0x104fb4fef +libgfortran.5.dylib (0) &amp;lt;7A3F3AFE-D02C-3A88-91CA-CEFF5B0740EB&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libgfortran.5.dylib
       0x105041000 -        0x105056fef +libgcc_s.1.dylib (1) &amp;lt;2F068636-B3CC-3D99-B93D-E862197BC7AE&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libgcc_s.1.dylib
       0x105066000 -        0x1050d06ef  dyld (655.1.1) &amp;lt;CE635DB2-D47E-3C05-A0A3-6BD982E7E750&amp;gt; /usr/lib/dyld
       0x105131000 -        0x108993667 +libopenblasp-r0.3.5.dylib (0) &amp;lt;45CF9676-2A85-3294-8B45-8FA7F09C9439&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libopenblasp-r0.3.5.dylib
       0x108c6d000 -        0x108ca5fff +libquadmath.0.dylib (0) &amp;lt;E5A7047C-6353-38E3-8669-A2503D7D6AD9&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libquadmath.0.dylib
       0x10acb8000 -        0x10adecffb +umath.cpython-35-darwin.so (0) &amp;lt;8AD069A3-CD85-3784-A5FC-BEEA65B545C1&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/core/umath.cpython-35-darwin.so
       0x10ae33000 -        0x10ae43fff +_ctypes.cpython-35-darwin.so (0) &amp;lt;E20340D8-CDFE-3083-B3C0-940C5DC75574&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_ctypes.cpython-35-darwin.so
       0x10ae55000 -        0x10ae66ff7 +_pickle.cpython-35-darwin.so (0) &amp;lt;80600807-9F66-3A90-AC4F-7F87E1760DA1&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_pickle.cpython-35-darwin.so
       0x10af33000 -        0x10af34ff3 +lapack_lite.cpython-35-darwin.so (0) &amp;lt;79B35469-34FE-3FF0-B50E-A458314A1586&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/linalg/lapack_lite.cpython-35-darwin.so
       0x10af38000 -        0x10af50fff +_umath_linalg.cpython-35-darwin.so (0) &amp;lt;FCF7DCFA-9F5A-329A-9828-9834935699F9&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/linalg/_umath_linalg.cpython-35-darwin.so
       0x10af5e000 -        0x10afa4fff +_decimal.cpython-35-darwin.so (0) &amp;lt;8A524D3F-9043-31D3-8B57-05B427D2BD5B&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_decimal.cpython-35-darwin.so
       0x10afc2000 -        0x10afcfffb +_multiarray_tests.cpython-35-darwin.so (0) &amp;lt;147D3484-448E-3FA9-80AA-FE2D675234A9&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/core/_multiarray_tests.cpython-35-darwin.so
       0x10afde000 -        0x10afe7ffb +fftpack_lite.cpython-35-darwin.so (0) &amp;lt;80FA6343-4C18-3D6F-AF30-C3E8997121CC&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/fft/fftpack_lite.cpython-35-darwin.so
       0x10afeb000 -        0x10b085fff +mtrand.cpython-35-darwin.so (0) &amp;lt;83B23EA0-11BB-3EA9-A557-30B44B65F493&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/numpy/random/mtrand.cpython-35-darwin.so
       0x10b0ff000 -        0x10b246ff7 +PyQt5.QtCore.so (0) &amp;lt;EA00DF16-EA5B-3604-A62D-E0ACE724D2AD&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/PyQt5.QtCore.so
       0x10b3ab000 -        0x10b8aaff7 +libQt5Core.5.dylib (0) &amp;lt;BA0A785A-3CB7-39CD-B67C-2B040EC1223C&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libQt5Core.5.dylib
       0x10b972000 -        0x10bad9ff3 +PyQt5.QtGui.so (0) &amp;lt;CEC441EB-7891-365F-910B-F01EAB279FFF&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/PyQt5.QtGui.so
       0x10bc66000 -        0x10c0b3fe3 +libQt5Gui.5.dylib (0) &amp;lt;2FEC6D7F-90F2-3297-8E06-3F66002DE3CA&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libQt5Gui.5.dylib
       0x10c1c0000 -        0x10c41fff3 +PyQt5.QtWidgets.so (0) &amp;lt;230ABE45-F8B7-330E-99CC-0B5C9F1F1378&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/PyQt5.QtWidgets.so
       0x10c6fd000 -        0x10cb4fff7 +libQt5Widgets.5.dylib (0) &amp;lt;17DBD4E5-4D2D-34A3-8390-A50433E952B5&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libQt5Widgets.5.dylib
       0x10ccc4000 -        0x10cd0bff3 +PyQt5.QtQml.so (0) &amp;lt;41E2419C-000C-378F-AB98-BE414A64A5C1&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/PyQt5.QtQml.so
       0x10cd8e000 -        0x10d0afff7 +libQt5Qml.5.dylib (0) &amp;lt;D4C6B6F8-1236-30E5-BC26-1B4306442BC5&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libQt5Qml.5.dylib
       0x10d168000 -        0x10d275ff7 +libQt5Network.5.dylib (0) &amp;lt;E87812D8-D5D1-361D-874F-ED5037D79229&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libQt5Network.5.dylib
       0x10d2c2000 -        0x10d31eff3 +PyQt5.QtNetwork.so (0) &amp;lt;54E5FF08-47C9-34F4-B617-5F491FCD8D21&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/PyQt5.QtNetwork.so
       0x10d38f000 -        0x10d394ff3 +_json.cpython-35-darwin.so (0) &amp;lt;D0EAC13E-9A3A-37BB-A9A6-081B61B2111C&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_json.cpython-35-darwin.so
       0x10d399000 -        0x10d39cff3 +binascii.cpython-35-darwin.so (0) &amp;lt;5D6B4D03-B02F-31DD-AF4B-D53EE28CC489&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/binascii.cpython-35-darwin.so
       0x10d3a0000 -        0x10d3aafff +_ccallback_c.cpython-35-darwin.so (0) &amp;lt;69B39979-75CE-38E5-8AC7-F556422A972F&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/_lib/_ccallback_c.cpython-35-darwin.so
       0x10d3c7000 -        0x10d743ff7 +_sparsetools.cpython-35-darwin.so (0) &amp;lt;150D7722-84C7-3F15-9089-50705FEC0A97&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/_sparsetools.cpython-35-darwin.so
       0x10d823000 -        0x10d823fff +_bisect.cpython-35-darwin.so (0) &amp;lt;8501752E-0327-3A13-A22F-73C7247CC3AC&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_bisect.cpython-35-darwin.so
       0x10d826000 -        0x10d88afff +_csparsetools.cpython-35-darwin.so (0) &amp;lt;EBBE6D4F-9AA4-3B3E-AF2B-D2E23EB12B8F&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/_csparsetools.cpython-35-darwin.so
       0x10d8a8000 -        0x10d8daff3 +_shortest_path.cpython-35-darwin.so (0) &amp;lt;6AD9D2A0-C763-3B47-AF85-0D53A64C1F9B&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/csgraph/_shortest_path.cpython-35-darwin.so
       0x10d8ed000 -        0x10d908fff +_tools.cpython-35-darwin.so (0) &amp;lt;37FB8E45-2B7A-33F8-B92C-6B54985A5D7E&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/csgraph/_tools.cpython-35-darwin.so
       0x10d918000 -        0x10d933fff +_traversal.cpython-35-darwin.so (0) &amp;lt;DE5EE673-DFD6-378D-98CE-C1024C400B83&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/csgraph/_traversal.cpython-35-darwin.so
       0x10d941000 -        0x10d960ffb +_min_spanning_tree.cpython-35-darwin.so (0) &amp;lt;2B36515C-D56F-3FC4-853D-EADB8C71A120&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/csgraph/_min_spanning_tree.cpython-35-darwin.so
       0x10d973000 -        0x10d9acff7 +_reordering.cpython-35-darwin.so (0) &amp;lt;06880C0D-AD11-329A-A3C5-4BA042BB7FD8&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/sparse/csgraph/_reordering.cpython-35-darwin.so
       0x10d9c7000 -        0x10da40fff +ckdtree.cpython-35-darwin.so (0) &amp;lt;0E02EBD0-948C-321C-A71C-03B9B179E080&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/spatial/ckdtree.cpython-35-darwin.so
       0x10da67000 -        0x10db2bff3 +qhull.cpython-35-darwin.so (0) &amp;lt;66118352-4F86-3B05-9B28-BF200EA79F54&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/spatial/qhull.cpython-35-darwin.so
       0x10db65000 -        0x10db6affb +messagestream.cpython-35-darwin.so (0) &amp;lt;DDA59D03-B551-39DA-85C7-85BE97B7FC45&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/_lib/messagestream.cpython-35-darwin.so
       0x10db71000 -        0x10db8fffb +_voronoi.cpython-35-darwin.so (0) &amp;lt;3BBEEF9E-FA29-3126-ACF6-AB1ECE4D0785&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/spatial/_voronoi.cpython-35-darwin.so
       0x10dba1000 -        0x10dbaffff +_distance_wrap.cpython-35-darwin.so (0) &amp;lt;B268ADDE-69E4-37A2-A504-FBFAFA5E48F5&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/spatial/_distance_wrap.cpython-35-darwin.so
       0x10dbb9000 -        0x10dbd7ffb +_hausdorff.cpython-35-darwin.so (0) &amp;lt;F2FFE0F3-5F24-3A18-9713-B7CE2CB6EA67&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/spatial/_hausdorff.cpython-35-darwin.so
       0x20dbe9000 -        0x20dc3dff7 +_fblas.cpython-35-darwin.so (0) &amp;lt;CBB518C5-49C3-3BA4-8486-DEE463E938BA&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/_fblas.cpython-35-darwin.so
       0x30dc75000 -        0x30dd44ff7 +_flapack.cpython-35-darwin.so (0) &amp;lt;2EDE31CE-C8B1-3152-980A-B0F3045F3EA4&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/_flapack.cpython-35-darwin.so
       0x40ddde000 -        0x40dde8ff7 +_flinalg.cpython-35-darwin.so (0) &amp;lt;CFAF2D49-23FE-301E-BF74-60510859947A&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/_flinalg.cpython-35-darwin.so
       0x40ddf0000 -        0x40de17fff +_solve_toeplitz.cpython-35-darwin.so (0) &amp;lt;55AA66EC-96F0-3244-BB4F-15B74D5B6A73&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/_solve_toeplitz.cpython-35-darwin.so
       0x40de2d000 -        0x40de67fff +_decomp_update.cpython-35-darwin.so (0) &amp;lt;B948AB8A-A389-3F0F-8DAF-16D4CBF67BAF&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/_decomp_update.cpython-35-darwin.so
       0x50de7c000 -        0x50dea5fff +cython_blas.cpython-35-darwin.so (0) &amp;lt;C930B93A-BEF4-353D-9CA7-90E0B0C2A6BA&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/cython_blas.cpython-35-darwin.so
       0x60dec2000 -        0x60df3aff7 +cython_lapack.cpython-35-darwin.so (0) &amp;lt;AE92A699-A3A2-38EF-90B6-FDDB5A17B204&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/linalg/cython_lapack.cpython-35-darwin.so
       0x70df97000 -        0x70e10bfef +_ufuncs.cpython-35-darwin.so (0) &amp;lt;5ACEBC77-D1E3-3F7B-8CB1-FAD956FE8789&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/special/_ufuncs.cpython-35-darwin.so
       0x70e181000 -        0x70e196fff +_ufuncs_cxx.cpython-35-darwin.so (0) &amp;lt;E710EA56-A165-3E92-9718-37706230CBB5&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/special/_ufuncs_cxx.cpython-35-darwin.so
       0x80e1a5000 -        0x80e260fef +specfun.cpython-35-darwin.so (0) &amp;lt;732E97A9-639A-3873-831C-C7B31CF26462&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/special/specfun.cpython-35-darwin.so
       0x80e283000 -        0x80e287ff3 +_comb.cpython-35-darwin.so (0) &amp;lt;159A1EA7-ECD6-3432-A9DF-D4C09D58E391&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/special/_comb.cpython-35-darwin.so
       0x80e28c000 -        0x80e299ff3 +_ellip_harm_2.cpython-35-darwin.so (0) &amp;lt;8DB443EE-E904-3446-91C0-F06BD7F79626&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/scipy/special/_ellip_harm_2.cpython-35-darwin.so
       0x80e2a3000 -        0x80e2a4fff +_posixsubprocess.cpython-35-darwin.so (0) &amp;lt;28B0BDE3-47AE-3A0E-8E7B-F2C9174CBF06&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_posixsubprocess.cpython-35-darwin.so
       0x80e2a8000 -        0x80e2aaff7 +select.cpython-35-darwin.so (0) &amp;lt;E37C9467-B2EF-377E-ADCB-8D910EE8A6F5&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/select.cpython-35-darwin.so
       0x80e2b0000 -        0x80e2b1ff7 +fcntl.cpython-35-darwin.so (0) &amp;lt;45FE8107-00B8-374E-9DD9-592089C4577B&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/fcntl.cpython-35-darwin.so
       0x80e2b5000 -        0x80e31cff3 +PyQt5.QtQuick.so (0) &amp;lt;090F056B-BB0D-3DB2-B8E0-6E03D0C82738&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/PyQt5.QtQuick.so
       0x80e3d5000 -        0x80e6a5ff7 +libQt5Quick.5.dylib (0) &amp;lt;22FFC65C-876E-388D-8E00-E8C4C46AA471&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libQt5Quick.5.dylib
       0x80e934000 -        0x80e93cfff +_socket.cpython-35-darwin.so (0) &amp;lt;F3375495-0FFE-304D-968F-2C5BB31DF070&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_socket.cpython-35-darwin.so
       0x80e948000 -        0x80e953ffb +_ssl.cpython-35-darwin.so (0) &amp;lt;D0A45E03-530D-3D8D-804F-4DA7FF6139A1&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_ssl.cpython-35-darwin.so
       0x80e962000 -        0x80ea2fffb +unicodedata.cpython-35-darwin.so (0) &amp;lt;D013E767-D570-37E3-9EF0-6FDD5118E52A&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/unicodedata.cpython-35-darwin.so
       0x80ea9d000 -        0x80ea9dff3 +_scproxy.cpython-35-darwin.so (0) &amp;lt;A23F4947-8696-371F-B7E8-CF571F53F18D&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/_scproxy.cpython-35-darwin.so
       0x80ead3000 -        0x80ead8fff +array.cpython-35-darwin.so (0) &amp;lt;D91AEFFA-A590-3877-B918-2689A6558444&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/array.cpython-35-darwin.so
       0x80eae2000 -        0x80eb00ff7 +libgeos_c.1.dylib (0) &amp;lt;65FEF1C8-7381-3F8B-B89F-6076808826D0&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/shapely/.dylibs/libgeos_c.1.dylib
       0x80eb13000 -        0x80ebd3ff3 +libgeos.3.7.0.dylib (0) &amp;lt;DBC48F04-C2DC-3BC2-8ADA-2FA3DA374705&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libgeos.3.7.0.dylib
       0x80ec76000 -        0x80ec92ff3 +_speedups.cpython-35-darwin.so (0) &amp;lt;9081CA1B-48C9-3A6B-B704-3E46B4D58F8A&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/lib/python3.5/shapely/speedups/_speedups.cpython-35-darwin.so
       0x80eca1000 -        0x80ecbfff7 +libgeos_c.1.dylib (0) &amp;lt;65FEF1C8-7381-3F8B-B89F-6076808826D0&amp;gt; /Applications/Ultimaker Cura.app/Contents/MacOS/libgeos_c.1.dylib
    0x7fff390ad000 -     0x7fff390b1fff  com.apple.agl (3.3.2 - AGL-3.3.2) &amp;lt;D1753A7C-4109-3778-BA57-9ED1BCED8EBC&amp;gt; /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x7fff3945c000 -     0x7fff3945cfff  com.apple.Accelerate (1.11 - Accelerate 1.11) &amp;lt;B2A0C739-1D41-3452-9D00-8C01ADA5DD99&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff39474000 -     0x7fff39d68fcb  com.apple.vImage (8.1 - ???) &amp;lt;B51A0BC2-012E-3D03-992F-091F2E076EB4&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
    0x7fff39d69000 -     0x7fff39f0ffeb  libBLAS.dylib (1243.200.4) &amp;lt;02059CCF-0B14-3BFA-9B74-B5685219682E&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
    0x7fff39f10000 -     0x7fff39f54ff7  libBNNS.dylib (38.250.1) &amp;lt;AB890F6F-0B7D-3EC5-8A0E-874EAA4D0731&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBNNS.dylib
    0x7fff39f55000 -     0x7fff3a30dff3  libLAPACK.dylib (1243.200.4) &amp;lt;2CD8E9C6-E489-38E1-8A08-42CBE87FAC77&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
    0x7fff3a30e000 -     0x7fff3a323ffb  libLinearAlgebra.dylib (1243.200.4) &amp;lt;E7507B69-EF24-39D6-9B35-4A66E833C3F8&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
    0x7fff3a324000 -     0x7fff3a329ff3  libQuadrature.dylib (3.200.2) &amp;lt;1BAE7E22-2862-379F-B334-A3756067730F&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libQuadrature.dylib
    0x7fff3a32a000 -     0x7fff3a3a6ff3  libSparse.dylib (79.200.5) &amp;lt;E78B33D3-672A-3C53-B512-D3DDB2E9AC8D&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparse.dylib
    0x7fff3a3a7000 -     0x7fff3a3b9ffb  libSparseBLAS.dylib (1243.200.4) &amp;lt;069BE0D3-FEDF-3848-81B7-B5D64F511EC6&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
    0x7fff3a3ba000 -     0x7fff3a55afef  libvDSP.dylib (671.250.4) &amp;lt;CA46FD92-D0CB-39B5-BD26-BEB3897D3154&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
    0x7fff3a55b000 -     0x7fff3a6cffdf  libvMisc.dylib (671.250.4) &amp;lt;32F2043A-9CBB-36F0-91C0-088D50C31BF1&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
    0x7fff3a6d0000 -     0x7fff3a6d0fff  com.apple.Accelerate.vecLib (3.11 - vecLib 3.11) &amp;lt;A83C1419-E651-3924-8A6D-FF7321C8AB90&amp;gt; /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff3a872000 -     0x7fff3b627ff3  com.apple.AppKit (6.9 - 1671.50.111) &amp;lt;933155DC-6404-3646-B6AE-087D34F611BE&amp;gt; /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff3b679000 -     0x7fff3b679fff  com.apple.ApplicationServices (50.1 - 50.1) &amp;lt;4A6ACC13-2623-36B8-A196-2300980803CD&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff3b67a000 -     0x7fff3b6e5fff  com.apple.ApplicationServices.ATS (377 - 453.11.2.2) &amp;lt;A258DA73-114B-3102-A056-4AAAD3CEB9DD&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
    0x7fff3b77e000 -     0x7fff3b895fff  libFontParser.dylib (228.6.2.3) &amp;lt;3602D55B-3B9E-3B3A-A814-08C1244A8AE4&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff3b896000 -     0x7fff3b8d8fff  libFontRegistry.dylib (228.12.2.3) &amp;lt;2A56347B-2809-3407-A8B4-2AB88E484062&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff3b9c9000 -     0x7fff3b9cdff3  com.apple.ColorSyncLegacy (4.13.0 - 1) &amp;lt;B53D557C-071F-3ED9-826A-847DEB465F62&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSyncLegacy.framework/Versions/A/ColorSyncLegacy
    0x7fff3ba68000 -     0x7fff3babaff7  com.apple.HIServices (1.22 - 628) &amp;lt;26A8B7C0-41CC-3DB4-99D7-BD922866DC77&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
    0x7fff3babb000 -     0x7fff3bacafff  com.apple.LangAnalysis (1.7.0 - 1.7.0) &amp;lt;F5617A2A-FEA6-3832-B5BA-C2111B98786F&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff3bacb000 -     0x7fff3bb14ff7  com.apple.print.framework.PrintCore (14.2 - 503.8) &amp;lt;57C2FE32-0E74-3079-B626-C2D52F2D2717&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
    0x7fff3bb15000 -     0x7fff3bb4eff7  com.apple.QD (3.12 - 407.2) &amp;lt;28C7D39F-59C9-3314-BECC-67045487229C&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
    0x7fff3bb4f000 -     0x7fff3bb5bfff  com.apple.speech.synthesis.framework (8.1.3 - 8.1.3) &amp;lt;80FA7439-EC77-3CEC-B5D1-5EFE9E503E11&amp;gt; /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff3bb5c000 -     0x7fff3bdd3ff7  com.apple.audio.toolbox.AudioToolbox (1.14 - 1.14) &amp;lt;EB71583C-58C9-3CF8-92F9-2D57B24BBD4F&amp;gt; /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff3bdd5000 -     0x7fff3bdd5fff  com.apple.audio.units.AudioUnit (1.14 - 1.14) &amp;lt;121176B6-7ABE-3AFB-A252-CCED694D98D4&amp;gt; /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff3c12d000 -     0x7fff3c4cefff  com.apple.CFNetwork (978.0.7 - 978.0.7) &amp;lt;9FDEFE50-BE1B-386E-8B3C-AEF251069E52&amp;gt; /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff3c4e3000 -     0x7fff3c4e3fff  com.apple.Carbon (158 - 158) &amp;lt;AC9E8C1E-2566-3C2C-8B6B-B5B4C9A1B8B7&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff3c4e4000 -     0x7fff3c4e7ffb  com.apple.CommonPanels (1.2.6 - 98) &amp;lt;1CD6D56D-8EC7-3528-8CBC-FC69533519B5&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
    0x7fff3c4e8000 -     0x7fff3c7deff7  com.apple.HIToolbox (2.1.1 - 918.5) &amp;lt;F7DA4F20-123B-30FB-9C27-5AB1746DEF63&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
    0x7fff3c7df000 -     0x7fff3c7e2ff3  com.apple.help (1.3.8 - 66) &amp;lt;A08517EB-8958-36C9-AEE0-1A8FEEACBE3F&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
    0x7fff3c7e3000 -     0x7fff3c7e8ff7  com.apple.ImageCapture (9.0 - 1534.2) &amp;lt;DB063E87-ED8F-3E4E-A7E2-A6B45FA73EF7&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
    0x7fff3c7e9000 -     0x7fff3c87eff3  com.apple.ink.framework (10.9 - 225) &amp;lt;7C7E9483-2E91-3DD3-B1E0-C238F42CA0DD&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
    0x7fff3c87f000 -     0x7fff3c897ff7  com.apple.openscripting (1.7 - 179.1) &amp;lt;9B8C1ECC-5864-3E21-9149-863E884EA25C&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
    0x7fff3c8b7000 -     0x7fff3c8b8ff7  com.apple.print.framework.Print (14.2 - 267.4) &amp;lt;A7A9D2A0-D4E0-35EF-A0F7-50521F707C33&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
    0x7fff3c8b9000 -     0x7fff3c8bbff7  com.apple.securityhi (9.0 - 55006) &amp;lt;05717F77-7A7B-37E6-AB3E-03F063E9095B&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
    0x7fff3c8bc000 -     0x7fff3c8c2ff7  com.apple.speech.recognition.framework (6.0.3 - 6.0.3) &amp;lt;3CC050FB-EBCB-3087-8EA5-F378C8F99217&amp;gt; /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
    0x7fff3c9f2000 -     0x7fff3cabeff7  com.apple.ColorSync (4.13.0 - 3340.7) &amp;lt;74B373AB-42C7-330D-A577-1C43BFA6024F&amp;gt; /System/Library/Frameworks/ColorSync.framework/Versions/A/ColorSync
    0x7fff3cc4a000 -     0x7fff3ccd0fff  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) &amp;lt;1E8E64E6-0E58-375A-97F7-07CB4EE181AC&amp;gt; /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff3cd34000 -     0x7fff3cd5effb  com.apple.CoreBluetooth (1.0 - 1) &amp;lt;F08FE8C0-DD18-37E0-B707-3EF704A73FD6&amp;gt; /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff3cd5f000 -     0x7fff3d0f1ff7  com.apple.CoreData (120 - 866.5) &amp;lt;E8EB8787-9802-315C-8DDB-A42DA5A78BB0&amp;gt; /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff3d0f2000 -     0x7fff3d1d9ff7  com.apple.CoreDisplay (101.3 - 109.19) &amp;lt;B00A19C2-4A6A-388C-8AD6-33A42D10D7F0&amp;gt; /System/Library/Frameworks/CoreDisplay.framework/Versions/A/CoreDisplay
    0x7fff3d1da000 -     0x7fff3d61eff7  com.apple.CoreFoundation (6.9 - 1575.12) &amp;lt;B1D65801-A477-3F70-B97F-C2B43ECFF4FE&amp;gt; /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff3d620000 -     0x7fff3dcccff7  com.apple.CoreGraphics (2.0 - 1260.2) &amp;lt;06B01A87-6CB4-3046-9D97-595BD8A9061A&amp;gt; /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff3dcce000 -     0x7fff3dfeefff  com.apple.CoreImage (14.4.0 - 750.0.140) &amp;lt;96FA4D1B-AC88-305C-8F4D-D7D44657B733&amp;gt; /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
    0x7fff3e44c000 -     0x7fff3e44cfff  com.apple.CoreServices (945 - 945) &amp;lt;E937BA69-19D5-3A30-B31E-8A6B94E9D9A0&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff3e44d000 -     0x7fff3e4c9ff7  com.apple.AE (773 - 773) &amp;lt;55AE7C9E-27C3-30E9-A047-3B92A6FD53B4&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
    0x7fff3e4ca000 -     0x7fff3e7a1fff  com.apple.CoreServices.CarbonCore (1178.32 - 1178.32) &amp;lt;52F5484E-94B1-37B7-B1AC-E210DF5721AE&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
    0x7fff3e7a2000 -     0x7fff3e7eaff7  com.apple.DictionaryServices (1.2 - 284.16.4) &amp;lt;C3D15FD1-759B-3815-8128-42D8220BC459&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
    0x7fff3e7eb000 -     0x7fff3e7f3ffb  com.apple.CoreServices.FSEvents (1239.200.12 - 1239.200.12) &amp;lt;8406D379-8D33-3611-861B-7ABD26DB50D2&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
    0x7fff3e7f4000 -     0x7fff3e9a6fff  com.apple.LaunchServices (945 - 945) &amp;lt;05FA145B-75AA-3AE6-BB82-F156B29F4FF1&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
    0x7fff3e9a7000 -     0x7fff3ea45ff7  com.apple.Metadata (10.7.0 - 1191.57) &amp;lt;BFFAED00-2560-318A-BB8F-4E7E5123EC61&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
    0x7fff3ea46000 -     0x7fff3ea90ff7  com.apple.CoreServices.OSServices (945 - 945) &amp;lt;119C5548-59C3-3F94-B23F-8AF02CA10EAA&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
    0x7fff3ea91000 -     0x7fff3eaf8ff7  com.apple.SearchKit (1.4.0 - 1.4.0) &amp;lt;DA08AA6F-A6F1-36C0-87F4-E26294E51A3A&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
    0x7fff3eaf9000 -     0x7fff3eb1aff3  com.apple.coreservices.SharedFileList (71.28 - 71.28) &amp;lt;487A8464-729E-305A-B5D1-E3FE8EB9CFC5&amp;gt; /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
    0x7fff3ee25000 -     0x7fff3ef87ff3  com.apple.CoreText (352.0 - 584.26.3.2) &amp;lt;A99FD623-7F6E-3C77-8241-E98F664EC039&amp;gt; /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff3ef88000 -     0x7fff3efc7fff  com.apple.CoreVideo (1.8 - 0.0) &amp;lt;1AD23C58-E68E-329B-A1FA-6BF7DD577687&amp;gt; /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff3efc8000 -     0x7fff3f057fff  com.apple.framework.CoreWLAN (13.0 - 1375.2) &amp;lt;F2EA31D8-53BF-32E8-B537-64B4F2BF4B6E&amp;gt; /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x7fff3f2ae000 -     0x7fff3f2b3ffb  com.apple.DiskArbitration (2.7 - 2.7) &amp;lt;F481F2C0-884E-3265-8111-ABBEC93F0920&amp;gt; /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff3f479000 -     0x7fff3f826fff  com.apple.Foundation (6.9 - 1575.12) &amp;lt;AD258ED7-64AE-367C-AE5F-48D45089D9F2&amp;gt; /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff3f895000 -     0x7fff3f8c4ffb  com.apple.GSS (4.0 - 2.0) &amp;lt;E41430E5-713B-3E53-BF7E-A3991A881B62&amp;gt; /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x7fff3f9c4000 -     0x7fff3facefff  com.apple.Bluetooth (6.0.12 - 6.0.12f1) &amp;lt;58A607F0-A818-3535-A7BD-858D5BB0A807&amp;gt; /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x7fff3fb30000 -     0x7fff3fbbffff  com.apple.framework.IOKit (2.0.2 - 1483.260.4) &amp;lt;CCA92450-8808-37EC-B68E-2C2846B086CE&amp;gt; /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff3fbc1000 -     0x7fff3fbd0ffb  com.apple.IOSurface (255.5.4 - 255.5.4) &amp;lt;83F58E47-0D06-3E78-9D19-D38D3205464B&amp;gt; /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff3fc24000 -     0x7fff3fdb2fff  com.apple.ImageIO.framework (3.3.0 - 1850.2) &amp;lt;DC226D07-C52D-3440-9027-D3EA33DD99B2&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff3fdb3000 -     0x7fff3fdb7ffb  libGIF.dylib (1850.2) &amp;lt;F5D1AA0A-4EB4-37C0-89AA-C71FB53405F2&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff3fdb8000 -     0x7fff3fe95ff7  libJP2.dylib (1850.2) &amp;lt;2DE256E2-FA27-38A3-BFDF-5C1E0A135BCB&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x7fff3fe96000 -     0x7fff3febbfff  libJPEG.dylib (1850.2) &amp;lt;16A9719C-DB6E-37EE-B62F-DD81A822160A&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff4017f000 -     0x7fff401a5ff7  libPng.dylib (1850.2) &amp;lt;EFB3874A-3ABB-3EC7-8708-0110ECFFE169&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff401a6000 -     0x7fff401a8ffb  libRadiance.dylib (1850.2) &amp;lt;19C26767-DE6D-3DE9-B5ED-F6BF148FBDBC&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff401a9000 -     0x7fff401f6ffb  libTIFF.dylib (1850.2) &amp;lt;527F8740-9B75-39D6-AFD9-519817724B5D&amp;gt; /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff4136d000 -     0x7fff41386fff  com.apple.Kerberos (3.0 - 1) &amp;lt;DB1E0679-37E1-3B93-9789-32F63D660C3B&amp;gt; /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff41da2000 -     0x7fff41e4aff7  com.apple.Metal (161.9.16 - 161.9.16) &amp;lt;A93AA7FC-B72A-3CBF-9932-81DDDFA1DFCD&amp;gt; /System/Library/Frameworks/Metal.framework/Versions/A/Metal
    0x7fff41e66000 -     0x7fff41e85ff7  com.apple.MetalPerformanceShaders.MPSCore (1.0 - 1) &amp;lt;EE85B6D5-5C12-3CE8-8C33-54A203EDC76E&amp;gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/Versions/A/MPSCore
    0x7fff41e86000 -     0x7fff41f02fe7  com.apple.MetalPerformanceShaders.MPSImage (1.0 - 1) &amp;lt;5A78F2DC-9D2B-37BA-B21F-ECFFCC6F7720&amp;gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/Versions/A/MPSImage
    0x7fff41f03000 -     0x7fff41f2afff  com.apple.MetalPerformanceShaders.MPSMatrix (1.0 - 1) &amp;lt;096DB3E6-7DDF-3B47-857A-46A203642ACF&amp;gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/Versions/A/MPSMatrix
    0x7fff41f2b000 -     0x7fff42056ff7  com.apple.MetalPerformanceShaders.MPSNeuralNetwork (1.0 - 1) &amp;lt;D2128338-F1E8-3BEE-A729-AC13A524DD78&amp;gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/Versions/A/MPSNeuralNetwork
    0x7fff42057000 -     0x7fff42071fff  com.apple.MetalPerformanceShaders.MPSRayIntersector (1.0 - 1) &amp;lt;ADA5A93C-F79E-3931-840D-48C6B6B305EA&amp;gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/Versions/A/MPSRayIntersector
    0x7fff42072000 -     0x7fff42073ff7  com.apple.MetalPerformanceShaders.MetalPerformanceShaders (1.0 - 1) &amp;lt;515A92B3-A23B-3AC2-8D1B-85B248595B76&amp;gt; /System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/MetalPerformanceShaders
    0x7fff42e6a000 -     0x7fff42e76ff7  com.apple.NetFS (6.0 - 4.0) &amp;lt;E917806F-0607-3292-B2D6-A15404D61B99&amp;gt; /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff45914000 -     0x7fff4596bff7  com.apple.opencl (2.15.3 - 2.15.3) &amp;lt;AA9CE8F7-DB7C-35A5-A019-2207D1BBFF38&amp;gt; /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff4596c000 -     0x7fff45987ff7  com.apple.CFOpenDirectory (10.14 - 207.200.4) &amp;lt;F03D84EB-49B2-3A00-9127-B9A269824026&amp;gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x7fff45988000 -     0x7fff45993ffb  com.apple.OpenDirectory (10.14 - 207.200.4) &amp;lt;A8020CEE-5B78-3581-A735-EA2833683F31&amp;gt; /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff462e3000 -     0x7fff462e5fff  libCVMSPluginSupport.dylib (17.7.2) &amp;lt;247121BB-626C-318E-B24E-3D436E752DF7&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
    0x7fff462e6000 -     0x7fff462ebff3  libCoreFSCache.dylib (166.2) &amp;lt;222C2A4F-7E32-30F6-8459-2FAB98073A3D&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x7fff462ec000 -     0x7fff462f0fff  libCoreVMClient.dylib (166.2) &amp;lt;6789ECD4-91DD-32EF-A1FD-F27D2344CD8B&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff462f1000 -     0x7fff462f9ff7  libGFXShared.dylib (17.7.2) &amp;lt;B75A6E93-E5BE-32A8-8D46-00D8E909DFD3&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x7fff462fa000 -     0x7fff46305fff  libGL.dylib (17.7.2) &amp;lt;E88FF023-7E15-3E95-88FD-6C415550F769&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff46306000 -     0x7fff46340fe7  libGLImage.dylib (17.7.2) &amp;lt;B4C140F3-AF8C-30C8-A03E-B16A20BB05A7&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x7fff464b4000 -     0x7fff464f2fff  libGLU.dylib (17.7.2) &amp;lt;EA69FA36-3F20-337C-A6B3-EC49DC2F12F5&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff46e8f000 -     0x7fff46e9effb  com.apple.opengl (17.7.2 - 17.7.2) &amp;lt;8EFFA6F9-ABE8-3131-9D3F-37E9796DDF34&amp;gt; /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff47ca1000 -     0x7fff47ef7fff  com.apple.QuartzCore (1.11 - 699.27.4.1) &amp;lt;BB3BBD58-84DF-3849-B4ED-5FF8DA4015B8&amp;gt; /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff4872c000 -     0x7fff48a2bfff  com.apple.security (7.0 - 58286.260.20) &amp;lt;59B4100E-5A31-3EF4-954A-2A69341995F3&amp;gt; /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff48a2c000 -     0x7fff48ab8fff  com.apple.securityfoundation (6.0 - 55185.260.1) &amp;lt;DB8EB672-5D3A-3082-A62E-4D75C81D94A4&amp;gt; /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff48aea000 -     0x7fff48aeefff  com.apple.xpc.ServiceManagement (1.0 - 1) &amp;lt;4AD0F8EE-884C-3FA7-85D9-27F201BC3C64&amp;gt; /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x7fff48e86000 -     0x7fff48ef3fff  com.apple.SystemConfiguration (1.17 - 1.17) &amp;lt;1562078D-3251-31B2-B9C6-2667C567F883&amp;gt; /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x7fff4c172000 -     0x7fff4c217feb  com.apple.APFS (1.0 - 1) &amp;lt;C001DCC2-32BE-327A-AE03-281885BD93BF&amp;gt; /System/Library/PrivateFrameworks/APFS.framework/Versions/A/APFS
    0x7fff4cc29000 -     0x7fff4cc2aff7  com.apple.AggregateDictionary (1.0 - 1) &amp;lt;A6AF8AC4-1F25-37C4-9157-A02E9C200926&amp;gt; /System/Library/PrivateFrameworks/AggregateDictionary.framework/Versions/A/AggregateDictionary
    0x7fff4d228000 -     0x7fff4d254ff7  com.apple.framework.Apple80211 (13.0 - 1380.2) &amp;lt;3850E3A9-E00A-374E-87EA-AB01E503E769&amp;gt; /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff4d37c000 -     0x7fff4d38bfc7  com.apple.AppleFSCompression (96.200.3 - 1.0) &amp;lt;3CF60CE8-976E-3CB8-959D-DD0948C1C2DE&amp;gt; /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
    0x7fff4d487000 -     0x7fff4d492fff  com.apple.AppleIDAuthSupport (1.0 - 1) &amp;lt;2E9D1398-DBE6-328B-ADDA-20FA5FAD7405&amp;gt; /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/Versions/A/AppleIDAuthSupport
    0x7fff4d4d3000 -     0x7fff4d51cff3  com.apple.AppleJPEG (1.0 - 1) &amp;lt;4C1F426B-7D77-3980-9633-7DBD8C666B9A&amp;gt; /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
    0x7fff4d770000 -     0x7fff4d792fff  com.apple.applesauce (1.0 - ???) &amp;lt;F49107C7-3C51-3024-8EF1-C57643BE4F3B&amp;gt; /System/Library/PrivateFrameworks/AppleSauce.framework/Versions/A/AppleSauce
    0x7fff4d8f1000 -     0x7fff4d905ffb  com.apple.AssertionServices (1.0 - 1) &amp;lt;11FC4241-6069-3B3A-9BCE-9B68F3A4D2AB&amp;gt; /System/Library/PrivateFrameworks/AssertionServices.framework/Versions/A/AssertionServices
    0x7fff4dcd4000 -     0x7fff4ddc0ff7  com.apple.AuthKit (1.0 - 1) &amp;lt;34496FD5-4BAB-3DF3-BF7F-70F38C66848D&amp;gt; /System/Library/PrivateFrameworks/AuthKit.framework/Versions/A/AuthKit
    0x7fff4df82000 -     0x7fff4df8afff  com.apple.coreservices.BackgroundTaskManagement (1.0 - 57.1) &amp;lt;2A396FC0-7B79-3088-9A82-FB93C1181A57&amp;gt; /System/Library/PrivateFrameworks/BackgroundTaskManagement.framework/Versions/A/BackgroundTaskManagement
    0x7fff4df8b000 -     0x7fff4e020fff  com.apple.backup.framework (1.10.5 - ???) &amp;lt;BAFC1D7F-9D75-3C45-AAD4-569D13E445C5&amp;gt; /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff4e021000 -     0x7fff4e08eff3  com.apple.BaseBoard (360.28 - 360.28) &amp;lt;DBE27FB4-3FFD-3E9A-846C-F6E7D797286A&amp;gt; /System/Library/PrivateFrameworks/BaseBoard.framework/Versions/A/BaseBoard
    0x7fff4fcf8000 -     0x7fff4fd01ffb  com.apple.CommonAuth (4.0 - 2.0) &amp;lt;81C987FD-69EB-344B-94D9-B9D93624D257&amp;gt; /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x7fff509d9000 -     0x7fff509eaff7  com.apple.CoreEmoji (1.0 - 69.19.9) &amp;lt;228457B3-E191-356E-9A5B-3C0438D05FBA&amp;gt; /System/Library/PrivateFrameworks/CoreEmoji.framework/Versions/A/CoreEmoji
    0x7fff50f93000 -     0x7fff50ff9ff7  com.apple.CoreNLP (1.0 - 130.15.22) &amp;lt;27877820-17D0-3B02-8557-4014E876CCC7&amp;gt; /System/Library/PrivateFrameworks/CoreNLP.framework/Versions/A/CoreNLP
    0x7fff512a6000 -     0x7fff512aeff7  com.apple.CorePhoneNumbers (1.0 - 1) &amp;lt;7A826DA2-4725-39D8-AF27-6F034DC53C4E&amp;gt; /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/Versions/A/CorePhoneNumbers
    0x7fff5142a000 -     0x7fff5145bff3  com.apple.CoreServicesInternal (358 - 358) &amp;lt;DD6EF60D-048F-3186-83DA-EB191EDF48AE&amp;gt; /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
    0x7fff51822000 -     0x7fff518a6fff  com.apple.CoreSymbolication (10.2 - 64490.25.1) &amp;lt;28B2FF2D-3FDE-3A20-B343-341E5BD4E22F&amp;gt; /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
    0x7fff51936000 -     0x7fff51a61ff7  com.apple.coreui (2.1 - 499.10) &amp;lt;105F61F3-D0AE-332B-A485-8615187BB409&amp;gt; /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff51a62000 -     0x7fff51c00fff  com.apple.CoreUtils (5.8 - 580.19) &amp;lt;CF9C5677-4946-3328-8CE3-C70F2E8599D8&amp;gt; /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff51c54000 -     0x7fff51cb7ff7  com.apple.framework.CoreWiFi (13.0 - 1375.2) &amp;lt;77E078A7-A34F-333B-B50F-8829537D6E9D&amp;gt; /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff51cb8000 -     0x7fff51cc9ff7  com.apple.CrashReporterSupport (10.13 - 938.25) &amp;lt;C7665EC7-9389-3717-B152-A59D7872C63C&amp;gt; /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
    0x7fff51d59000 -     0x7fff51d68fff  com.apple.framework.DFRFoundation (1.0 - 211.1) &amp;lt;E3F02F2A-2059-39CC-85DA-969676EB88EB&amp;gt; /System/Library/PrivateFrameworks/DFRFoundation.framework/Versions/A/DFRFoundation
    0x7fff51d69000 -     0x7fff51d6dfff  com.apple.DSExternalDisplay (3.1 - 380) &amp;lt;645C719D-05D4-3CD7-84D7-4C5218859E0C&amp;gt; /System/Library/PrivateFrameworks/DSExternalDisplay.framework/Versions/A/DSExternalDisplay
    0x7fff51dee000 -     0x7fff51e63ff3  com.apple.datadetectorscore (7.0 - 590.24) &amp;lt;72F0CBF1-D3E9-36C5-B877-F42E1EC59A0E&amp;gt; /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
    0x7fff51eaf000 -     0x7fff51eecff7  com.apple.DebugSymbols (190 - 190) &amp;lt;6F4FAACA-E06B-38AD-A0C2-14EA5408A231&amp;gt; /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x7fff51eed000 -     0x7fff52028ff7  com.apple.desktopservices (1.13.5 - ???) &amp;lt;4AF2E011-2CB0-3588-83CB-882ADDA78CAD&amp;gt; /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
    0x7fff52f65000 -     0x7fff53380fff  com.apple.vision.FaceCore (3.3.4 - 3.3.4) &amp;lt;A576E2DA-BF6F-3B18-8FEB-324E5C5FA9BD&amp;gt; /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff582d5000 -     0x7fff582dafff  com.apple.GPUWrangler (3.40.16 - 3.40.16) &amp;lt;B9D4F2DD-5D11-32FF-B5BE-29E137458728&amp;gt; /System/Library/PrivateFrameworks/GPUWrangler.framework/Versions/A/GPUWrangler
    0x7fff590e5000 -     0x7fff590f4fff  com.apple.GraphVisualizer (1.0 - 5) &amp;lt;48D020B7-5938-3FAE-B468-E291AEE2C06F&amp;gt; /System/Library/PrivateFrameworks/GraphVisualizer.framework/Versions/A/GraphVisualizer
    0x7fff59244000 -     0x7fff592b8ffb  com.apple.Heimdal (4.0 - 2.0) &amp;lt;5E8F6B79-960D-3030-B889-D29A4015D205&amp;gt; /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff5a5a7000 -     0x7fff5a5aeffb  com.apple.IOAccelerator (404.9 - 404.9) &amp;lt;F9C604B3-3DF7-3EE7-8A44-7877FAF2E6A4&amp;gt; /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff5a5b2000 -     0x7fff5a5cafff  com.apple.IOPresentment (1.0 - 42.6) &amp;lt;55CB91EF-90F1-3D0A-A59E-2F75CD2EB4AE&amp;gt; /System/Library/PrivateFrameworks/IOPresentment.framework/Versions/A/IOPresentment
    0x7fff5a972000 -     0x7fff5a99fff7  com.apple.IconServices (379 - 379) &amp;lt;7BAD562D-4FA3-3E11-863C-1EEBE2406D2C&amp;gt; /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff5ac33000 -     0x7fff5ac45ff3  com.apple.security.KeychainCircle.KeychainCircle (1.0 - 1) &amp;lt;5AAC527E-D197-39B2-A6C9-E0D0FB9CA9B9&amp;gt; /System/Library/PrivateFrameworks/KeychainCircle.framework/Versions/A/KeychainCircle
    0x7fff5ac60000 -     0x7fff5ad3bff7  com.apple.LanguageModeling (1.0 - 159.15.15) &amp;lt;3DE3CE61-542B-37B7-883E-4B9717CAC65F&amp;gt; /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
    0x7fff5ad3c000 -     0x7fff5ad78ff7  com.apple.Lexicon-framework (1.0 - 33.15.10) &amp;lt;4B5E843E-2809-3E70-9560-9254E2656419&amp;gt; /System/Library/PrivateFrameworks/Lexicon.framework/Versions/A/Lexicon
    0x7fff5ad7f000 -     0x7fff5ad84fff  com.apple.LinguisticData (1.0 - 238.25) &amp;lt;61910887-D5CE-3567-9A5F-6DFEC942EC1F&amp;gt; /System/Library/PrivateFrameworks/LinguisticData.framework/Versions/A/LinguisticData
    0x7fff5ba79000 -     0x7fff5baa1ff7  com.apple.spotlight.metadata.utilities (1.0 - 1191.57) &amp;lt;38BB1FB7-3336-384C-B71F-4D0D402EB606&amp;gt; /System/Library/PrivateFrameworks/MetadataUtilities.framework/Versions/A/MetadataUtilities
    0x7fff5baa2000 -     0x7fff5bb2fff7  com.apple.gpusw.MetalTools (1.0 - 1) &amp;lt;DBC4718E-F588-382D-A415-405D0028804D&amp;gt; /System/Library/PrivateFrameworks/MetalTools.framework/Versions/A/MetalTools
    0x7fff5bcdc000 -     0x7fff5bcf7ffb  com.apple.MobileKeyBag (2.0 - 1.0) &amp;lt;4678FECE-538B-381C-80F2-27AA4805F160&amp;gt; /System/Library/PrivateFrameworks/MobileKeyBag.framework/Versions/A/MobileKeyBag
    0x7fff5bd80000 -     0x7fff5bdaaffb  com.apple.MultitouchSupport.framework (2450.1 - 2450.1) &amp;lt;3BF81F33-89A8-3A2D-84B3-B343020B6D98&amp;gt; /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
    0x7fff5bfe6000 -     0x7fff5bff0fff  com.apple.NetAuth (6.2 - 6.2) &amp;lt;0D01BBE5-0269-310D-B148-D19DAE143DEB&amp;gt; /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x7fff5c851000 -     0x7fff5c8a2ff3  com.apple.OTSVG (1.0 - ???) &amp;lt;3976F8CC-1CFB-3E09-9009-FE985550565B&amp;gt; /System/Library/PrivateFrameworks/OTSVG.framework/Versions/A/OTSVG
    0x7fff5da27000 -     0x7fff5da36ff7  com.apple.PerformanceAnalysis (1.218.2 - 218.2) &amp;lt;65F3DB3E-6D4E-33A0-B510-EF768D323DAB&amp;gt; /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
    0x7fff5f8c6000 -     0x7fff5f8e4ff7  com.apple.ProtocolBuffer (1 - 263.2) &amp;lt;907D6C95-D050-31DE-99CA-16A5135BC6F9&amp;gt; /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer
    0x7fff5fa7c000 -     0x7fff5faccfff  com.apple.ROCKit (27.6 - 27.6) &amp;lt;756C2253-E8B1-3C48-9945-DE8D6AD24DE2&amp;gt; /System/Library/PrivateFrameworks/ROCKit.framework/Versions/A/ROCKit
    0x7fff5fc1f000 -     0x7fff5fc41fff  com.apple.RemoteViewServices (2.0 - 128) &amp;lt;8FB0E4EB-DCBB-32E6-94C6-AA9BA9EE4CAC&amp;gt; /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
    0x7fff61446000 -     0x7fff61564fff  com.apple.Sharing (1288.43 - 1288.43) &amp;lt;B9AB8C05-F2F2-371F-A9AF-1D139E2CE54C&amp;gt; /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff62375000 -     0x7fff62623ffb  com.apple.SkyLight (1.600.0 - 340.26) &amp;lt;CD2A7069-6CEA-3737-9E9D-7AE2FED912AB&amp;gt; /System/Library/PrivateFrameworks/SkyLight.framework/Versions/A/SkyLight
    0x7fff62dc5000 -     0x7fff62dd1fff  com.apple.SpeechRecognitionCore (5.0.21 - 5.0.21) &amp;lt;7A6A67DB-C813-328E-AAFB-D267A5B50B3D&amp;gt; /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
    0x7fff63522000 -     0x7fff635adfc7  com.apple.Symbolication (10.2 - 64490.38.1) &amp;lt;9FDCC98D-5B32-35AD-A9BF-94DF2B78507F&amp;gt; /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x7fff63a95000 -     0x7fff63aa1ffb  com.apple.TCC (1.0 - 1) &amp;lt;968ECAE1-FBB9-3478-BDCE-85E54B6C422D&amp;gt; /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff63d07000 -     0x7fff63dcfff3  com.apple.TextureIO (3.8.4 - 3.8.1) &amp;lt;7CEAC05A-D283-3D5A-B1E3-C849285FA0BF&amp;gt; /System/Library/PrivateFrameworks/TextureIO.framework/Versions/A/TextureIO
    0x7fff63e8c000 -     0x7fff64042ff7  com.apple.UIFoundation (1.0 - 551) &amp;lt;E9D17DAD-230D-390A-B117-3D100C5AF5F2&amp;gt; /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
    0x7fff6556e000 -     0x7fff65571fff  com.apple.dt.XCTTargetBootstrap (1.0 - 14490.66) &amp;lt;7AE3457F-AF40-3508-93FB-1D9E31EB1C9D&amp;gt; /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/Versions/A/XCTTargetBootstrap
    0x7fff65972000 -     0x7fff65974ffb  com.apple.loginsupport (1.0 - 1) &amp;lt;3F8D6334-BCD6-36C1-BA20-CC8503A84375&amp;gt; /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
    0x7fff65c3e000 -     0x7fff65c72fff  libCRFSuite.dylib (41.15.4) &amp;lt;406DAC06-0C77-3F90-878B-4D38F11F0256&amp;gt; /usr/lib/libCRFSuite.dylib
    0x7fff65c75000 -     0x7fff65c7fff7  libChineseTokenizer.dylib (28.15.3) &amp;lt;9B7F6109-3A5D-3641-9A7E-31D2239D73EE&amp;gt; /usr/lib/libChineseTokenizer.dylib
    0x7fff65d0d000 -     0x7fff65d0effb  libDiagnosticMessagesClient.dylib (107) &amp;lt;A14D0819-0970-34CD-8680-80E4D7FE8C2C&amp;gt; /usr/lib/libDiagnosticMessagesClient.dylib
    0x7fff65d45000 -     0x7fff65f9cff3  libFosl_dynamic.dylib (18.3.4) &amp;lt;45E50221-1A39-3AB3-8267-C1E4E39ECF83&amp;gt; /usr/lib/libFosl_dynamic.dylib
    0x7fff65fed000 -     0x7fff6600bfff  libMobileGestalt.dylib (645.260.6) &amp;lt;0232958E-1EF2-3627-B8FF-09C6522594C7&amp;gt; /usr/lib/libMobileGestalt.dylib
    0x7fff6600c000 -     0x7fff6600cfff  libOpenScriptingUtil.dylib (179.1) &amp;lt;4D603146-EDA5-3A74-9FF8-4F75D8BB9BC6&amp;gt; /usr/lib/libOpenScriptingUtil.dylib
    0x7fff6614c000 -     0x7fff6614dffb  libSystem.B.dylib (1252.250.1) &amp;lt;1A13E822-B59C-3A36-A2E4-9968149714F9&amp;gt; /usr/lib/libSystem.B.dylib
    0x7fff661c9000 -     0x7fff661cafff  libThaiTokenizer.dylib (2.15.1) &amp;lt;ADB37DC3-7D9B-3E73-A72A-BCC3433C937A&amp;gt; /usr/lib/libThaiTokenizer.dylib
    0x7fff661dc000 -     0x7fff661f2ffb  libapple_nghttp2.dylib (1.24.1) &amp;lt;6F04250A-6686-3FDC-9A8D-290C64B06502&amp;gt; /usr/lib/libapple_nghttp2.dylib
    0x7fff661f3000 -     0x7fff6621cffb  libarchive.2.dylib (54.250.1) &amp;lt;47289946-8504-3966-9127-6CE39993DC2C&amp;gt; /usr/lib/libarchive.2.dylib
    0x7fff6621d000 -     0x7fff6631cfef  libate.dylib (1.13.8) &amp;lt;461F7EA4-05E2-3091-8905-473A63A75300&amp;gt; /usr/lib/libate.dylib
    0x7fff66320000 -     0x7fff66320ff3  libauto.dylib (187) &amp;lt;3E3780E1-96F3-3A22-91C5-92F9A5805518&amp;gt; /usr/lib/libauto.dylib
    0x7fff663f0000 -     0x7fff66400ffb  libbsm.0.dylib (39.200.18) &amp;lt;CF381E0B-025B-364F-A83D-2527E03F1AA3&amp;gt; /usr/lib/libbsm.0.dylib
    0x7fff66401000 -     0x7fff6640efff  libbz2.1.0.dylib (38.200.3) &amp;lt;272953A1-8D36-329B-BDDB-E887B347710F&amp;gt; /usr/lib/libbz2.1.0.dylib
    0x7fff6640f000 -     0x7fff66462ff7  libc++.1.dylib (400.9.4) &amp;lt;9A60A190-6C34-339F-BB3D-AACE942009A4&amp;gt; /usr/lib/libc++.1.dylib
    0x7fff66463000 -     0x7fff66478ff7  libc++abi.dylib (400.17) &amp;lt;38C09CED-9090-3719-90F3-04A2749F5428&amp;gt; /usr/lib/libc++abi.dylib
    0x7fff66479000 -     0x7fff66479ff3  libcharset.1.dylib (51.200.6) &amp;lt;2A27E064-314C-359C-93FC-8A9B06206174&amp;gt; /usr/lib/libcharset.1.dylib
    0x7fff6647a000 -     0x7fff6648affb  libcmph.dylib (6.15.1) &amp;lt;9C52B2FE-179F-32AC-B87E-2AFC49ABF817&amp;gt; /usr/lib/libcmph.dylib
    0x7fff6648b000 -     0x7fff664a3ffb  libcompression.dylib (52.250.2) &amp;lt;C7BE9843-9B19-33E0-A4A0-D48D0A999E86&amp;gt; /usr/lib/libcompression.dylib
    0x7fff66718000 -     0x7fff6672efff  libcoretls.dylib (155.220.1) &amp;lt;4C64BE3E-41E3-3020-8BB7-07E90C0C861C&amp;gt; /usr/lib/libcoretls.dylib
    0x7fff6672f000 -     0x7fff66730ff3  libcoretls_cfhelpers.dylib (155.220.1) &amp;lt;0959B3E9-6643-3589-8BB3-21D52CDF0EF1&amp;gt; /usr/lib/libcoretls_cfhelpers.dylib
    0x7fff66bdc000 -     0x7fff66c32ff7  libcups.2.dylib (462.10) &amp;lt;2AC7B8C3-0D25-3E0F-A34A-94658A06FF94&amp;gt; /usr/lib/libcups.2.dylib
    0x7fff66d66000 -     0x7fff66d66fff  libenergytrace.dylib (17.200.1) &amp;lt;80BB567A-FD18-3497-BF97-353F57D98CDD&amp;gt; /usr/lib/libenergytrace.dylib
    0x7fff66d98000 -     0x7fff66d9dff7  libgermantok.dylib (17.15.2) &amp;lt;E5F0F794-FF27-3D64-AE52-C78C6A84DD67&amp;gt; /usr/lib/libgermantok.dylib
    0x7fff66d9e000 -     0x7fff66da3ff7  libheimdal-asn1.dylib (520.260.1) &amp;lt;DC44D1D1-D3DF-38B3-AFC3-1D50B92BE401&amp;gt; /usr/lib/libheimdal-asn1.dylib
    0x7fff66dce000 -     0x7fff66ebefff  libiconv.2.dylib (51.200.6) &amp;lt;2047C9B7-3F74-3A95-810D-2ED8F0475A99&amp;gt; /usr/lib/libiconv.2.dylib
    0x7fff66ebf000 -     0x7fff67120fff  libicucore.A.dylib (62135.0.1) &amp;lt;2B292561-798A-381C-AA41-90EE6549C7CF&amp;gt; /usr/lib/libicucore.A.dylib
    0x7fff6716d000 -     0x7fff6716efff  liblangid.dylib (128.15.1) &amp;lt;22D05C4F-769B-3075-ABCF-44A0EBACE028&amp;gt; /usr/lib/liblangid.dylib
    0x7fff6716f000 -     0x7fff67187ff3  liblzma.5.dylib (10.200.3) &amp;lt;E1F4FD60-1CE4-37B9-AD95-29D348AF1AC0&amp;gt; /usr/lib/liblzma.5.dylib
    0x7fff6719f000 -     0x7fff67243ff7  libmecab.1.0.0.dylib (779.24.1) &amp;lt;A8D0379B-85FA-3B3D-89ED-5CF2C3826AB2&amp;gt; /usr/lib/libmecab.1.0.0.dylib
    0x7fff67244000 -     0x7fff67448fff  libmecabra.dylib (779.24.1) &amp;lt;D71F71E0-30E2-3DB3-B636-7DE13D51FB4B&amp;gt; /usr/lib/libmecabra.dylib
    0x7fff67620000 -     0x7fff67971ff7  libnetwork.dylib (1229.250.15) &amp;lt;72C7E9E3-B2BE-3300-BE1B-64606222022C&amp;gt; /usr/lib/libnetwork.dylib
    0x7fff67a03000 -     0x7fff6818bfd7  libobjc.A.dylib (756.2) &amp;lt;20942D4E-CE6F-376A-8BCD-016F88E4BFD5&amp;gt; /usr/lib/libobjc.A.dylib
    0x7fff6819d000 -     0x7fff681a1ffb  libpam.2.dylib (22.200.1) &amp;lt;586CF87F-349C-393D-AEEB-FB75F94A5EB7&amp;gt; /usr/lib/libpam.2.dylib
    0x7fff681a4000 -     0x7fff681d9fff  libpcap.A.dylib (79.250.1) &amp;lt;C0893641-7DFF-3A33-BDAE-190FF54837E8&amp;gt; /usr/lib/libpcap.A.dylib
    0x7fff682f2000 -     0x7fff6830affb  libresolv.9.dylib (65.200.2) &amp;lt;893142A5-F153-3437-A22D-407EE542B5C5&amp;gt; /usr/lib/libresolv.9.dylib
    0x7fff6835d000 -     0x7fff6852effb  libsqlite3.dylib (274.25) &amp;lt;F9589951-4ADE-3CD4-9D79-B4A0FD12E844&amp;gt; /usr/lib/libsqlite3.dylib
    0x7fff68747000 -     0x7fff6874aff7  libutil.dylib (51.200.4) &amp;lt;CE9B18C9-66ED-32D4-9D29-01F8FCB467B0&amp;gt; /usr/lib/libutil.dylib
    0x7fff6874b000 -     0x7fff68758fff  libxar.1.dylib (417.1) &amp;lt;39CCF46B-C81A-34B1-92A1-58C4E5DA846E&amp;gt; /usr/lib/libxar.1.dylib
    0x7fff6875d000 -     0x7fff6883fff3  libxml2.2.dylib (32.8) &amp;lt;54F896CF-6D83-300B-9CD9-1636BE5375A4&amp;gt; /usr/lib/libxml2.2.dylib
    0x7fff68840000 -     0x7fff68868ff3  libxslt.1.dylib (16.1) &amp;lt;31F7018B-D8F2-36ED-A13B-1E5A16DFAAA1&amp;gt; /usr/lib/libxslt.1.dylib
    0x7fff68869000 -     0x7fff6887bff7  libz.1.dylib (70.200.4) &amp;lt;B048FC1F-058F-3A08-A1FE-81D5308CB3E6&amp;gt; /usr/lib/libz.1.dylib
    0x7fff6905f000 -     0x7fff69063ff3  libcache.dylib (81) &amp;lt;1987D1E1-DB11-3291-B12A-EBD55848E02D&amp;gt; /usr/lib/system/libcache.dylib
    0x7fff69064000 -     0x7fff6906eff3  libcommonCrypto.dylib (60118.250.2) &amp;lt;1765BB6E-6784-3653-B16B-CB839721DC9A&amp;gt; /usr/lib/system/libcommonCrypto.dylib
    0x7fff6906f000 -     0x7fff69076ff7  libcompiler_rt.dylib (63.4) &amp;lt;5212BA7B-B7EA-37B4-AF6E-AC4F507EDFB8&amp;gt; /usr/lib/system/libcompiler_rt.dylib
    0x7fff69077000 -     0x7fff69080ff7  libcopyfile.dylib (146.250.1) &amp;lt;98CD00CD-9B91-3B5C-A9DB-842638050FA8&amp;gt; /usr/lib/system/libcopyfile.dylib
    0x7fff69081000 -     0x7fff69105fc3  libcorecrypto.dylib (602.260.2) &amp;lt;BED0F385-D8A2-334A-BD7B-0673B5DABBC5&amp;gt; /usr/lib/system/libcorecrypto.dylib
    0x7fff6918c000 -     0x7fff691c5ff7  libdispatch.dylib (1008.250.7) &amp;lt;26DF5B1E-A388-38EF-B73B-AF0E93FB02DB&amp;gt; /usr/lib/system/libdispatch.dylib
    0x7fff691c6000 -     0x7fff691f2ff7  libdyld.dylib (655.1.1) &amp;lt;002418CC-AD11-3D10-865B-015591D24E6C&amp;gt; /usr/lib/system/libdyld.dylib
    0x7fff691f3000 -     0x7fff691f3ffb  libkeymgr.dylib (30) &amp;lt;0D0F9CA2-8D5A-3273-8723-59987B5827F2&amp;gt; /usr/lib/system/libkeymgr.dylib
    0x7fff691f4000 -     0x7fff69200ff3  libkxld.dylib (4903.261.4) &amp;lt;71CF1ECD-AC4E-3FDD-BEDF-14933D843EEE&amp;gt; /usr/lib/system/libkxld.dylib
    0x7fff69201000 -     0x7fff69201ff7  liblaunch.dylib (1336.261.2) &amp;lt;BD5CDB35-2BB4-349A-8D14-78E387563F89&amp;gt; /usr/lib/system/liblaunch.dylib
    0x7fff69202000 -     0x7fff69207fff  libmacho.dylib (927.0.2) &amp;lt;3C5C9024-45FD-38C2-B01A-07A322966063&amp;gt; /usr/lib/system/libmacho.dylib
    0x7fff69208000 -     0x7fff6920affb  libquarantine.dylib (86.220.1) &amp;lt;6D0BC770-7348-3608-9254-F7FFBD347634&amp;gt; /usr/lib/system/libquarantine.dylib
    0x7fff6920b000 -     0x7fff6920cff7  libremovefile.dylib (45.200.2) &amp;lt;9FBEB2FF-EEBE-31BC-BCFC-C71F8D0E99B6&amp;gt; /usr/lib/system/libremovefile.dylib
    0x7fff6920d000 -     0x7fff69224ff3  libsystem_asl.dylib (356.200.4) &amp;lt;A62A7249-38B8-33FA-9875-F1852590796C&amp;gt; /usr/lib/system/libsystem_asl.dylib
    0x7fff69225000 -     0x7fff69225ff7  libsystem_blocks.dylib (73) &amp;lt;A453E8EE-860D-3CED-B5DC-BE54E9DB4348&amp;gt; /usr/lib/system/libsystem_blocks.dylib
    0x7fff69226000 -     0x7fff692adfff  libsystem_c.dylib (1272.250.1) &amp;lt;7EDACF78-2FA3-35B8-B051-D70475A35117&amp;gt; /usr/lib/system/libsystem_c.dylib
    0x7fff692ae000 -     0x7fff692b1ffb  libsystem_configuration.dylib (963.260.1) &amp;lt;C7D2BA09-8D5B-3393-8D84-304D76C55DEF&amp;gt; /usr/lib/system/libsystem_configuration.dylib
    0x7fff692b2000 -     0x7fff692b5ff7  libsystem_coreservices.dylib (66) &amp;lt;719F75A4-74C5-3BA6-A09E-0C5A3E5889D7&amp;gt; /usr/lib/system/libsystem_coreservices.dylib
    0x7fff692b6000 -     0x7fff692bcfff  libsystem_darwin.dylib (1272.250.1) &amp;lt;EC9B39A5-9592-3577-8997-7DC721D20D8C&amp;gt; /usr/lib/system/libsystem_darwin.dylib
    0x7fff692bd000 -     0x7fff692c3ff7  libsystem_dnssd.dylib (878.260.1) &amp;lt;64B79B01-B1B0-3C7E-87A1-023B71843F1F&amp;gt; /usr/lib/system/libsystem_dnssd.dylib
    0x7fff692c4000 -     0x7fff6930fffb  libsystem_info.dylib (517.200.9) &amp;lt;D09D5AE0-2FDC-3A6D-93EC-729F931B1457&amp;gt; /usr/lib/system/libsystem_info.dylib
    0x7fff69310000 -     0x7fff69338ff7  libsystem_kernel.dylib (4903.261.4) &amp;lt;7B0F52C4-4CC9-3282-8457-C18C6FE1B99E&amp;gt; /usr/lib/system/libsystem_kernel.dylib
    0x7fff69339000 -     0x7fff69384ff7  libsystem_m.dylib (3158.200.7) &amp;lt;F19B6DB7-014F-3820-831F-389CCDA06EF6&amp;gt; /usr/lib/system/libsystem_m.dylib
    0x7fff69385000 -     0x7fff693affff  libsystem_malloc.dylib (166.261.1) &amp;lt;4D1CEF38-DE32-3ECF-9F70-0ADDD5C8775F&amp;gt; /usr/lib/system/libsystem_malloc.dylib
    0x7fff693b0000 -     0x7fff693baff7  libsystem_networkextension.dylib (767.250.2) &amp;lt;FF06F13A-AEFE-3A27-A073-910EF78AEA36&amp;gt; /usr/lib/system/libsystem_networkextension.dylib
    0x7fff693bb000 -     0x7fff693c2fff  libsystem_notify.dylib (172.200.21) &amp;lt;145B5CFC-CF73-33CE-BD3D-E8DDE268FFDE&amp;gt; /usr/lib/system/libsystem_notify.dylib
    0x7fff693c3000 -     0x7fff693ccfef  libsystem_platform.dylib (177.250.1) &amp;lt;16949870-9152-3B0D-9EF0-40FAF84B0F1E&amp;gt; /usr/lib/system/libsystem_platform.dylib
    0x7fff693cd000 -     0x7fff693d7ff7  libsystem_pthread.dylib (330.250.2) &amp;lt;2D5C08FF-484F-3D59-9132-CE1DCB3F76D7&amp;gt; /usr/lib/system/libsystem_pthread.dylib
    0x7fff693d8000 -     0x7fff693dbff7  libsystem_sandbox.dylib (851.260.2) &amp;lt;9CACC5F5-3859-3A1F-BCC6-96DDD4A556A8&amp;gt; /usr/lib/system/libsystem_sandbox.dylib
    0x7fff693dc000 -     0x7fff693deff3  libsystem_secinit.dylib (30.260.2) &amp;lt;88F3CE61-5FAD-3CDA-AA13-B5B18B3EBD26&amp;gt; /usr/lib/system/libsystem_secinit.dylib
    0x7fff693df000 -     0x7fff693e6ff3  libsystem_symptoms.dylib (820.267.1) &amp;lt;03F1C2DD-0F5A-3D9D-88F6-B26C0F94EB52&amp;gt; /usr/lib/system/libsystem_symptoms.dylib
    0x7fff693e7000 -     0x7fff693fcfff  libsystem_trace.dylib (906.260.1) &amp;lt;100013AE-0443-3CF0-AC17-5D934608B60B&amp;gt; /usr/lib/system/libsystem_trace.dylib
    0x7fff693fe000 -     0x7fff69403ffb  libunwind.dylib (35.4) &amp;lt;24A97A67-F017-3CFC-B0D0-6BD0224B1336&amp;gt; /usr/lib/system/libunwind.dylib
    0x7fff69404000 -     0x7fff69433fff  libxpc.dylib (1336.261.2) &amp;lt;9A0FFA79-082F-3293-BF49-63976B073B74&amp;gt; /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: 1695
    thread_create: 0
    thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=496.8M resident=0K(0%) swapped_out_or_unallocated=496.8M(100%)
Writable regions: Total=28.1G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=28.1G(100%)
 
                                VIRTUAL   REGION 
REGION TYPE                        SIZE    COUNT (non-coalesced) 
===========                     =======  ======= 
Activity Tracing                   256K        1 
Dispatch continuations            8192K        1 
Kernel Alloc Once                    8K        1 
MALLOC                            68.0M       24 
MALLOC guard page                   16K        4 
MALLOC_LARGE (reserved)            384K        1         reserved VM address space (unallocated)
STACK GUARD                         12K        3 
Stack                             9752K        4 
Stack Guard                       56.0M        1 
VM_ALLOCATE                          8K        2 
VM_ALLOCATE (reserved)            32.0M        1         reserved VM address space (unallocated)
__DATA                            29.3M      342 
__FONT_DATA                          4K        1 
__LINKEDIT                       242.0M       88 
__TEXT                           254.7M      316 
__UNICODE                          564K        1 
dylib (reserved)                  28.0G        7         reserved VM address space (unallocated)
mapped file                       25.9M        2 
shared memory                      592K        6 
===========                     =======  ======= 
TOTAL                             28.7G      806 
TOTAL, minus reserved VM space   694.9M      806 

Model: Macmini6,1, BootROM 278.0.0.0.0, 2 processors, Intel Core i5, 2,5 GHz, 4 GB, SMC 2.7f0
Graphics: kHW_IntelHD4000Item, Intel HD Graphics 4000, spdisplays_builtin
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238432D50422020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x10E), Broadcom BCM43xx 1.0 (7.21.190.33 AirPortDriverBrcm4360-1325.2)
Bluetooth: Version 6.0.12f1, 3 services, 27 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: M4-CT128M4SSD2, 128,04 GB
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: Hub
USB Device: IR Receiver
USB Device: BRCM20702 Hub
USB Device: Bluetooth USB Host Controller
USB Device: USB 3.0 Bus
USB Device: USB Receiver
USB Device: Hub
USB Device: Apple Keyboard
Thunderbolt Bus: Mac mini, Apple Inc., 23.4&lt;/PRE&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 16:07:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/8943443#M13953</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-08-01T16:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/9026397#M13954</link>
      <description>&lt;P&gt;If anyone wants to investigate this issue in a real case, you can download my latest add-in &lt;A href="https://forums.autodesk.com/t5/fusion-360-design-validate/3d-print-plus-and-3d-print-pro-extended-versions-of-3d-print/m-p/9018363#M197332" target="_blank" rel="noopener"&gt;3D Print Plus&lt;/A&gt; (it's free).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 05:04:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/9026397#M13954</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-09-16T05:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/9055707#M13955</link>
      <description>&lt;P&gt;The recent update to Python 3.7.3 didn't solve the problem &lt;span class="lia-unicode-emoji" title=":worried_face:"&gt;😟&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Sep 2019 19:37:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/9055707#M13955</guid>
      <dc:creator>JeromeBriot</dc:creator>
      <dc:date>2019-09-29T19:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to launch application on Mac with subprocess.Popen (Python)</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/10072675#M13956</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;any updates on the topic?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;Marvin&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2021 14:20:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/unable-to-launch-application-on-mac-with-subprocess-popen-python/m-p/10072675#M13956</guid>
      <dc:creator>marvinQ8Y7M</dc:creator>
      <dc:date>2021-02-10T14:20:23Z</dc:date>
    </item>
  </channel>
</rss>

