Cannot automate listener on startup under redhat 6.3

dear oracle specialists  i installed oracle 11g r2 under RedHat 6.3 linux after successfull installation and automating db start
cannot automate listener start up however able to start it mannually since i am new bi as well to oracle so as to
linux scripting may help me to find the mistake
oracle
2918  0.0  0.4 1984168 18440 ?  
Ss   06:33   0:00 ora_pmon_ice
oracle
2920  0.3  0.3 1982056 15308 ?  
Ss   06:33   0:00 ora_vktm_ice
oracle
2924  0.0  0.3 1982056 15392 ?  
Ss   06:33   0:00 ora_gen0_ice
oracle
2926  0.0  0.3 1982056 15248 ?  
Ss   06:33   0:00 ora_diag_ice
oracle
2928  0.0  0.5 1982080 23492 ?  
Ss   06:33   0:00 ora_dbrm_ice
oracle
2930  0.0  0.3 1982056 15464 ?  
Ss   06:33   0:00 ora_psp0_ice
oracle
2932  0.0  0.4 1982568 19000 ?  
Ss   06:33   0:00 ora_dia0_ice
oracle
2934  1.6  0.9 1982056 39228 ?  
Ss   06:33   0:03 ora_mman_ice
oracle
2936  0.0  0.5 1987812 22012 ?  
Ss   06:33   0:00 ora_dbw0_ice
oracle
2938  0.0  0.5 1997608 23436 ?  
Ss   06:33   0:00 ora_lgwr_ice
oracle
2940  0.0  0.4 1982568 18356 ?  
Ss   06:33   0:00 ora_ckpt_ice
oracle
2942  0.0  0.7 1982616 34412 ?  
Ss   06:33   0:00 ora_smon_ice
oracle
2944  0.0  0.5 1982576 22268 ?  
Ss   06:33   0:00 ora_reco_ice
oracle
2946  0.2  1.4 1987896 64636 ?  
Ss   06:33   0:00 ora_mmon_ice
oracle
2948  0.0  0.4 1982056 20340 ?  
Ss   06:33   0:00 ora_mmnl_ice
oracle
2950  0.0  0.3 1983956 15356 ?  
Ss   06:33   0:00 ora_d000_ice
oracle
2952  0.0  0.3 1983120 14520 ?  
Ss   06:33   0:00 ora_s000_ice
oracle
2994  0.0  0.3 1982056 17344 ?  
Ss   06:33   0:00 ora_qmnc_ice
oracle
3205  0.1  1.2 1988764 54972 ?  
Ss   06:33   0:00 ora_cjq0_ice
oracle
3207  0.0  0.7 1983640 31268 ?  
Ss   06:33   0:00 ora_q000_ice
oracle
3209  0.0  0.7 1985556 32068 ?  
Ss   06:33   0:00 ora_q001_ice
oracle
3269  1.0  0.6 1983632 27092 ?  
Ss   06:36   0:00 ora_j000_ice
oracle
3271  0.0  0.3 1982052 15032 ?  
Ss   06:36   0:00 ora_j001_ice
here is my database looks like after automatic loads of an operating system after issuing
ps aux command
and here is my  listener after issuing ./lsnrctl status
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 02-AUG-2013 06:42:43
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
TNS-12541: TNS:no listener
TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 111: Connection refused
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=ICELANDLOCAL.localdomain)(PORT=1521)))
TNS-12541: TNS:no listener
TNS-12560: TNS:protocol adapter error
  TNS-00511: No listener
   Linux Error: 111: Connection refused
enviroment variables .bash_profile
export PATH
umask 022
export TMPDIR=/tmp
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.1/dbhome_1
export ORACLE_HOME_LISTNER=$ORACLE_BASE/product/11.2.1/dbhome_1
export ORACLE_HOME_LISTNER=$ORACLE_HOME
export TNS_ADMIN=ORACLE_HOME/network/admin
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
export PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_SID=ice
and my startup script dbora from oracle
# description: Oracle auto start-stop script.
# Set ORA_HOME to be equivalent to the $ORACLE_HOME
# from which you wish to execute dbstart and dbshut;
# Set ORA_OWNER to the user id of the owner of the
# Oracle database in ORA_HOME.
ORA_HOME=/u01/app/oracle/product/11.2.1/dbhome_1
ORA_OWNER=oracle
if [ ! -f $ORA_HOME/bin/dbstart ]
then
    echo "Oracle startup: cannot start"
    exit
fi
case "$1" in
    'start')
        # Start the Oracle databases:
        # The following command assumes that the oracle login
        # will not prompt the user for any values
        su $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start LISTENER"
su $ORA_OWNER -c $ORA_HOME/bin/dbstart $ORA_HOME
        touch /var/lock/subsys/dbora
    'stop')
        # Stop the Oracle databases:
        # The following command assumes that the oracle login
        # will not prompt the user for any values
        su $ORA_OWNER -c $ORA_HOME/bin/dbshut $ORA_HOME
        su $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl stop LISTENER"
        rm -f /var/lock/subsys/dbora
esac
any suggestions or help would be appricieated
thanks in advance

user9116138 wrote:
Salut Ad thanks for reply my listener does not create /tmp/listener_start.log after adding  following lines to dbora file
su $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start LISTENER"  > /tmp/listener_start.log
make it "su $ORA_OWNER -c "$ORA_HOME/bin/lsnrctl start LISTENER"  > /tmp/listener_start.log  2>&1
when i issue the command ./lsnrctl start that gives an outcome like
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 02-AUG-2013 16:25:15
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
TNS-01106: Listener using listener name LISTENER has already been started
So how is it that it is already started?
[oracle@ICELANDLOCAL bin]$ ./lsnrctl start
LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 02-AUG-2013 16:25:43
Copyright (c) 1991, 2009, Oracle.  All rights reserved.
Starting /u01/app/oracle/product/11.2.1/dbhome_1/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 11.2.0.1.0 - Production
System parameter file is /u01/app/oracle/product/11.2.1/dbhome_1/network/admin/listener.ora
Log messages written to /u01/app/oracle/diag/tnslsnr/ICELANDLOCAL/listener/alert/log.xml
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ICELANDLOCAL.localdomain)(PORT=1521)))
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production
Start Date                02-AUG-2013 16:25:43
Uptime                    0 days 0 hr. 0 min. 0 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /u01/app/oracle/product/11.2.1/dbhome_1/network/admin/listener.ora
Listener Log File         /u01/app/oracle/diag/tnslsnr/ICELANDLOCAL/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ICELANDLOCAL.localdomain)(PORT=1521)))
The listener supports no services
The command completed successfully
So what did you do in between .. what you show here is that you issued a startup and got 'already started', then again issued a startup and got a clean startup.  You obviously are not showing us everything.  Like the command that you actually used when you got the 'already started' message.
do not know what to do

Similar Messages

  • 11g1 automatic startup under Fedora 9 Linux quit working

    11g1 automatic startup under Fedora 9 Linux worked for months
    Now I have to start 11g1 manually!
    since then I've been doing regular yum updates to a number of new kernels
    currently :
    LMKIII (root) /var/log [600|http://forums.oracle.com/forums/]>uname -a
    Linux LMKIII 2.6.27.19-78.2.30.fc9.i686 #1 SMP Tue Feb 24 20:09:23 EST 2009 i686 i686 i386 GNU/Linux
    on boot page, the usual command that starts 11g1 just zips on by
    I've looked in the boot messages to no avail. Still looking.
    Has to be a kernel change because I've lect 11g1 alone for months

    I did a www.ask.com for "dbstart pam.d" and got the answer.
    pam.d and SELINUX are very complex.
    I am still wary of lurking problems!
    Apr 16 18:43:57 LMKIII sshd[2176]: Server listening on 0.0.0.0 port 22.
    Apr 16 18:44:10 LMKIII rshd[2473]: PAM unable to dlopen(/lib/security/pam_rhosts_auth.so): /lib/security/pam_rhosts_auth.so: cannot open shared object file: No such file or directory
    Apr 16 18:44:10 LMKIII rshd[2473]: PAM adding faulty module: /lib/security/pam_rhosts_auth.so
    Apr 16 18:44:11 LMKIII rshd[2473]: pam_rhosts(rsh:auth): denied access to [email protected] as oracle
    Apr 16 18:44:11 LMKIII rshd[2473]: pam_unix(rsh:session): session opened for user oracle by (uid=0)
    Apr 16 18:45:11 LMKIII rshd[2473]: pam_unix(rsh:session): session closed for user oracle
    Apr 16 18:49:07 LMKIII kdm: :0[2881]: pam_unix(kdm:session): session opened for user oracle by (uid=0)
    Apr 16 18:50:41 LMKIII su: pam_unix(su-l:session): session opened for user root by oracle(uid=503)
    Apr 16 18:54:46 LMKIII su: pam_unix(su-l:session): session closed for user root
    Apr 16 18:54:49 LMKIII kdm: :0[2881]: pam_unix(kdm:session): session closed for user oracle
    Apr 16 18:55:01 LMKIII sshd[2176]: Received signal 15; terminating.
    Apr 16 18:56:55 LMKIII sshd[2171]: Server listening on 0.0.0.0 port 22.
    Apr 16 18:57:08 LMKIII rshd[2473]: PAM unable to dlopen(/lib/security/pam_rhosts_auth.so): /lib/security/pam_rhosts_auth.so: cannot open shared object file: No such file or directory
    Apr 16 18:57:08 LMKIII rshd[2473]: PAM adding faulty module: /lib/security/pam_rhosts_auth.so
    Apr 16 18:57:09 LMKIII rshd[2473]: pam_unix(rsh:session): session opened for user oracle by (uid=0)
    Apr 16 18:58:09 LMKIII rshd[2473]: pam_unix(rsh:session): session closed for user oracle
    Apr 16 18:59:26 LMKIII kdm: :0[2880]: pam_unix(kdm:session): session opened for user oracle by (uid=0)
    Apr 16 19:00:31 LMKIII su: pam_unix(su-l:session): session opened for user root by oracle(uid=503)
    Apr 16 19:01:50 LMKIII su: pam_unix(su-l:session): session closed for user root
    Apr 16 19:02:23 LMKIII su: pam_unix(su-l:session): session opened for user root by oracle(uid=503)
    Apr 16 20:48:14 LMKIII sshd[4117]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 20:48:14 LMKIII sshd[4117]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 20:48:16 LMKIII sshd[4117]: Failed password for root from 194.80.134.6 port 51090 ssh2
    Apr 16 20:48:16 LMKIII sshd[4120]: Connection closed by 194.80.134.6
    Apr 16 21:11:12 LMKIII sshd[4287]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 21:11:12 LMKIII sshd[4287]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 21:11:14 LMKIII sshd[4287]: Failed password for root from 194.80.134.6 port 53791 ssh2
    Apr 16 21:11:15 LMKIII sshd[4290]: Connection closed by 194.80.134.6
    Apr 16 21:28:54 LMKIII sshd[4383]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 21:28:54 LMKIII sshd[4383]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 21:28:55 LMKIII sshd[4383]: Failed password for root from 194.80.134.6 port 44904 ssh2
    Apr 16 21:28:56 LMKIII sshd[4386]: Connection closed by 194.80.134.6
    Apr 16 21:46:47 LMKIII sshd[4481]: Address 194.80.134.6 maps to no-reverse-defined.ja.net, but this does not map back to the address - POSSIBLE BREAK-IN ATTEMPT!
    Apr 16 21:46:48 LMKIII sshd[4481]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=194.80.134.6 user=root
    Apr 16 21:46:50 LMKIII sshd[4481]: Failed password for root from 194.80.134.6 port 36020 ssh2
    Apr 16 21:46:50 LMKIII sshd[4484]: Connection closed by 194.80.134.6

  • TS1717 I cannot get iTunes to automatically launch at startup in Windows 7. I need it to do this so my Apple TV 'finds' my Music Library, which is stored on an external hard-drive, connected to my Windows 7 PC.

    I cannot get iTunes to automatically launch at startup in Windows 7. I need it to do this so my Apple TV 'finds' my Music Library, which is stored on an external hard-drive, connected to my Windows 7 PC. Anyone know how I do this? I cannot seem to find anything on Google, which is surprising.
    iTunes helper launches OK, but not iTunes itself. Am I being dim?
    Thanks

    The iTunes application should be installed on the system drive. You may need to repair iTunes to fix that error regarding a missing .exe.
    To organize your library properly see Make a split library portable.
    If you don't have a working version of the library that can be transformed into a portable shape I have tools and techniques that can repair the broken links.
    tt2

  • TNS-01251: Cannot set trace/log directory under ADR

    Dear All,
    My Database is Oracle 11gR2 and operating system is Linux.
    I am trying to turn on logging for the listener using the commands:
    Lsnrctl> set log_directory /DB/oracle/product/11.1.0/db_1/network/admin/
    Lsnrctl> set log_file itlistener.log
    Lsnrctl> set log_status on
    Lsnrctl> save_config
    Lsnrctl> set log_directory  /DB/oracle/product/11.1.0/db_1/network/admin/ when i execute this command i get the following error:
    TNS-01251: Cannot set trace/log directory under ADR
    Is there any solution to get out of this error and log listener?
    Thanks,
    Imran

    misterimran wrote:
    Anyone else please?01251, 00000, "Cannot set trace/log directory under ADR"
    // *Cause: ADR trace and log directories cannot be set by the user.
    // *Action: None.                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to install load tomcat automatically on windows startup.

    hi i want to load tomcat automatically on windows startup. right now if i want to start tomcat i have to run startup.bat. please help me.

    Hi, When you install tomcat, you can choose to do so "as a service". Then there wont be no startup.bat. then you can see your tomcat as a service under Services
    Good luck to you

  • Date/time icon and other movable icons on menu bar cannot be loaded on startup,but it works if manually loaded

    Strange things happened since my mbp 13' (MD-101) was upgraded to 10.8.4 ----------- time icon, battery icon,and language icon (these icons can be moved when held Command key and drag) cannot be loaded on startup, but they still can be loaded when you get into System Preferences and manually  turn them on, as well as iStat Menus
    However, some other icons didn't bother, things like BetterTouchTool, NewsBar. They are immovable!! I guess it is the key factor that the icon is movable or not making the difference.
    Someone please lend me a helping hand?
    I've attached some pictures in order to make my situation easier to be understood.
    these icons can't be loaded on my loggin in.
    but they can be loaded manually
    however, these icons will be loaded on startup
    I've almost despaired to resolve it . Thanks for your help!

    I have a similar issue. When the computer goes into "Hibernate" mode -- that is, it loses power while sleeping and it writes the contents of it's memory to disk in order to boot into that exact configuration when woken up -- many of my icons when Apple-Tab'ing to another application appear as static. They look like a slightly colorized version of the "static snow" you see when tuning into a station that doesn't exist on a UHF antenna television. Also, icons in Chrome such as web sites "favorite icons" or favicon.ico (the icons that appear in the URL bar and bookmarks) will be scrambled in the same fashion , at first , until the actual icon is loaded.
    Between this, my menu bar and finder icons not displaying, and being unable to boot into safe mode, I'm getting quite ******. I have no idea what the **** is going on with my Macbook Pro. The issue of the scrambled icons actually existed prior to installing an SSD and doing a fresh install of Mountain Lion. I may end up throwing in the towl and re-installing the operating system but I'm sure SOMETHING will happen. It seems the latest update, 10.8.2, is absolute garbage.
    What the ****, Apple? And I really don't want to take the computer to the morons at the Apple Store. They are not "geniuses" by any measure.

  • I cannot recover my Master Password under 10.6.8. I want to change it. I do have my admin password for my account. How can I create a new master pw?

    I cannot recover my Master Password under 10.6.8. I want to change it. I do have my admin password for my account. How can I create a new master pw?

    If you are referring the Master Password that can be set in System Preferences>Security>FileVault, then see this thread:
    How to reset FileVault master password
    http://discussions.apple.com/thread.jspa?messageID=5822772
    As explained there, and for obvious security reasons, a new master password created in this fashion way will not unlock any pre-existing FileVault accounts. Resetting the master password is therefore only useful after you turn off FileVault in all existing accounts. You can then turn FileVault back on after the new master password is in place.

  • I just plugged in my Iphone after 4 weeks of downloading music and adding contacts around 400 to be excact and it whipped all my data out and I have no photos nothing reset to factory defult and I cannot even listen to music I purchased because it skips

    I just plugged in my Iphone after 4 weeks of downloading music and adding contacts around 400 to be excact. When I plugged it in my computer it started to sync with iTunes and it whipped all my data out. I have no photos contacts nothing, so I then in a rage reset to factory defult and I cannot even listen to music I purchased because it skips. I just want my phone back

    Was this the very first time you ever plugged the phone into that computer?
    Did you pay attention to the prompts you were given when you plugged it in?
    Did you have iCloud backups turned on before you did this?  I hope so... If you did, restore the phone from the last iCloud backup from before you wiped it. If not, then the photos, etc. are gone. Apps and music can be re-downloaded.

  • 2nd Gen iPad Mini stopped working yesterday.  Won't startup under and configuration and is not recognized by my iMac.

    2nd Gen iPad Mini stopped working yesterday.  Won't startup under and configuration and is not recognized by my iMac.  I believe it upgraded itself to iOS 8 (????)

    Hey Kenneth,
    So it sounds as if your iPad is not responding at all when you try to turn it on, is that correct? If so, I would suggest that you troubleshoot using the steps in this article -
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    If you get it to start up and it is still not recognized by iTunes on your Mac, use the steps in this article to troubleshoot that issue -
    If you don't see your connected device in iTunes for Mac - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • Photoshop CC crashes on startup under OS X 10.8.5

    After Adobe Creative Cloud installed Photoshop CC via the root account, see:
    http://forums.adobe.com/thread/1302496
    The Adobe Photoshop CC 14.1.1 (14.1.1.415) crashes immediately on startup under OS X 10.8.5 unless I am running logged into the root account.  This happens when I try to run Adobe Creative Cloud.app as a standard user or as a user with admin privileges.
    In other words, the only way I am able to run the Adobe Photoshop CC application is if I take the dangerious option of enablign the root account, logging into it and then directly running the application.
    See the next message for a crash dump.
    Please advise me on how I can run Adobe Photoshop CC without having to both enable and login to the root account.

    Here is the crash report when I attempt to run Adobe Photoshop CC without dangerious option of enablign the root account, logging into it and then directly running the application:
    Process:         Adobe Photoshop CC [518]
    Path:            /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
    Identifier:      com.adobe.Photoshop
    Version:         14.1.1 (14.1.1.415)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [160]
    User ID:         501
    Date/Time:       2013-09-24 00:49:54.457 +0200
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Interval Since Last Report:          1627 sec
    Crashes Since Last Report:           2
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      67B74E60-DD9E-19A1-5BD5-D6CBA5C03C63
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/../Frameworks/amtlib.framework/Versions/A/amtlib
    abort() called
    terminate called throwing an exception
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00007fff8cc59d46 __kill + 10
    1   libsystem_c.dylib                       0x00007fff8c02cf83 abort + 177
    2   libc++abi.dylib                         0x00007fff96eb69eb abort_message + 257
    3   libc++abi.dylib                         0x00007fff96eb439a default_terminate() + 28
    4   libobjc.A.dylib                         0x00007fff955fd887 _objc_terminate() + 111
    5   libc++abi.dylib                         0x00007fff96eb43c9 safe_handler_caller(void (*)()) + 8
    6   libc++abi.dylib                         0x00007fff96eb4424 std::terminate() + 16
    7   libc++abi.dylib                         0x00007fff96eb558b __cxa_throw + 111
    8   com.adobe.amtlib                        0x000000010567c595 0x105644000 + 230805
    9   com.adobe.amtlib                        0x000000010567c6b0 0x105644000 + 231088
    10  com.adobe.amtlib                        0x000000010567bab4 0x105644000 + 228020
    11  com.adobe.amtlib                        0x000000010567bb1d 0x105644000 + 228125
    12  com.adobe.amtlib                        0x000000010567bddf 0x105644000 + 228831
    13  com.adobe.amtlib                        0x000000010567c324 0x105644000 + 230180
    14  dyld                                    0x00007fff65d8f378 ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 236
    15  dyld                                    0x00007fff65d8f762 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 46
    16  dyld                                    0x00007fff65d8c06e ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 380
    17  dyld                                    0x00007fff65d8bfc4 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 210
    18  dyld                                    0x00007fff65d8beba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 54
    19  dyld                                    0x00007fff65d7dfc0 dyld::initializeMainExecutable() + 207
    20  dyld                                    0x00007fff65d81b04 dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 3060
    21  dyld                                    0x00007fff65d7d397 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 761
    22  dyld                                    0x00007fff65d7d05e _dyld_start + 54
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff5fbfde00  rcx: 0x00007fff5fbfdde8  rdx: 0x0000000000000000
      rdi: 0x0000000000000206  rsi: 0x0000000000000006  rbp: 0x00007fff5fbfde10  rsp: 0x00007fff5fbfdde8
       r8: 0x0000000000000007   r9: 0x000000000000001d  r10: 0x00007fff8cc5b342  r11: 0x0000000000000206
      r12: 0x00007fff5fbfdf40  r13: 0x000000000000001f  r14: 0x00007fff96ec97c3  r15: 0x00007fff5fbfde20
      rip: 0x00007fff8cc59d46  rfl: 0x0000000000000206  cr2: 0x00007fff7b3a7ff0
    Logical CPU: 0
    Binary Images:
           0x100000000 -        0x103bb5f7f +com.adobe.Photoshop (14.1.1 - 14.1.1.415) <D9FCBEC6-227F-368F-9D48-01CC7EC16DC7> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/MacOS/Adobe Photoshop CC
           0x104301000 -        0x10432dff7 +libtbb.dylib (0) <64B7013E-D548-3F7B-A2FB-28B7B932275C> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/libtbb.dylib
           0x104347000 -        0x104366fe7 +libtbbmalloc.dylib (0) <6887ED68-67ED-3748-82DA-B39A3EB210BB> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/libtbbmalloc.dylib
           0x10438a000 -        0x104391fff  org.twain.dsm (1.9.4 - 1.9.4) <80EC0952-6137-3CA6-813F-D753856A13CE> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
           0x104399000 -        0x1043acff7 +com.adobe.ahclientframework (1.8.0.31 - 1.8.0.31) <58BB943C-98EC-3812-AAAB-74F66630D1D4> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
           0x1043b6000 -        0x1043bbfff  com.apple.agl (3.2.1 - AGL-3.2.1) <F3FD497C-AEB8-35CB-92D4-1669B941435F> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x1043c2000 -        0x10458bff7 +com.adobe.owl (AdobeOwl version 5.0.13 - 5.0.13) <E9BEFE93-8AB5-3EF9-B59E-69208015C7FA> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
           0x1045ce000 -        0x104b67fff +com.adobe.MPS (AdobeMPS 5.8.1.30604 - 5.8.1.30604) <70CBC6A8-2740-37AB-964E-484096A1BF8A> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
           0x104be4000 -        0x104efcff7 +com.adobe.AGM (AdobeAGM 4.30.24.31468 - 4.30.24.31468) <97A3293C-0574-3DD3-86F1-D53E6CD73373> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
           0x104f65000 -        0x105276fff +com.adobe.CoolType (AdobeCoolType 5.13.00.31468 - 5.13.00.31468) <47F18C1A-71E7-37B2-84C4-2EBF9B7000F3> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x1052be000 -        0x1052e4fff +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <FA20BCA0-05BF-35ED-95B7-5775B8310D12> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x1052ec000 -        0x105318fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpat
           0x10533c000 -        0x10546afff +com.winsoft.wrservices (WRServices 7.0.0 - 7.0.0) <0853A41B-A14A-37B7-B27F-457F87865EAD> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
           0x1054c8000 -        0x10560cfff +com.adobe.ACE (AdobeACE 2.20.02.31468 - 2.20.02.31468) <C55A913C-8009-3A56-BF49-723C61D9444D> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
           0x10561f000 -        0x10563cfff +com.adobe.BIB (AdobeBIB 1.2.03.31468 - 1.2.03.31468) <A69D3AA0-9248-3B77-991B-89B2B7FE46BB> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
           0x105644000 -        0x105733fff +com.adobe.amtlib (7.0.0.169 - 7.0.0.169) <A9A9F814-FF1F-3182-992C-395E5BC52481> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
           0x105746000 -        0x1057ffff7 +com.adobe.JP2K (1.2.2 - 1.2.2.29712) <869F46FB-FF39-39CA-B1E3-A13035A48B49> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
           0x105849000 -        0x10584dff7 +com.adobe.ape.shim (3.4.0.29366 - 3.4.0.29366) <B9447EE8-6F91-9E85-C163-96600BF70764> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
           0x105854000 -        0x1058c5fe7 +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 79.151561) <380981FE-6528-37CC-9159-AB1892803BD4> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
           0x1058d8000 -        0x105945fff +com.adobe.AdobeXMPCore (Adobe XMP Core 5.5 -c 14 - 79.151481) <BCDB9366-EDB3-3FEA-854D-3D2C72D48781> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
           0x105978000 -        0x105ed0fef +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/Cg.framework/Cg
           0x10653e000 -        0x10658dfff +com.adobe.headlights.LogSessionFramework (2.1.2.1785) <160BF2F9-B418-31C5-866F-6FADA1B720ED> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
           0x1065c3000 -        0x106831ff7 +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <3518BD24-6FD8-37C0-A888-EBB9A2957631> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
           0x106930000 -        0x106a72fff +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <5D90BD26-54D5-3479-AEA8-38899114CAF5> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/filter_graph.framework/Versions/A/filter_graph
           0x106b8d000 -        0x106bb2ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
           0x106bee000 -        0x106bf0fff +com.adobe.AdobeCrashReporter (7.0 - 7.0.1) <B68D0D42-8DEB-3F22-BD17-981AC060E9D7> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
           0x106bf5000 -        0x107284fef +com.adobe.PlugPlugOwl (4.0.1.34 - 4.0.1.34) <762B5A6D-E532-3EDD-9E8C-6A52F77BF985> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/PlugPlugOwl.framework/Versions/A/PlugPlugOwl
           0x107892000 -        0x107950ff7 +com.adobe.AdobeExtendScript (ExtendScript 4.5.5 - 4.5.5.30746) <FD095E6D-90B6-3F27-9D28-A1846207313E> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
           0x1079a0000 -        0x107a4bff7 +com.adobe.AdobeScCore (ScCore 4.5.5 - 4.5.5.30746) <D7D4D4AA-EF54-374C-984F-6170846E9C38> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
           0x107a90000 -        0x107b8afe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
           0x107c2f000 -        0x107d88ff7 +com.adobe.linguistic.LinguisticManager (7.0.0 - 19061) <F6095811-7D5F-3E06-A664-1EB9FBF8C761> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
           0x107dd6000 -        0x107df5fff +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <70265390-C20D-3DD2-9117-5AAE34BC1964> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
           0x107e0f000 -        0x107e74ff7 +com.adobe.AIF (AdobeAIF 5.0.00 - 5.0.00) <237759C8-A525-3B4A-8B8D-0344D90F757C> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
           0x107e95000 -        0x108083fe7 +PatchMatch (1) <5FB409AA-535C-3067-BCA0-4E9768C63888> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/PatchMatch.framework/Versions/A/PatchMatch
           0x10839f000 -        0x10840eff7 +com.adobe.adobe_caps (adobe_caps 7.0.0.21 - 7.0.0.21) <CE3C6356-9EE2-3B88-8261-8612A0743F56> /Applications/Adobe Photoshop CC/Adobe Photoshop CC.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
        0x7fff65d7c000 -     0x7fff65db093f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
        0x7fff8b09e000 -     0x7fff8b4bbfff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
        0x7fff8b4c5000 -     0x7fff8b4ccfff  libGFXShared.dylib (8.10.1) <B4AB9480-2CDB-34F8-8D6F-F5A2CFC221B0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
        0x7fff8b4cd000 -     0x7fff8b573ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
        0x7fff8b574000 -     0x7fff8b594fff  libPng.dylib (851) <3466F35C-EC1A-3D1A-80DC-175857FA19D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8b595000 -     0x7fff8b5a2fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
        0x7fff8b5ea000 -     0x7fff8b5eefff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8b5ef000 -     0x7fff8b610ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8b611000 -     0x7fff8b660ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8b671000 -     0x7fff8b942ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b943000 -     0x7fff8b956ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
        0x7fff8b957000 -     0x7fff8b9acff7  libTIFF.dylib (851) <7706BB07-E7E8-38BE-A5F0-D8B63E3B9283> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b9ad000 -     0x7fff8baabfff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
        0x7fff8baae000 -     0x7fff8bbcefff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
        0x7fff8bbcf000 -     0x7fff8bc2bfff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8bc2c000 -     0x7fff8bc70fff  libcups.2.dylib (327.7) <9F35B58A-F47E-348A-8E09-E235FA4B9270> /usr/lib/libcups.2.dylib
        0x7fff8bc71000 -     0x7fff8bc80fff  com.apple.opengl (1.8.10 - 1.8.10) <AD49CF56-B7C1-3598-8610-58532FC41345> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8bc81000 -     0x7fff8bca0ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
        0x7fff8bcbe000 -     0x7fff8bd0bfff  com.apple.CoreMediaIO (309.0 - 4163.1) <8FD1C1A9-25C5-3B9E-A76D-BE813253B358> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8bd0e000 -     0x7fff8bd65ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8bda0000 -     0x7fff8bdeaff7  libGLU.dylib (8.10.1) <6699DEA6-9EEB-3B84-A57F-B25AE44EC584> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8bdeb000 -     0x7fff8bf05fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8bf35000 -     0x7fff8bf78ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8bf79000 -     0x7fff8bfcaff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
        0x7fff8bfcb000 -     0x7fff8bfd0fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8bfd1000 -     0x7fff8bfd2fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8bfd3000 -     0x7fff8c09fff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8c0a5000 -     0x7fff8c49cfff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
        0x7fff8c629000 -     0x7fff8c6e6ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
        0x7fff8c6e7000 -     0x7fff8c6e9fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff8c720000 -     0x7fff8c920fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff8c921000 -     0x7fff8c92efff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8c92f000 -     0x7fff8c98bff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
        0x7fff8c98c000 -     0x7fff8cc43ff7  com.apple.MediaToolbox (1.0 - 926.106) <57043584-98E7-375A-89AE-F46480AA5D97> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8cc44000 -     0x7fff8cc44fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8cc48000 -     0x7fff8cc63ff7  libsystem_kernel.dylib (2050.48.11) <3323E9AD-2317-3C7A-AB7F-1C81F5E148B7> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8cc64000 -     0x7fff8cc6ffff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8cc70000 -     0x7fff8d600627  com.apple.CoreGraphics (1.600.0 - 333.1) <C085C074-7260-3C3D-90C6-A65D3CB2BD41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
        0x7fff8d601000 -     0x7fff8d601fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8db0a000 -     0x7fff8db29ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8dc2a000 -     0x7fff8dc2afff  com.apple.Accelerate (1.8 - Accelerate 1.8) <878A6E7E-CB34-380F-8212-47FBF12C7C96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8dd45000 -     0x7fff8dd5ffff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
        0x7fff8df7e000 -     0x7fff8df7efff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8df7f000 -     0x7fff8df86fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff8e005000 -     0x7fff8e005fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <F565B686-24E2-39F2-ACC3-C5E4084476BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
        0x7fff8e006000 -     0x7fff8e00afff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8e00b000 -     0x7fff8e1f5ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8e1f6000 -     0x7fff8e25eff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8e25f000 -     0x7fff8e261ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8e262000 -     0x7fff8e33cfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8eb23000 -     0x7fff8ec25fff  libcrypto.0.9.8.dylib (47.2) <CF3BAB7E-4972-39FD-AF92-28ACAFF0873E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8ec26000 -     0x7fff8ec3afff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
        0x7fff8ec3b000 -     0x7fff8ec3cff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8ec3d000 -     0x7fff8ec4cff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff8ecef000 -     0x7fff8ed10fff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8ed11000 -     0x7fff8ed47fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
        0x7fff8ed48000 -     0x7fff8ed4bfff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
        0x7fff8ed68000 -     0x7fff8edc2fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
        0x7fff8edc5000 -     0x7fff8ee97ff7  com.apple.CoreText (260.0 - 275.17) <AB493289-E188-3CCA-8658-1E5039715F82> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff8ee98000 -     0x7fff8fac5fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8fad1000 -     0x7fff8fbdcfff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
        0x7fff8fbea000 -     0x7fff8fc29ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
        0x7fff8fc2a000 -     0x7fff8fcc4fff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
        0x7fff8fcdd000 -     0x7fff8fdd2fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff9005d000 -     0x7fff90063ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff90064000 -     0x7fff900ccfff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
        0x7fff900d3000 -     0x7fff900d8fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff900e1000 -     0x7fff9010cfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff90151000 -     0x7fff901a8ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
        0x7fff901f9000 -     0x7fff90357fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
        0x7fff903c8000 -     0x7fff90804fff  com.apple.VideoToolbox (1.0 - 926.106) <B1185D9D-02AC-3D27-B894-21B1179F2AEF> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff90805000 -     0x7fff90812ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff90813000 -     0x7fff9082afff  libGL.dylib (8.10.1) <F8BABA3C-7810-3A65-83FC-61945AA50E90> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9082b000 -     0x7fff9082cff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff9082d000 -     0x7fff9082eff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
        0x7fff908ec000 -     0x7fff90945ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
        0x7fff90c0b000 -     0x7fff90c0cfff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff90c0d000 -     0x7fff90c0ffff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
        0x7fff90c1f000 -     0x7fff90c23fff  libGIF.dylib (851) <AD40D084-6E34-38CD-967D-705F94B188DA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff90c6e000 -     0x7fff90c6effd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <6D314680-7409-3BC7-A807-36341411AF9A> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff90cb9000 -     0x7fff90f68fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
        0x7fff90f69000 -     0x7fff91104fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
        0x7fff91105000 -     0x7fff9127aff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff9134f000 -     0x7fff91366fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
        0x7fff91606000 -     0x7fff91608fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
        0x7fff91609000 -     0x7fff9161bff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff9161c000 -     0x7fff9161cfff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
        0x7fff9161d000 -     0x7fff91934ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
        0x7fff91935000 -     0x7fff91943fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff919d5000 -     0x7fff91a12fef  libGLImage.dylib (8.10.1) <91E31B9B-4141-36D5-ABDC-20F1D6D1D0CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
        0x7fff91a13000 -     0x7fff91a14ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff91a15000 -     0x7fff91a83ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff91b44000 -     0x7fff91d79ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91d7a000 -     0x7fff91fd5ff7  com.apple.QuartzComposer (5.1 - 287.1) <D1DD68D1-05D5-3037-ABB6-BF6EB183C155> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
        0x7fff91fd6000 -     0x7fff91fddfff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff92178000 -     0x7fff92275ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff92276000 -     0x7fff9233bff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff9233c000 -     0x7fff923a5fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff923a6000 -     0x7fff923b1ff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
        0x7fff923b2000 -     0x7fff923d4ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff923f0000 -     0x7fff92960ff7  com.apple.CoreAUC (6.22.03 - 6.22.03) <A77BC97A-B695-3F7E-8696-5B2357C2726B> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff92961000 -     0x7fff929b0fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff929b1000 -     0x7fff929e2ff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
        0x7fff929e3000 -     0x7fff92a64fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
        0x7fff92a65000 -     0x7fff92aa8ff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
        0x7fff92aa9000 -     0x7fff92aa9fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff92aaa000 -     0x7fff92ab6fff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
        0x7fff92aba000 -     0x7fff92abcff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
        0x7fff92ac8000 -     0x7fff92c39ff7  com.apple.QTKit (7.7.1 - 2599.41) <A645347D-3EEC-34A7-8051-A57AC60151EF> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff92fc6000 -     0x7fff932f6fff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
        0x7fff94308000 -     0x7fff945acff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
        0x7fff9460a000 -     0x7fff94638ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff946de000 -     0x7fff946dffff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff946ec000 -     0x7fff946efff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff946f0000 -     0x7fff9473cfff  com.apple.framework.CoreWLAN (3.4 - 340.18) <BCFA14A9-728C-371A-936E-2EDF2EC2F40F> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff9494d000 -     0x7fff949acfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
        0x7fff949b2000 -     0x7fff94d11fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff94d12000 -     0x7fff94dc3fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
        0x7fff94dc4000 -     0x7fff94f16fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff94fd0000 -     0x7fff95052ff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff95060000 -     0x7fff951e6fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
        0x7fff953d5000 -     0x7fff95424ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
        0x7fff95425000 -     0x7fff95442ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
        0x7fff95443000 -     0x7fff9545afff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
        0x7fff9545b000 -     0x7fff95470ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff9554d000 -     0x7fff95577ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff9558d000 -     0x7fff955b4fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
        0x7fff955b5000 -     0x7fff955b8fff  libRadiance.dylib (851) <C317B2C7-CA3A-329F-B6DC-7CC33FE08C81> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff955ec000 -     0x7fff9570492f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff95705000 -     0x7fff95784ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
        0x7fff95785000 -     0x7fff95805ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
        0x7fff95861000 -     0x7fff958eeff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
        0x7fff958f1000 -     0x7fff958f1fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff958f2000 -     0x7fff9598dfff  com.apple.CoreSymbolication (3.0 - 117) <7D43ED93-BD81-338C-8076-6A932A1D19E8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
        0x7fff95995000 -     0x7fff959efff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff95a73000 -     0x7fff95aadff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff95b0e000 -     0x7fff95b12ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff95e37000 -     0x7fff95e3afff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
        0x7fff95e9d000 -     0x7fff96138ff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff96264000 -     0x7fff9637dfff  com.apple.ImageIO.framework (3.2.2 - 851) <6552C673-9F29-3B31-A12E-C4391A950965> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff96380000 -     0x7fff96384fff  libCoreVMClient.dylib (32.5) <DB009CD4-BB0E-3331-BBB4-A118781D193F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
        0x7fff96385000 -     0x7fff96482fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff96483000 -     0x7fff96491ff7  libkxld.dylib (2050.48.11) <6D1610C7-79F8-38A5-BFB2-F58F134BC8EA> /usr/lib/system/libkxld.dylib
        0x7fff96d4b000 -     0x7fff96e4dfff  libJP2.dylib (851) <26FFBDBF-9CCE-33D7-A45B-0A31C98DA37E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff96e5a000 -     0x7fff96e65ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
        0x7fff96e66000 -     0x7fff96eb2ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff96eb3000 -     0x7fff96ed8ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff96ed9000 -     0x7fff96ed9fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff96eda000 -     0x7fff96ef0fff  com.apple.MultitouchSupport.framework (237.4 - 237.4) <0F7FEE29-161B-3D8E-BE91-308CBD354461> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
        0x7fff96f33000 -     0x7fff96f39fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff96f75000 -     0x7fff97123fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff971c4000 -     0x7fff971cdff7  com.apple.CommerceCore (1.0 - 26.2) <AF35874A-6FA7-328E-BE30-8BBEF0B741A8> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
        0x7fff971ce000 -     0x7fff971d3fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff971ef000 -     0x7fff971f3ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
        0x7fff97345000 -     0x7fff97371fff  com.apple.framework.Apple80211 (8.5 - 850.252) <73506CA1-CF76-3A98-A6F2-3DDAC10CB67A> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff973e7000 -     0x7fff973e9fff  libCVMSPluginSupport.dylib (8.10.1) <F0239392-E0CB-37D7-BFE2-D6F5D42F9196> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
        0x7fff973eb000 -     0x7fff97436fff  com.apple.CoreMedia (1.0 - 926.106) <64467905-48DC-37F9-9F32-186768CF2640> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff97437000 -     0x7fff974eaff7  com.apple.PDFKit (2.8.5 - 2.8.5) <EAAED40E-7B2C-3312-826E-26A9DEDBF0FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
        0x7fff974eb000 -     0x7fff97517fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
        0x7fff97521000 -     0x7fff97548ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
        0x7fff97549000 -     0x7fff975e7ff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
        0x7fff975e8000 -     0x7fff97610fff  libJPEG.dylib (851) <64A3EB03-34FB-308C-817B-6106D1F4D80F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff97611000 -     0x7fff97674fff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff97675000 -     0x7fff9767bfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff9767c000 -     0x7fff97684ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff97685000 -     0x7fff9769afff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
        0x7fff9775a000 -     0x7fff9776dff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff977b5000 -     0x7fff97849ff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff978fd000 -     0x7fff97907fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
        0x7fff97908000 -     0x7fff97910fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff97911000 -     0x7fff97967fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
        0x7fff97968000 -     0x7fff97976ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff97977000 -     0x7fff979adfff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff979e7000 -     0x7fff97a54ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
        0x7fff97b03000 -     0x7fff97b25ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff97b26000 -     0x7fff97b31fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff97db4000 -     0x7fff97db4fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 474
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=290.7M resident=173.9M(60%) swapped_out_or_unallocated=116.8M(40%)
    Writable regions: Total=24.3M written=1292K(5%) resident=1560K(6%) swapped_out=0K(0%) unallocated=22.8M(94%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             11.5M
    MALLOC guard page                    48K
    STACK GUARD                        56.0M
    Stack                              8192K
    __DATA                             28.1M
    __IMAGE                             528K
    __LINKEDIT                         68.6M
    __TEXT                            222.1M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             395.4M
    System Profile:
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 13 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Network Service: Ethernet 10.19, Ethernet, en0
    Serial ATA Device: OWC Mercury EXTREME Pro 6G SSD, 480.1 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: iPad, apple_vendor_id, 0x12ab, 0x26200000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06110000 / 3
    FireWire Device: OEM ATA Device 00, Other World Computing, 800mbit_speed

  • Adobe Creative Cloud Crashes on startup under OS X 10.8.5

    After working with Adobe Support on the problem of the Adobe Creative Cloud Installer crashing:
    http://forums.adobe.com/thread/1301546
    The Adobe Support person had be create a root account to install Adobe Creative Cloud.   While this did allow me to install the Adobe Creative Cloud.app, it does not allow be to run it as a normal user or as an administrator user.
    When I attempt to run the Adobe Creative Cloud.app, it crashes immediately on startup under OS X 10.8.5 unless I am running logged into the root account.  This happens when I try to run Adobe Creative Cloud.app as a standard user or as a user with admin privileges.
    In other words, the only way I am able to run the Adobe Creative Cloud application is if I take the dangerious option of enablign the root account, logging into it and then directly running the application.
    See the next message for a crash dump.
    Please advise me on how I can run Adobe Creative Cloud.app without having to both enable and login to the root account.

    Here is the crash report when I attempt to run Adobe Creative Cloud.app without dangerious option of enablign the root account, logging into it and then directly running the application:
    Process:         Creative Cloud [535]
    Path:            /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
    Identifier:      com.adobe.acc.AdobeCreativeCloud
    Version:         2.1.2.232 (2.1.2.232)
    Code Type:       X86 (Native)
    Parent Process:  launchd [160]
    User ID:         501
    Date/Time:       2013-09-24 00:51:57.293 +0200
    OS Version:      Mac OS X 10.8.5 (12F37)
    Report Version:  10
    Interval Since Last Report:          108 sec
    Crashes Since Last Report:           2
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      67B74E60-DD9E-19A1-5BD5-D6CBA5C03C63
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    /Applications/Utilities/Adobe Creative Cloud/ACC/Creative Cloud.app/Contents/MacOS/Creative Cloud
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x974243ba __kill + 10
    1   libsystem_kernel.dylib                  0x974234b8 kill$UNIX2003 + 32
    2   libsystem_c.dylib                       0x9962b660 abort + 215
    3   libc++abi.dylib                         0x96cab7e0 abort_message + 151
    4   libc++abi.dylib                         0x96ca9249 default_terminate() + 34
    5   libc++abi.dylib                         0x96ca9289 safe_handler_caller(void (*)()) + 13
    6   libc++abi.dylib                         0x96ca92f1 std::terminate() + 23
    7   libc++abi.dylib                         0x96caa3e6 __cxa_throw + 110
    8   com.adobe.acc.AdobeCreativeCloud          0x000be09f 0x9f000 + 127135
    9   com.adobe.acc.AdobeCreativeCloud          0x000be1e6 0x9f000 + 127462
    10  com.adobe.acc.AdobeCreativeCloud          0x000bd86e 0x9f000 + 125038
    11  com.adobe.acc.AdobeCreativeCloud          0x000bd8dc 0x9f000 + 125148
    12  com.adobe.acc.AdobeCreativeCloud          0x000bdb9a 0x9f000 + 125850
    13  com.adobe.acc.AdobeCreativeCloud          0x000bddb6 0x9f000 + 126390
    14  dyld                                    0x8feb1cda ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 230
    15  dyld                                    0x8feb1fde ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 64
    16  dyld                                    0x8feae268 ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&) + 356
    17  dyld                                    0x8feae0ba ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 62
    18  dyld                                    0x8fe9fe05 dyld::initializeMainExecutable() + 211
    19  dyld                                    0x8fea3adb dyld::_main(macho_header const*, unsigned long, int, char const**, char const**, char const**, unsigned long*) + 3050
    20  dyld                                    0x8fe9f376 dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*, unsigned long*) + 704
    21  dyld                                    0x8fe9f077 _dyld_start + 71
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0xbff60bc4  ecx: 0xbff60b3c  edx: 0x974243ba
      edi: 0x9962b596  esi: 0xbff60b74  ebp: 0xbff60b58  esp: 0xbff60b3c
       ss: 0x00000023  efl: 0x00000282  eip: 0x974243ba   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xacc9c054
    Logical CPU: 0
    Binary Images:
       0x9f000 -    0xe8ff7 +com.adobe.acc.AdobeCreativeCloud (2.1.2.232 - 2.1.2.232) <10478D70-6468-35CD-8B3A-8D8D8C3C7B5F> /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/MacOS/Creative Cloud
       0xf8000 -   0x125ff7 +com.growl.growlframework (1.3 - 1.3) <5C271922-7459-3DCB-BDC2-53135B47CDDC> /Applications/Utilities/Adobe Creative Cloud/*/Creative Cloud.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
    0x8fe9e000 - 0x8fed0e57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90008fff  libremovefile.dylib (23.2) <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x90009000 - 0x90032fff  libxslt.1.dylib (11.3) <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x90033000 - 0x90075ff7  libcups.2.dylib (327.7) <6FAC537D-7EC3-3E82-B6E8-F87DE07546B5> /usr/lib/libcups.2.dylib
    0x90076000 - 0x900ebff7  com.apple.ApplicationServices.ATS (332 - 341.1) <95206704-F9C9-33C4-AF25-FE9890E160B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x900ec000 - 0x900f9ff7  com.apple.AppleFSCompression (49 - 1.0) <166AA1F8-E50A-3533-A3B5-8737C5118CC3> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x901b2000 - 0x901b6fff  com.apple.IOSurface (86.0.4 - 86.0.4) <6431ACB6-561B-314F-9A2A-FAC1578FCC86> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x901b7000 - 0x901dcffb  com.apple.framework.familycontrols (4.1 - 410) <B1755756-BEA2-3205-ADAA-68FCC32E60BD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x901e4000 - 0x901ecfff  libcopyfile.dylib (89) <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x901ed000 - 0x905a5ffa  libLAPACK.dylib (1073.4) <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x905a6000 - 0x9062bff7  com.apple.SearchKit (1.4.0 - 1.4.0) <454E950F-291C-3E95-8F35-05CA0AD6B327> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x906b6000 - 0x906bfff9  com.apple.CommonAuth (3.0 - 2.0) <B28B58CA-C5B1-378E-A969-6A36C7F754D1> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x906c0000 - 0x906ccffe  libkxld.dylib (2050.48.11) <CDE64419-0291-3E5E-906D-2974E25AC008> /usr/lib/system/libkxld.dylib
    0x906cd000 - 0x9076dff7  com.apple.QD (3.42.1 - 285.1) <BAAC13D2-1312-33C0-A255-FAB1D314C324> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x9076e000 - 0x9077cfff  libxar.1.dylib (105) <343E4A3B-1D04-34A3-94C2-8C7C9A8F736B> /usr/lib/libxar.1.dylib
    0x90c25000 - 0x90d7effb  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <461C4CCD-5F52-3D2F-AE22-D0CA7EF3F01A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90d80000 - 0x90d8afff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <B855E8B4-2EE3-3BFF-8547-98A0F084F9AF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x90d8b000 - 0x90d8eff7  libcompiler_rt.dylib (30) <CE5DBDB4-0124-3E2B-9105-989DF98DD108> /usr/lib/system/libcompiler_rt.dylib
    0x90d8f000 - 0x90d98fff  com.apple.CommerceCore (1.0 - 26.2) <B05709DD-3755-3635-B0CC-6CBBD17CFBD5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x90daa000 - 0x90e24ff3  com.apple.securityfoundation (6.0 - 55115.4) <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x90e38000 - 0x90e38fff  com.apple.vecLib (3.8 - vecLib 3.8) <2D2064EB-FDD5-38AB-B722-4AFA4C6EE0C9> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x911b2000 - 0x911d1ff3  com.apple.Ubiquity (1.2 - 243.15) <E10A2937-D671-3D14-AF8D-BA25E601F458> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x911d2000 - 0x911d4fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x911d5000 - 0x911e5ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0) <875363E7-6D02-3229-A9DD-E5A5568A7D61> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x911e6000 - 0x911e9ffc  libCoreVMClient.dylib (32.5) <CA150AC5-F98C-3F96-8B11-715B75A89C80> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x911ea000 - 0x91238ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <6E858B9F-337A-314E-88B7-24A274ACE568> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x91244000 - 0x912a6fff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x912ab000 - 0x912afffe  libcache.dylib (57) <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x912b0000 - 0x91347ff7  com.apple.ink.framework (10.8.2 - 150) <D90FF7BC-6B90-39F1-AC52-670269947C58> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x9134c000 - 0x9134dfff  libquarantine.dylib (52.1) <094A1501-373E-3397-B632-8F7C5AC8EFD5> /usr/lib/system/libquarantine.dylib
    0x9134e000 - 0x913caff3  com.apple.Metadata (10.7.0 - 707.12) <D9221655-56FE-332C-82FF-0CA7EDD521C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x914dc000 - 0x91617ff7  libBLAS.dylib (1073.4) <FF74A147-05E1-37C4-BC10-7DEB57FE5326> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x916a6000 - 0x916aaff7  libmacho.dylib (829) <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x916ab000 - 0x916aeffc  libpam.2.dylib (20) <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x916af000 - 0x916d3fff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x916f6000 - 0x91713fff  libCRFSuite.dylib (33) <C9D72D0C-871A-39A2-8AFB-682D11AE7D0D> /usr/lib/libCRFSuite.dylib
    0x91714000 - 0x9174ffef  libGLImage.dylib (8.10.1) <E29ED217-09B3-3436-A961-B6F8EBAA7BED> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x917cd000 - 0x919e4fff  com.apple.CoreData (106.1 - 407.7) <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x919e6000 - 0x925a2ff3  com.apple.AppKit (6.8 - 1187.39) <ACA24416-D910-39B8-9387-52A6C6A561F8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x925a3000 - 0x925acffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x925ad000 - 0x92611ff7  com.apple.datadetectorscore (4.1 - 269.3) <C11C2014-298E-3E2B-9F5D-02CCD3CA4AB3> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x92612000 - 0x9261bfff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <89822A83-B450-3363-8E9C-9B80CB4450B1> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9261c000 - 0x9276affb  com.apple.CFNetwork (596.5 - 596.5) <E2EE5B64-4DFD-3D5E-BB38-9DD0899FFB42> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x93521000 - 0x93530fff  libGL.dylib (8.10.1) <74BE67B7-9EA0-3F16-B43B-48CB92C9ED27> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93531000 - 0x93535ffc  libGIF.dylib (851) <4821D945-2E32-3007-8E97-4A69807046FF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93f16000 - 0x94007ffc  libiconv.2.dylib (34) <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x94008000 - 0x94016ff7  libz.1.dylib (43) <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x94017000 - 0x94019ffb  libRadiance.dylib (851) <2739A726-2E9C-38DC-8A6E-412ABDC14405> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x941ae000 - 0x941aefff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <E54083A7-7467-3C3C-B30F-EE14C8D781A1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x9449c000 - 0x944a8ffa  com.apple.CrashReporterSupport (10.8.3 - 418) <03BC564E-35FE-384E-87D6-6E0C55DF16E3> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x944a9000 - 0x944e8ff7  com.apple.bom (12.0 - 192) <0637E52C-D151-37B3-904F-8656B2FD44DD> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9451f000 - 0x94522ff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x94523000 - 0x945d2ff7  com.apple.CoreText (260.0 - 275.17) <433387A6-69C1-32A5-9B61-9E2F6A5F9040> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x945d3000 - 0x946e0ff3  com.apple.ImageIO.framework (3.2.2 - 851) <36EEBDDC-0619-327E-826F-4413217C9D21> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x946e1000 - 0x946ebfff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x946ec000 - 0x94730ff7  libGLU.dylib (8.10.1) <5520818E-F290-3942-80B8-370CF9C9B54C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94731000 - 0x94756ff7  com.apple.CoreVideo (1.8 - 99.4) <A26DE896-32E0-3D5E-BA89-02AD23FA96B3> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94757000 - 0x9484fff9  libsqlite3.dylib (138.1) <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x9485e000 - 0x9485efff  libkeymgr.dylib (25) <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x949f0000 - 0x94bd8ffb  com.apple.CoreFoundation (6.8 - 744.19) <DDD3AA21-5B5F-3D8F-B137-AD95FCA89064> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94bd9000 - 0x94bdaffd  com.apple.TrustEvaluationAgent (2.0 - 23) <E42347C0-2D3C-36A4-9200-757FFA61B388> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x94bdb000 - 0x94c73fff  com.apple.CoreServices.OSServices (557.6 - 557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x94f23000 - 0x94f23fff  com.apple.CoreServices (57 - 57) <956C6C6D-A5DD-314F-9C57-4A61D41F30CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94f24000 - 0x94f51ffe  libsystem_m.dylib (3022.6) <9975D9C3-3B71-38E3-AA21-C5C5F9D9C431> /usr/lib/system/libsystem_m.dylib
    0x94f83000 - 0x95037fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x950b2000 - 0x954cffff  FaceCoreLight (2.4.1) <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x954d0000 - 0x954dcff7  com.apple.NetAuth (4.0 - 4.0) <4983C4B8-9D95-3C4D-897E-07743326487E> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x954dd000 - 0x955dbff7  libFontParser.dylib (84.6) <7D3EB3CC-527E-3A74-816A-59CAFD2260A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x956a6000 - 0x956bffff  com.apple.Kerberos (2.0 - 1) <9BDE8F4D-DBC3-34D1-852C-898D3655A611> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x956c0000 - 0x957cd057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x957ce000 - 0x957d5fff  libsystem_dnssd.dylib (379.38.1) <4F164CA8-4A4F-3B27-B88A-0926E2FEB7D4> /usr/lib/system/libsystem_dnssd.dylib
    0x957d6000 - 0x95809ff3  com.apple.GSS (3.0 - 2.0) <EFFA5947-B6BA-3171-B667-9CCB17E0FF2A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9580a000 - 0x9580affd  com.apple.audio.units.AudioUnit (1.9.2 - 1.9.2) <CFAAB1B1-DBC7-3FF1-97BA-065C6620360D> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9580b000 - 0x95811fff  libGFXShared.dylib (8.10.1) <99622AD6-7A1D-368E-B163-A38400885B45> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x95812000 - 0x95873ff7  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <C1D471E9-B4D6-3A59-975C-B3B3A25E6058> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x95874000 - 0x958a5fff  com.apple.DictionaryServices (1.2 - 184.4) <0D5BE86F-F40A-3E39-8569-19FCA5EDF9D3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x958a6000 - 0x958a8ffd  libCVMSPluginSupport.dylib (8.10.1) <F7CD59FE-314A-366E-9A27-CE5BD1D438BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x958a9000 - 0x958f8ff6  libTIFF.dylib (851) <CC0B94FF-DE56-3CE4-AF93-BCA00C03924B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x95904000 - 0x95919fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x9591a000 - 0x95936fff  libPng.dylib (851) <8814CC4D-A472-32CD-8D5C-24F35240F28B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x95937000 - 0x959a6ffb  com.apple.Heimdal (3.0 - 2.0) <C007CED7-DDC9-3BA1-8077-294FAE9C78D5> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x95c15000 - 0x95c15ffd  libOpenScriptingUtil.dylib (148.3) <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x95c16000 - 0x95c70ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x95c71000 - 0x95c83ff7  libdispatch.dylib (228.23) <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x96422000 - 0x96422fff  libsystem_blocks.dylib (59) <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F> /usr/lib/system/libsystem_blocks.dylib
    0x96423000 - 0x96423fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <D4F5AB2C-0727-39FD-8EE9-E4DD3D78EB2E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96424000 - 0x965adff7  com.apple.vImage (6.0 - 6.0) <1D1F67FE-4F75-3689-BEF6-4A46C8039E70> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x965ae000 - 0x965c4fff  com.apple.CFOpenDirectory (10.8 - 151.10) <3640B988-F915-3E0D-897C-CB04C95BA601> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x965d1000 - 0x965d8fff  liblaunch.dylib (442.26.2) <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x965d9000 - 0x9666bffb  libvMisc.dylib (380.10) <D9567F48-ED35-3362-B769-50916D30C601> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x96671000 - 0x9675aff7  libxml2.2.dylib (22.3) <015A4FA6-5BB9-3F95-AFB8-B9281E22685B> /usr/lib/libxml2.2.dylib
    0x9675b000 - 0x96a60ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <4DB4B0C9-1377-3062-BE0E-CD3326ACDAF0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x96a61000 - 0x96a7efff  libxpc.dylib (140.43) <C628073D-51A0-3541-A665-1121520508C6> /usr/lib/system/libxpc.dylib
    0x96aba000 - 0x96ad7ff7  libresolv.9.dylib (51) <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x96ad8000 - 0x96ad9ffd  libunc.dylib (25) <58599CBF-E262-3CEA-AFE1-35560E0177DC> /usr/lib/system/libunc.dylib
    0x96ada000 - 0x96b40fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x96b41000 - 0x96b61ffd  com.apple.ChunkingLibrary (2.0 - 133.3) <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x96b62000 - 0x96b86fff  libJPEG.dylib (851) <2425AE18-C181-3371-922F-4A09C1AC71CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96bd3000 - 0x96ca7ff3  com.apple.backup.framework (1.4.3 - 1.4.3) <6EA22ED3-BA18-3A37-AE05-5D6FDA3F372F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96ca8000 - 0x96ccafff  libc++abi.dylib (26) <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x96ccb000 - 0x96ccbfff  com.apple.ApplicationServices (45 - 45) <677C4ACC-9D12-366F-8A87-B898AC806DD9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x96ccc000 - 0x96d76fff  com.apple.LaunchServices (539.9 - 539.9) <C0E0CFFF-3714-3467-87DA-4A6F0AF1953B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x96d77000 - 0x96d78fff  libDiagnosticMessagesClient.dylib (8) <39B3D25A-148A-3936-B800-0D393A00E64F> /usr/lib/libDiagnosticMessagesClient.dylib
    0x96d79000 - 0x96dd3fff  com.apple.Symbolication (1.3 - 93) <A839CFC2-F870-3652-B353-15A55D88F88D> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x96e14000 - 0x96e5cff5  com.apple.opencl (2.2.19 - 2.2.19) <968DD067-49D0-3B71-A96B-B3579698D992> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96e5d000 - 0x96f1bff3  com.apple.ColorSync (4.8.0 - 4.8.0) <EFEDCB37-4F20-3CEC-A185-5D2976E11BAC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x97093000 - 0x9709efff  libcommonCrypto.dylib (60027) <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9> /usr/lib/system/libcommonCrypto.dylib
    0x970a9000 - 0x970b0ffb  libunwind.dylib (35.1) <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x97410000 - 0x9742affc  libsystem_kernel.dylib (2050.48.11) <BC3F8E07-5606-3A05-9BF8-C4BACE96BCCD> /usr/lib/system/libsystem_kernel.dylib
    0x9742b000 - 0x97536ff7  libJP2.dylib (851) <0D40428F-B7BE-307B-BEDB-256A7FED9804> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97537000 - 0x97653ffb  com.apple.desktopservices (1.7.4 - 1.7.4) <782D711D-7930-324A-9015-686C2F86DBA3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9768a000 - 0x9769cfff  libbsm.0.dylib (32) <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x9769d000 - 0x976a4ff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x97922000 - 0x97923fff  libdnsinfo.dylib (453.19) <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x97927000 - 0x97be7ff3  com.apple.security (7.0 - 55179.13) <000FD8E9-D070-326A-B386-51314360FD5C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x97be8000 - 0x97c36ffb  libFontRegistry.dylib (100) <3B8350C2-4D8F-38C4-A22E-2F855D7E83D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x97c39000 - 0x97edcff3  com.apple.CoreImage (8.4.0 - 1.0.1) <C25B9EEC-4824-3088-BC08-2EA516C0728C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x9801c000 - 0x9802fff9  com.apple.MultitouchSupport.framework (237.4 - 237.4) <59197044-E513-3223-9337-6EB0F828CB82> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x98030000 - 0x9803affe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9803b000 - 0x9835bff3  com.apple.Foundation (6.8 - 945.18) <BDC56A93-45C5-3459-B307-65A1CCE702C5> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9845a000 - 0x98490ffb  com.apple.DebugSymbols (98 - 98) <9A9ADA0A-E487-3C8F-9998-286EE04C235A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x98491000 - 0x984f9ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <230C6EEC-A926-3720-82DB-25D0FAAEF962> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x984fa000 - 0x984fbfff  liblangid.dylib (116) <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x984fc000 - 0x984fcfff  com.apple.Cocoa (6.7 - 19) <354094F0-F36B-36F9-BF5F-FD60590FBEB9> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x984fd000 - 0x98598fff  com.apple.CoreSymbolication (3.0 - 117) <9ECC6770-6FBB-36B3-A4EE-0B60875019A9> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x98599000 - 0x989dbff7  com.apple.CoreGraphics (1.600.0 - 333.1) <76C4858B-AD0A-3165-A65D-64729D6F186C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x98ad4000 - 0x98b38ff3  libstdc++.6.dylib (56) <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x98bb5000 - 0x98bccfff  com.apple.GenerationalStorage (1.1 - 132.3) <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x98c18000 - 0x98c1cfff  com.apple.OpenDirectory (10.8 - 151.10) <A1858D81-086F-3BF5-87E3-9B70409FFDF6> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x98c1d000 - 0x98c5fffb  com.apple.RemoteViewServices (2.0 - 80.6) <AE962502-4539-3893-A2EB-9D384652AEAC> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x98c60000 - 0x98c61fff  libsystem_sandbox.dylib (220.3) <C532F6A6-7E85-38F3-8660-EC1066DF67BE> /usr/lib/system/libsystem_sandbox.dylib
    0x98c62000 - 0x98cb9ff3  com.apple.HIServices (1.20 - 417) <561A770B-8523-3D09-A763-11F872779A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x98cbd000 - 0x98e79ffd  libicucore.A.dylib (491.11.3) <FF55E176-7D66-3DBB-AF86-84744C47A02C> /usr/lib/libicucore.A.dylib
    0x98e7a000 - 0x98e86ff8  libbz2.1.0.dylib (29) <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x98e87000 - 0x98ec9fff  libauto.dylib (185.4) <3098A75E-438E-3F18-BAAC-CD8F1CC7C2F7> /usr/lib/libauto.dylib
    0x98eca000 - 0x98f16fff  libcorecrypto.dylib (106.2) <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x991e3000 - 0x991e3fff  libSystem.B.dylib (169.3) <F479E729-89C7-3B4C-9731-678EB673A861> /usr/lib/libSystem.B.dylib
    0x991ea000 - 0x995cdfff  com.apple.HIToolbox (2.0 - 626.1) <ECC3F04F-C4B7-35BF-B10E-183B749DAB92> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x995ce000 - 0x995dcff3  libsystem_network.dylib (77.10) <7FBF5A15-97BA-3721-943E-E77F0C40DBE1> /usr/lib/system/libsystem_network.dylib
    0x995dd000 - 0x9969affb  libsystem_c.dylib (825.40.1) <A5C0B70C-5F14-3BF8-AA5B-B22E7B12A4AE> /usr/lib/system/libsystem_c.dylib
    0x9969b000 - 0x996f2ff7  com.apple.ScalableUserInterface (1.0 - 1) <2B5E454B-BC49-3E85-B54D-1950397C448C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x996f3000 - 0x99701fff  com.apple.opengl (1.8.10 - 1.8.10) <385E048A-FFB2-348A-8F80-572C2494A776> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x99702000 - 0x9987aff5  com.apple.QuartzCore (1.8 - 304.3) <F2EFC117-CDC6-3252-A4A8-880965764385> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x99cca000 - 0x99d31fe7  libvDSP.dylib (380.10) <A9BB03FC-F70B-388F-8917-F8CE69F2164A> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x99d32000 - 0x99d5eff7  libsystem_info.dylib (406.17) <AA5611DB-A944-3072-B6BE-ACAB08689547> /usr/lib/system/libsystem_info.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 492
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=112.7M resident=27.5M(24%) swapped_out_or_unallocated=85.2M(76%)
    Writable regions: Total=19.5M written=228K(1%) resident=440K(2%) swapped_out=0K(0%) unallocated=19.1M(98%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             11.3M
    MALLOC guard page                    48K
    Memory tag=35                      7480K
    Stack                              64.0M
    VM_ALLOCATE                         632K
    __DATA                             5048K
    __DATA/__OBJC                       180K
    __IMAGE                             528K
    __LINKEDIT                         30.3M
    __OBJC                             1532K
    __OBJC/__DATA                       128K
    __PAGEZERO                            4K
    __TEXT                             82.4M
    __UNICODE                           544K
    mapped file                        83.0M
    shared memory                        12K
    ===========                      =======
    TOTAL                             286.7M
    System Profile:
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.66 GHz, 8 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1067 MHz, 0x857F, 0x483634353155363446373036364700000000
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 13 devices, 3 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Network Service: Ethernet 10.19, Ethernet, en0
    Serial ATA Device: OWC Mercury EXTREME Pro 6G SSD, 480.1 GB
    Serial ATA Device: HL-DT-ST DVDRW  GS23N
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24400000 / 2
    USB Device: iPad, apple_vendor_id, 0x12ab, 0x26200000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8213, 0x06110000 / 3
    FireWire Device: OEM ATA Device 00, Other World Computing, 800mbit_speed

  • How do I stop Adobe Bridge, Excel, Word and Adobe Photo Downloader from loading at startup under Mac OS 10.7.1, they are not loaded in login items.

    How do I stop Adobe Bridge, Excel, Word and Adobe Photo Downloader from loading at startup under Mac OS 10.7.1, they are not loaded in login items.

    When you shut down this window appears.
    Uncheck the reopen box and it should stop this from happening

  • Building PHP 5.2.5 and MySQL (Cannot find MySQL header files under /usr.)

    Hi,
    we are in big trouble here. On Mac OS X 10.4 it was no problem building PHP with additional modules. Unfortunately it´s not working this time.
    This is the error message i got when building php:
    checking for mSQL support... no
    checking for MSSQL support via FreeTDS... no
    checking for MySQL support... yes
    checking for specified location of the MySQL UNIX socket... /var/mysql/mysql.sock
    checking for MySQL UNIX socket location... /var/mysql/mysql.sock
    configure: error: Cannot find MySQL header files under /usr.
    Note that the MySQL client library is not bundled anymore!
    Looks like some libs are missing?!
    find / -iname 'libmysqlclient*'
    That doesn´t helper neither. No results.
    Any idera what´s wrong here?

    the php in 10.5 uses extensions, you do not need to rebuild php to get mssql to work..
    Take a look at http://downloads.topicdesk.com/docs/AddingGD2_to_PHP_on_OS_X_Server_10_5Leopard.pdf
    as you can see in that example GD is built separately, mssql is the same.. do a google search on mssql.so and you will find a bunch of info (most of it is for linux but you should be able to get the info to work)

  • How can I get Mail to stop automatically opening on startup of my MacBook?

    How can I get Mail to stop automatically opening on startup of my MacBook Pro? It's not in my startup items folder. But it auto-opens every time I boot up

    In System Preferences / General make sure the Restore Windows ...... is unchecked.
    Also uncheck in the shutdown dialog box

  • I purchased a CD on itunes and it charged automatically to the card under the account, but I wanted it to charge to my gift card.  How do I get a refund and get the music to charge to my gift card instead?

    I purchased a CD on itunes and it charged automatically to the card under the account, but I wanted it to charge to my gift card.  How do I get a refund and get the music to charge to my gift card instead?

    Hi TKCDM1!
    You should try to get this purchase onto your iOS device by using the suggestions in the following article:
    Downloading past purchases from the iTunes Store, App Store, and iBooks Store
    http://support.apple.com/kb/ht2519
    Thanks for being a part of the Apple Support Communities!
    Regards,
    Braden

Maybe you are looking for