R11 recovery

Hi;
I need help :)
The senerio is:
I have 11.5.10.2 instance on linux i have cold backup and rman backup ok?
i install new linux and copy cold backup-rman backup to this new server. I close 11.5.10.2 and server
I give same IP and hostname to my new linux server. created 2 user as oravis and applvis, give permission to visdata and visdb-archivelog(folder) for oravis
When i connect sqlplus with oravis and say startup oracle is opening. But i want to make recovery by RMAN!
so i rename visdata folder and connect sqlplus and run this:
SQL> startup force mount;
ORACLE instance started.
Total System Global Area 581506668 bytes
Fixed Size 452204 bytes
Variable Size 402653184 bytes
Database Buffers 167772160 bytes
Redo Buffers 10629120 bytes
ORA-00205: error in identifying controlfile, check alert log for more info
what i have to do? I did those:
RMAN> STARTUP NOMOUNT;
database is already started
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of startup command at 07/29/2009 08:59:37
ORA-03114: not connected to ORACLE
I try this :
SQL> startup mount pfile=/u01/VIS/visdb/9.2.0/dbs/initVIS.ora;
ORACLE instance started.
Total System Global Area  581506668 bytes
Fixed Size                   452204 bytes
Variable Size             402653184 bytes
Database Buffers          167772160 bytes
Redo Buffers               10629120 bytes
ORA-00205: error in identifying controlfile, check alert log for more info
i try this:
RMAN> restore controlfile from '/u01/archivelog/backup_db_VIS_S4_P10_T693426844';
Starting restore at 29-JUL-09
using target database controlfile instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=11 devtype=DISK
channel ORA_DISK_1: restoring controlfile
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 07/29/2009 08:58:08
ORA-19611: backup piece out of order.  Expected 1 but found 10
In '/u01/archivelog/" i have those:
+1_10.dbf backup_db_VIS_S4_P11_T693426844 backup_db_VIS_S4_P2_T693426844 backup_db_VIS_S4_P8_T693426844+
+1_7.dbf backup_db_VIS_S4_P12_T693426844 backup_db_VIS_S4_P3_T693426844 backup_db_VIS_S4_P9_T693426844+
+1_8.dbf backup_db_VIS_S4_P13_T693426844 backup_db_VIS_S4_P4_T693426844 backup_db_VIS_S5_P1_T693434129+
+1_9.dbf backup_db_VIS_S4_P14_T693426844 backup_db_VIS_S4_P5_T693426844 c-247172238-20090728-00+
+backup_db_VIS_S3_P1_T693426836 backup_db_VIS_S4_P15_T693426844 backup_db_VIS_S4_P6_T693426844 snapcf_PROD.f+
+backup_db_VIS_S4_P10_T693426844 backup_db_VIS_S4_P1_T693426844 backup_db_VIS_S4_P7_T693426844+
Any idea;
Thanks

Hi hussein;
I worked all weekend and i guess i handle problem;
I followed those steps;
rman target /
CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u01/archivelog/ctrl_%F';
CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT   '/u01/archivelog/backup_db_%d_s%s_p%p_%T' MAXPIECESIZE 5120 M
CONFIGURE BACKUP OPTIMIZATION ON;
exit
rman target /
BACKUP CURRENT CONTROLFILE;
SQL 'ALTER SYSTEM ARCHIVE LOG CURRENT';
backup archivelog all;
BACKUP DATABASE;
And then i copied file from machine A to B; ( Upper process done on machine A)
And on B machine:
Copied ORACLE_HOME from machine A to B. Created user as oravis then give permission for ORACLE_HOME on machine B; then
SQL> startup mount;
ORACLE instance started.
Total System Global Area  581506668 bytes
Fixed Size                   452204 bytes
Variable Size             402653184 bytes
Database Buffers          167772160 bytes
Redo Buffers               10629120 bytes
ORA-00205: error in identifying controlfile, check alert log for more info
so i started to open db nomoun mode:
SQL> startup nomount;
ORACLE instance started.
Total System Global Area  581506668 bytes
Fixed Size                   452204 bytes
Variable Size             402653184 bytes
Database Buffers          167772160 bytes
Redo Buffers               10629120 bytes
SQL>
wiht rman:
RMAN> RESTORE CONTROLFILE;
S+tarting restore at 30-JUL-09+
using target database controlfile instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=12 devtype=DISK
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 07/30/2009 08:31:43
RMAN-06563: controlfile or SPFILE must be restored using FROM AUTOBACKUP
then i try:
RMAN> restore controlfile from '/u01/archivelog/ctrl_c-247172238-20090730-01';
Starting restore at 31-JUL-09
using target database controlfile instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=12 devtype=DISK
channel ORA_DISK_1: restoring controlfile
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 07/31/2009 00:24:01
ORA-19504: failed to create file "/u01/VIS/visdata/cntrl01.dbf"
ORA-27040: skgfrcre: create error, unable to create file
Linux Error: 2: No such file or directory
i go and creata manualy visdata folder,then try again
RMAN> restore controlfile from '/u01/archivelog/ctrl_c-247172238-20090730-01';
Starting restore at 31-JUL-09
using channel ORA_DISK_1
channel ORA_DISK_1: restoring controlfile
channel ORA_DISK_1: restore complete
replicating controlfile
input filename=/u01/VIS/visdata/cntrl01.dbf
output filename=/u01/VIS/visdata/cntrl02.dbf
output filename=/u01/VIS/visdata/cntrl03.dbf
Finished restore at 31-JUL-09
then i open db on mount mode;
SQL> alter database mount;
Database altered.
RMAN>recover database;
and then
RMAN>restoder database;
And all fine now
thanks for helping me my friend. I need one more time for your knowledge and advice.
My senerio is i have one instance and it becomes down or burn etc... So my new machine has same hostname and IP... The question is if i want to stand up my db on different hostname and Ip, is there any way to make it?( as i know i can do it by clon process but is there any other way to make it?)
Thanks a lot
YOU ARE THE BEST+

Similar Messages

  • R11 backup -recovery issue

    Hi;
    I wanna learn something about r11 recovery. Plz imagine u have valid backup (rman and cold backup) and those are on tape... Somehow your server became down and ppl say u "this server dead we will give u new server" .
    So you will have one new server on linux. Question is how u make restore? what is steps? We assume our system is r11.5.10.2 and db version 9.2.0.8... For can make recovery what i have to do? I mean
    1. I have new machine and i dont have nothing on it only linux i have, so for restore db what i have to do?
    2. We assume i handle db side and database become up, so then what i have to do for apps side?
    Any information would be soo helpfull
    Thanks alot

    Thanks for replay hussein :)
    Assuming you are using the same hostname and domain name, then you need to restore the database and do the recovery (if required), then bring the database up.yes we assume we use same hostname and domain name there is no doubt
    For RMAN steps, please refer to "Backup and Recovery" manuals.
    Oracle9i Database Online Documentation (Release 2 (9.2))
    http://www.oracle.com/pls/db92/db92.homepage
    For recovery i need RMAN not coldbackup right? I should bring back database wiht rman command
    You will also need to restore the application tier files, and bring the application services up. Please note that you will lost all the log files since the last taken backup (startup/shutdown log files, application log files, concurrent requests log/output files).Hussein it just enough to copy apps folders from cold backup location? or i should do more thing?
    Thanks alot for help

  • Can't install Lion via internet recovery on a 13-inch Mid 2012 MacBook Air

    Hi,
    I've erased my hard disk via Disk utility via Internet Recovery mode and tried to install back Lion. However, it's not going through the installation process. Below is the log of the installation process.
    Mar 28 07:17:24 localhost Unknown[303]: Launching the Language Chooser for an OS Install
    Mar 28 07:17:30 localhost configd[112]: bootp_session_transmit: bpf_write(en0) failed: Network is down (50)
    Mar 28 07:17:30 localhost configd[112]: DHCP en0: INIT transmit failed
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/CoreServices/Archive Utility.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/CoreServices/Dock.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/CoreServices/Finder.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/CoreServices/Screen Sharing.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/Address Book.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/App Store.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/FaceTime.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/iCal.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/iChat.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/Mail.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/Preview.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/QuickTime Player.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/System Preferences.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/TextEdit.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/iTunes.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/Utilities/Console.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /Applications/Utilities/VoiceOver Utility.app
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/Services/AppleSpell.service
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/Services/OpenSpell.service
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/Services/SpeechService.service
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/Services/Spotlight.service
    Mar 28 07:17:30 localhost LCA[304]: Error -10811 retgisting path /System/Library/Image Capture/Support/Image Capture Extension.app
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x10aaefc30=disk1s3=Mac OS X Base System
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=1       (bootable with MKCFPrep but it will rudely carve)
    Mar 28 07:17:31 localhost diskmanagementd[325]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=12=0xc
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM ->T+[DMToolBootPreference getPartitionBootability:]: inUDS=0x10aaefc30=disk1s3=Mac OS X Base System
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootable=1            (bootable right now without any further action)
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootCapable=0         (bootable if you call MKCFPrepareBootDevice)
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMBootSurgeryRequired=0 (for primitive MBR on BIOS, add boot block and loader)
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMFSSurgeryRequired=0   (for primitive MBR on BIOS, add boot block and loader)
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM ..T+[DMToolBootPreference getPartitionBootability:]: PMNewfsRequired=1       (bootable with MKCFPrep but it will rudely carve)
    Mar 28 07:17:36 localhost diskmanagementd[325]: DM <-T+[DMToolBootPreference getPartitionBootability:]: MKerr=0 out=12=0xc
    Mar 28 07:17:36 localhost LCA[304]: Using keyboard layout 223
    Mar 28 07:17:36 localhost Unknown[305]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Mar 28 07:17:36 localhost Unknown[305]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Mar 28 07:17:37 localhost Unknown[305]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Mar 28 07:17:37 localhost Unknown[305]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Mar 28 07:17:37 localhost LCA[304]: Found primary language hint "en"
    Mar 28 07:17:37 localhost LCA[304]: Using keyboard layout 223
    Mar 28 07:17:37 localhost LCA[304]: Found primary language hint "en"
    Mar 28 07:17:37 localhost LCA[304]: Launching the Springboard using language code "English"
    Mar 28 07:17:39 localhost Unknown[305]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Mar 28 07:17:39 localhost Unknown[305]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Mar 28 07:17:39 localhost Unknown[305]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Mar 28 07:17:39 localhost Unknown[305]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Mar 28 19:20:16 localhost Unknown[305]: objc[452]: Class IFJS_Context is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:16 localhost Unknown[305]: objc[452]: Class IFJS_Cache is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:16 localhost Unknown[305]: objc[452]: Class PKRequiredCLDevice is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:16 localhost Unknown[305]: objc[452]: Class PKRequiredGLRenderer is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:16 localhost Unknown[305]: objc[452]: Class PKGraphicsHardwareRequirements is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:27 localhost Unknown[305]: objc[463]: Class IFJS_Context is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:27 localhost Unknown[305]: objc[463]: Class IFJS_Cache is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:27 localhost Unknown[305]: objc[463]: Class PKRequiredCLDevice is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:27 localhost Unknown[305]: objc[463]: Class PKRequiredGLRenderer is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:20:27 localhost Unknown[305]: objc[463]: Class PKGraphicsHardwareRequirements is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:09 localhost Unknown[305]: objc[581]: Class IFJS_Context is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:09 localhost Unknown[305]: objc[581]: Class IFJS_Cache is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:09 localhost Unknown[305]: objc[581]: Class PKRequiredCLDevice is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:09 localhost Unknown[305]: objc[581]: Class PKRequiredGLRenderer is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:09 localhost Unknown[305]: objc[581]: Class PKGraphicsHardwareRequirements is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:46 localhost Unknown[305]: objc[607]: Class IFJS_Context is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:46 localhost Unknown[305]: objc[607]: Class IFJS_Cache is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:46 localhost Unknown[305]: objc[607]: Class PKRequiredCLDevice is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:46 localhost Unknown[305]: objc[607]: Class PKRequiredGLRenderer is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:23:46 localhost Unknown[305]: objc[607]: Class PKGraphicsHardwareRequirements is implemented in both /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit and /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install. One of the two will be used. Which one is undefined.
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1 - ODNodeCreateWithName request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1 - loading configuration for '/Local' from '/System/Library/OpenDirectory/Configurations/Local.plist'
    Mar 28 19:25:30 localhost opendirectoryd[101]: Loaded bundle at path '/System/Library/OpenDirectory/Modules/PlistFile.bundle'
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1 - unable to find authentication module 'ConfigurationProfiles'
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1 - unable to find service discovery callback for module 'PlistFile'
    Mar 28 19:25:30 localhost opendirectoryd[101]: Registering for network changes
    Mar 28 19:25:30 localhost opendirectoryd[101]: Registered subnode with name '/Local/Default'
    Mar 28 19:25:30 localhost opendirectoryd[101]: failed to open local node for internal record copy
    Mar 28 19:25:30 localhost opendirectoryd[101]: Registering for power changes
    Mar 28 19:25:30 localhost opendirectoryd[101]: Registering for network power changes
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1, Node: /Local/Default - node assigned UUID - C343683E-AC8E-4CC2-9080-4B0A58F52284
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.1, Node: /Local/Default - ODNodeCreateWithName completed
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.2 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.2 - ODNodeCopyDetails request, NodeID: C343683E-AC8E-4CC2-9080-4B0A58F52284, Keys: dsAttrTypeStandard:NodePath
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.2, Node: /Local/Default, Module: PlistFile - ODNodeCopyDetails completed, delivered 1 result
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.3 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.3 - ODNodeRelease request, NodeID: C343683E-AC8E-4CC2-9080-4B0A58F52284
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.3, Node: /Local/Default - ODNodeRelease completed
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.4 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.4 - ODNodeCreateWithName request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.4 - ODNodeCreateWithName failed with error 'Unknown node name' (2000)
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.5 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.5 - ODNodeCreateWithName request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Search
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.5 - ODNodeCreateWithName failed with error 'Unknown node name' (2000)
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.6 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.6 - ODNodeCreateWithName request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.6, Node: /Local/Default - node assigned UUID - 612C1709-5150-438C-96A9-6E3FFD8E9CF6
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.6, Node: /Local/Default - ODNodeCreateWithName completed
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.7 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.7 - ODQueryCreateWithNode request, NodeID: 612C1709-5150-438C-96A9-6E3FFD8E9CF6, RecordType(s): dsRecTypeStandard:Users, Attribute: dsAttrTypeStandard:RecordName, MatchType: Any, Equality: CaseIgnore, Value(s): dsRecordsAll, Requested Attributes: dsAttrTypeStandard:GeneratedUID,dsAttrTypeNative:LinkedIdentity,dsAttrTypeStand ard:RealName,dsAttrTypeStandard:GroupMembership,dsAttrTypeStandard:Picture,dsAtt rTypeStandard:UserCertificate,dsAttrTypeStandard:AppleMetaNodeLocation,dsAttrTyp eStandard:RecordType,dsAttrTypeStandard:Comment,dsAttrTypeStandard:NestedGroups, dsAttrTypeStandard:PrimaryGroupID,dsAttrTypeStandard:AuthenticationAuthority,dsA ttrTypeStandard:Keywords,dsAttrTypeStandard:RecordName,dsAttrTypeStandard:JPEGPh oto,dsAttrTypeNative:_guest,dsAttrTypeStandard:AppleMetaRecordName,dsAttrTypeSta ndard:UserShell,dsAttrTypeStandard:GroupMembers,dsAttrTypeStandard:UniqueID,dsAt trTypeStandard:EMailAddress,dsAttrTypeStandard:NFSHomeDirectory, Max Results: 2147483647
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.7, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed, delivered 74 results
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.8 - Client: ReportCrash, UID: 0, EUID: 0, GID: 0, EGID: 0
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.8 - ODNodeRelease request, NodeID: 612C1709-5150-438C-96A9-6E3FFD8E9CF6
    Mar 28 19:25:30 localhost opendirectoryd[101]: 679.8, Node: /Local/Default - ODNodeRelease completed
    Mar 28 19:25:31 localhost ReportCrash[679]: Process:         Install Mac OS X Lion [607]
    Mar 28 19:25:31 localhost ReportCrash[679]: Path:            /Install Mac OS X Lion.app/Contents/MacOS/Install Mac OS X Lion
    Mar 28 19:25:31 localhost ReportCrash[679]: Identifier:      Install Mac OS X Lion
    Mar 28 19:25:31 localhost ReportCrash[679]: Version:         ??? (???)
    Mar 28 19:25:31 localhost ReportCrash[679]: Code Type:       X86-64 (Native)
    Mar 28 19:25:31 localhost ReportCrash[679]: Parent Process:  Mac OS X Utilities [338]
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Date/Time:       2015-03-28 19:25:29.584 -0700
    Mar 28 19:25:31 localhost ReportCrash[679]: OS Version:      Mac OS X 10.7.5 (11G63)
    Mar 28 19:25:31 localhost ReportCrash[679]: Report Version:  9
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Crashed Thread:  12
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Exception Type:  EXC_CRASH (SIGABRT)
    Mar 28 19:25:31 localhost ReportCrash[679]: Exception Codes: 0x0000000000000000, 0x0000000000000000
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Application Specific Information:
    Mar 28 19:25:31 localhost ReportCrash[679]: objc[607]: garbage collection is OFF
    Mar 28 19:25:31 localhost ReportCrash[679]: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]'
    Mar 28 19:25:31 localhost ReportCrash[679]: *** First throw call stack:
    Mar 28 19:25:31 localhost ReportCrash[679]: (
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   CoreFoundation                      0x0000000101966f56 __exceptionPreprocess + 198
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libobjc.A.dylib                     0x00000001017ddd5e objc_exception_throw + 43
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   CoreFoundation                      0x00000001019243af -[__NSPlaceholderDictionary initWithObjects:forKeys:count:] + 143
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   CoreFoundation                      0x0000000101932d0c +[NSDictionary dictionaryWithObject:forKey:] + 60
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   IA                                  0x000000010b403ea0 IA + 81568
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   IA                                  0x000000010b4042c0 IA + 82624
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   Foundation                          0x000000010005f72a -[NSThread main] + 68
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   Foundation                          0x000000010005f6a2 __NSThread__main__ + 1575
    Mar 28 19:25:31 localhost ReportCrash[679]: 8   libsystem_c.dylib                   0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 9   libsystem_c.dylib                   0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]: )
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: terminate called throwing an exception
    Mar 28 19:25:31 localhost ReportCrash[679]: abort() called
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 0:: Dispatch queue: com.apple.main-thread
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb567a mach_msg_trap + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_kernel.dylib         0x0000000102bb4d71 mach_msg + 73
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   com.apple.CoreServices.OSServices 0x0000000103230a23 GetConectionByFlattenedLoader_rpc + 259
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   com.apple.CoreServices.OSServices 0x00000001032307da CLocalRefToSharedStorageEntry::CLocalRefToSharedStorageEntry(CIconFamilyLoader* , short*) + 330
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   com.apple.CoreServices.OSServices 0x000000010321e672 _ISGetStorageRefFromLoader(CIconFamilyLoader*, unsigned int, unsigned int, unsigned int, unsigned int*) + 747
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   com.apple.CoreServices.OSServices 0x0000000103235d8e _ISGetSystemIconStorage + 95
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   com.apple.CoreServices.OSServices 0x0000000103235d08 _ISAddSystemIconToImage + 109
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   com.apple.LaunchServices       0x00000001034dfde3 AddImageByTypeInfo + 2084
    Mar 28 19:25:31 localhost ReportCrash[679]: 8   com.apple.LaunchServices       0x00000001034ef231 GetIconRefFromTypeInfo + 72
    Mar 28 19:25:31 localhost ReportCrash[679]: 9   com.apple.AppKit               0x0000000100bb5a83 -[NSWorkspace iconForFileType:] + 86
    Mar 28 19:25:31 localhost ReportCrash[679]: 10  libBaseIA.dylib               0x00000001083e4113 -[IADisk diskIcon] + 527
    Mar 28 19:25:31 localhost ReportCrash[679]: 11  com.apple.InstallAssistant.IA.bundle 0x000000010b3f2d70 0x10b3f0000 + 11632
    Mar 28 19:25:31 localhost ReportCrash[679]: 12  com.apple.InstallAssistant.IA.bundle 0x000000010b443199 SqrH_Peim + 91626
    Mar 28 19:25:31 localhost ReportCrash[679]: 13  com.apple.InstallAssistant.IA.bundle 0x000000010b442e51 SqrH_Peim + 90786
    Mar 28 19:25:31 localhost ReportCrash[679]: 14  com.apple.AppKit               0x00000001009e3356 -[NSOutlineView _sendDelegateHeightOfRow:] + 163
    Mar 28 19:25:31 localhost ReportCrash[679]: 15  com.apple.AppKit               0x0000000100648ff1 -[NSTableView _uncachedRectHeightOfRow:] + 160
    Mar 28 19:25:31 localhost ReportCrash[679]: 16  com.apple.AppKit               0x0000000100648e93 -[_NSTableRowHeightStorage _cacheRowHeights] + 169
    Mar 28 19:25:31 localhost ReportCrash[679]: 17  com.apple.AppKit               0x00000001005d6899 -[_NSTableRowHeightStorage _ensureRowHeights] + 83
    Mar 28 19:25:31 localhost ReportCrash[679]: 18  com.apple.AppKit               0x000000010063d64f -[_NSTableRowHeightStorage computeTableHeightForNumberOfRows:] + 60
    Mar 28 19:25:31 localhost ReportCrash[679]: 19  com.apple.AppKit               0x000000010063d265 -[NSTableView _minimumFrameSize] + 71
    Mar 28 19:25:31 localhost ReportCrash[679]: 20  com.apple.AppKit               0x00000001006403db -[NSTableView tile] + 220
    Mar 28 19:25:31 localhost ReportCrash[679]: 21  com.apple.AppKit               0x0000000100577a38 -[NSTableView bounds] + 111
    Mar 28 19:25:31 localhost ReportCrash[679]: 22  com.apple.AppKit               0x00000001009ecb36 -[NSOutlineView _redisplayAndResizeFromRow:] + 73
    Mar 28 19:25:31 localhost ReportCrash[679]: 23  com.apple.AppKit               0x00000001009efac9 -[NSOutlineView reloadItem:reloadChildren:] + 2143
    Mar 28 19:25:31 localhost ReportCrash[679]: 24  com.apple.InstallAssistant.IA.bundle 0x000000010b442812 SqrH_Peim + 89187
    Mar 28 19:25:31 localhost ReportCrash[679]: 25  com.apple.InstallAssistant.IA.bundle 0x000000010b3f5eee 0x10b3f0000 + 24302
    Mar 28 19:25:31 localhost ReportCrash[679]: 26  com.apple.InstallAssistant.IA.bundle 0x000000010b3f8249 0x10b3f0000 + 33353
    Mar 28 19:25:31 localhost ReportCrash[679]: 27  com.apple.InstallAssistant.IA.bundle 0x000000010b3f8eaf 0x10b3f0000 + 36527
    Mar 28 19:25:31 localhost ReportCrash[679]: 28  com.apple.InstallAssistant.IA.bundle 0x000000010b3f4b26 0x10b3f0000 + 19238
    Mar 28 19:25:31 localhost ReportCrash[679]: 29  com.apple.CoreFoundation       0x000000010195670d -[NSObject performSelector:withObject:] + 61
    Mar 28 19:25:31 localhost ReportCrash[679]: 30  com.apple.InstallAssistant.IA.bundle 0x000000010b3f7d33 0x10b3f0000 + 32051
    Mar 28 19:25:31 localhost ReportCrash[679]: 31  com.apple.AppKit               0x00000001007af6b5 -[NSAlert didEndAlert:returnCode:contextInfo:] + 93
    Mar 28 19:25:31 localhost ReportCrash[679]: 32  com.apple.AppKit               0x00000001007bc047 -[NSApplication endSheet:returnCode:] + 275
    Mar 28 19:25:31 localhost ReportCrash[679]: 33  com.apple.AppKit               0x00000001007af57b -[NSAlert buttonPressed:] + 265
    Mar 28 19:25:31 localhost ReportCrash[679]: 34  com.apple.CoreFoundation       0x000000010195670d -[NSObject performSelector:withObject:] + 61
    Mar 28 19:25:31 localhost ReportCrash[679]: 35  com.apple.AppKit               0x000000010060b8ca -[NSApplication sendAction:to:from:] + 139
    Mar 28 19:25:31 localhost ReportCrash[679]: 36  com.apple.AppKit               0x000000010060b7fe -[NSControl sendAction:to:] + 88
    Mar 28 19:25:31 localhost ReportCrash[679]: 37  com.apple.AppKit               0x000000010060b729 -[NSCell _sendActionFrom:] + 137
    Mar 28 19:25:31 localhost ReportCrash[679]: 38  com.apple.AppKit               0x000000010060abec -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 2014
    Mar 28 19:25:31 localhost ReportCrash[679]: 39  com.apple.AppKit               0x000000010068ab74 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 489
    Mar 28 19:25:31 localhost ReportCrash[679]: 40  com.apple.AppKit               0x00000001006097f6 -[NSControl mouseDown:] + 786
    Mar 28 19:25:31 localhost ReportCrash[679]: 41  com.apple.AppKit               0x00000001005d4c98 -[NSWindow sendEvent:] + 6306
    Mar 28 19:25:31 localhost ReportCrash[679]: 42  com.apple.AppKit               0x000000010056e3a5 -[NSApplication sendEvent:] + 5593
    Mar 28 19:25:31 localhost ReportCrash[679]: 43  com.apple.AppKit               0x0000000100504a0e -[NSApplication run] + 555
    Mar 28 19:25:31 localhost ReportCrash[679]: 44  com.apple.AppKit               0x0000000100780eac NSApplicationMain + 867
    Mar 28 19:25:31 localhost ReportCrash[679]: 45  com.apple.InstallAssistant.Lion 0x0000000100000e30 0x100000000 + 3632
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb77e6 kevent + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libdispatch.dylib             0x00000001029bf786 _dispatch_mgr_invoke + 923
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libdispatch.dylib             0x00000001029be316 _dispatch_mgr_thread + 54
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 2:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb6d7a __recvfrom + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   com.apple.installframework     0x000000010b823d15 do_log_udp_listen + 314
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 3:: CVDisplayLink
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb6bca __psynch_cvwait + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_c.dylib             0x0000000102a77274 _pthread_cond_wait + 840
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   com.apple.CoreVideo           0x0000000106d706c8 CVDisplayLink::runIOThread() + 710
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   com.apple.CoreVideo           0x0000000106d703e9 _ZL13startIOThreadPv + 148
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 4:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb7192 __workq_kernreturn + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_c.dylib             0x0000000102a75594 _pthread_wqthread + 758
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a76b85 start_wqthread + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 5:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb567a mach_msg_trap + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_kernel.dylib         0x0000000102bb4d71 mach_msg + 73
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   com.apple.CoreFoundation       0x00000001018f350c __CFRunLoopServiceMachPort + 188
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   com.apple.CoreFoundation       0x00000001018fbc74 __CFRunLoopRun + 1204
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   com.apple.CoreFoundation       0x00000001018fb486 CFRunLoopRunSpecific + 230
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   com.apple.CFNetwork           0x00000001020be574 CFURLConnectionSendSynchronousRequest + 457
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   com.apple.Foundation           0x0000000100172574 +[NSURLConnection sendSynchronousRequest:returningResponse:error:] + 120
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   com.apple.InstallAssistant.IA.bundle 0x000000010b427037 main + 113085
    Mar 28 19:25:31 localhost ReportCrash[679]: 8   com.apple.InstallAssistant.IA.bundle 0x000000010b4256d8 main + 106590
    Mar 28 19:25:31 localhost ReportCrash[679]: 9   com.apple.InstallAssistant.IA.bundle 0x000000010b4222b9 main + 93247
    Mar 28 19:25:31 localhost ReportCrash[679]: 10  com.apple.Foundation           0x000000010005f72a -[NSThread main] + 68
    Mar 28 19:25:31 localhost ReportCrash[679]: 11  com.apple.Foundation           0x000000010005f6a2 __NSThread__main__ + 1575
    Mar 28 19:25:31 localhost ReportCrash[679]: 12  libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 13  libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 6:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb7192 __workq_kernreturn + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_c.dylib             0x0000000102a75594 _pthread_wqthread + 758
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a76b85 start_wqthread + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 7:: com.apple.NSURLConnectionLoader
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb567a mach_msg_trap + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_kernel.dylib         0x0000000102bb4d71 mach_msg + 73
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   com.apple.CoreFoundation       0x00000001018f350c __CFRunLoopServiceMachPort + 188
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   com.apple.CoreFoundation       0x00000001018fbc74 __CFRunLoopRun + 1204
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   com.apple.CoreFoundation       0x00000001018fb486 CFRunLoopRunSpecific + 230
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   com.apple.Foundation           0x000000010006afd7 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   com.apple.Foundation           0x000000010005f72a -[NSThread main] + 68
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   com.apple.Foundation           0x000000010005f6a2 __NSThread__main__ + 1575
    Mar 28 19:25:31 localhost ReportCrash[679]: 8   libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 9   libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 8:: com.apple.appkit-heartbeat
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb6e42 __semwait_signal + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_c.dylib             0x0000000102a29dea nanosleep + 164
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a29bb5 usleep + 53
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   com.apple.AppKit               0x000000010073d11b -[NSUIHeartBeat _heartBeatThread:] + 1727
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   com.apple.Foundation           0x000000010005f72a -[NSThread main] + 68
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   com.apple.Foundation           0x000000010005f6a2 __NSThread__main__ + 1575
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 9:: com.apple.CFSocket.private
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb6df2 __select + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   com.apple.CoreFoundation       0x0000000101944c8b __CFSocketManager + 1355
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 10:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb7192 __workq_kernreturn + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_c.dylib             0x0000000102a75594 _pthread_wqthread + 758
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a76b85 start_wqthread + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 11:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb567a mach_msg_trap + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_kernel.dylib         0x0000000102bb4d71 mach_msg + 73
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   com.apple.CoreFoundation       0x00000001018f350c __CFRunLoopServiceMachPort + 188
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   com.apple.CoreFoundation       0x00000001018fbc74 __CFRunLoopRun + 1204
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   com.apple.CoreFoundation       0x00000001018fb486 CFRunLoopRunSpecific + 230
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   com.apple.Foundation           0x0000000100010f7b -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   com.apple.Foundation           0x0000000100094b56 -[NSRunLoop(NSRunLoop) runUntilDate:] + 66
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   com.apple.InstallAssistant.IA.bundle 0x000000010b434ab0 SqrH_Peim + 32513
    Mar 28 19:25:31 localhost ReportCrash[679]: 8   com.apple.InstallAssistant.IA.bundle 0x000000010b409c87 DisableSystemIdleSleep + 15320
    Mar 28 19:25:31 localhost ReportCrash[679]: 9   com.apple.Foundation           0x000000010005f72a -[NSThread main] + 68
    Mar 28 19:25:31 localhost ReportCrash[679]: 10  com.apple.Foundation           0x000000010005f6a2 __NSThread__main__ + 1575
    Mar 28 19:25:31 localhost ReportCrash[679]: 11  libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 12  libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 12 Crashed:
    Mar 28 19:25:31 localhost ReportCrash[679]: 0   libsystem_kernel.dylib         0x0000000102bb6ce2 __pthread_kill + 10
    Mar 28 19:25:31 localhost ReportCrash[679]: 1   libsystem_c.dylib             0x0000000102a757d2 pthread_kill + 95
    Mar 28 19:25:31 localhost ReportCrash[679]: 2   libsystem_c.dylib             0x0000000102a66a7a abort + 143
    Mar 28 19:25:31 localhost ReportCrash[679]: 3   libc++abi.dylib               0x000000010293c7bc abort_message + 214
    Mar 28 19:25:31 localhost ReportCrash[679]: 4   libc++abi.dylib               0x0000000102939fcf default_terminate() + 28
    Mar 28 19:25:31 localhost ReportCrash[679]: 5   libobjc.A.dylib               0x00000001017de1b9 _objc_terminate + 94
    Mar 28 19:25:31 localhost ReportCrash[679]: 6   libc++abi.dylib               0x000000010293a001 safe_handler_caller(void (*)()) + 11
    Mar 28 19:25:31 localhost ReportCrash[679]: 7   libc++abi.dylib               0x000000010293a05c std::terminate() + 16
    Mar 28 19:25:31 localhost ReportCrash[679]: 8   libc++abi.dylib               0x000000010293b152 __cxa_throw + 114
    Mar 28 19:25:31 localhost ReportCrash[679]: 9   libobjc.A.dylib               0x00000001017dde7a objc_exception_throw + 327
    Mar 28 19:25:31 localhost ReportCrash[679]: 10  com.apple.CoreFoundation       0x00000001019243af -[__NSPlaceholderDictionary initWithObjects:forKeys:count:] + 143
    Mar 28 19:25:31 localhost ReportCrash[679]: 11  com.apple.CoreFoundation       0x0000000101932d0c +[NSDictionary dictionaryWithObject:forKey:] + 60
    Mar 28 19:25:31 localhost ReportCrash[679]: 12  com.apple.InstallAssistant.IA.bundle 0x000000010b403ea0 0x10b3f0000 + 81568
    Mar 28 19:25:31 localhost ReportCrash[679]: 13  com.apple.InstallAssistant.IA.bundle 0x000000010b4042c0 0x10b3f0000 + 82624
    Mar 28 19:25:31 localhost ReportCrash[679]: 14  com.apple.Foundation           0x000000010005f72a -[NSThread main] + 68
    Mar 28 19:25:31 localhost ReportCrash[679]: 15  com.apple.Foundation           0x000000010005f6a2 __NSThread__main__ + 1575
    Mar 28 19:25:31 localhost ReportCrash[679]: 16  libsystem_c.dylib             0x0000000102a738bf _pthread_start + 335
    Mar 28 19:25:31 localhost ReportCrash[679]: 17  libsystem_c.dylib             0x0000000102a76b75 thread_start + 13
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Thread 12 crashed with X86 Thread State (64-bit):
    Mar 28 19:25:31 localhost ReportCrash[679]:   rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000118771938  rdx: 0x0000000000000000
    Mar 28 19:25:31 localhost ReportCrash[679]:   rdi: 0x0000000000013f03  rsi: 0x0000000000000006  rbp: 0x0000000118771960  rsp: 0x0000000118771938
    Mar 28 19:25:31 localhost ReportCrash[679]:    r8: 0x0000000102b09fb8   r9: 0x00000001187713c8  r10: 0x0000000102bb6d0a  r11: 0xffffff80002dad60
    Mar 28 19:25:31 localhost ReportCrash[679]:   r12: 0x000000010b48dc10  r13: 0x0000000101aad708  r14: 0x0000000118773000  r15: 0x0000000118771ab0
    Mar 28 19:25:31 localhost ReportCrash[679]:   rip: 0x0000000102bb6ce2  rfl: 0x0000000000000202  cr2: 0x0000000107728000
    Mar 28 19:25:31 localhost ReportCrash[679]: Logical CPU: 0
    Mar 28 19:25:31 localhost ReportCrash[679]:
    Mar 28 19:25:31 localhost ReportCrash[679]: Binary Images:
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x100000000 -        0x100001ff7  com.apple.InstallAssistant.Lion (1.0.34 - 221.5) <FCCA9FBB-2C46-32A2-8AD8-A81FC230DB5D> /Install Mac OS X Lion.app/Contents/MacOS/Install Mac OS X Lion
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x100005000 -        0x10031efff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x100500000 -        0x101106fff  com.apple.AppKit (6.7.5 - 1138.51) <44417D02-6123-3FC3-A119-CE51BB4C3006> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x10178b000 -        0x1017b8fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <6E5C8AC3-DBB7-31CB-BEB7-D6ED8E6DE0CE> /usr/lib/libSystem.B.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1017c7000 -        0x1018abe5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1018c3000 -        0x101a97ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x101be4000 -        0x101c32fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x101c4a000 -        0x101e4cfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <0176782F-9526-3905-813A-7A5676EC2C86> /usr/lib/libicucore.A.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x101edb000 -        0x101fddfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102007000 -        0x102019ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x10201e000 -        0x102185fff  com.apple.CFNetwork (520.5.1 - 520.5.1) <08F70E26-5456-3BFB-8192-00D3CE40D3C9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x10222b000 -        0x102277ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <131780ED-E8DD-3153-81F2-5FEC4F6554C2> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1022a1000 -        0x102596ff7  com.apple.security (7.0 - 55148.6) <4535E500-973A-3BA7-AF65-DF5CF0658F02> /System/Library/Frameworks/Security.framework/Versions/A/Security
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1026b3000 -        0x1026b3fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1026b6000 -        0x1026b7fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1026bb000 -        0x102726ff7  com.apple.framework.IOKit (2.0 - ???) <FE838BB6-D42E-3291-A1A0-6F53FC970261> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102751000 -        0x102764ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x10276c000 -        0x102788ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102792000 -        0x102808ff7  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <A24FC3DA-4FFA-3DD2-9DCC-2B8D1B3BF97C> /usr/lib/libc++.1.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102863000 -        0x1028d6fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102934000 -        0x10293fff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102948000 -        0x10294dfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102952000 -        0x102994ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029a2000 -        0x1029a7fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029af000 -        0x1029b6fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029bc000 -        0x1029cafff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <8E03C652-922A-3399-93DE-9EA0CBFA0039> /usr/lib/system/libdispatch.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029dc000 -        0x1029ddfff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029e1000 -        0x1029e5fff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029eb000 -        0x1029ebfff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1029ef000 -        0x1029f9ff7  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <8C235D13-2928-30E5-9E12-2CC3D6324AE2> /usr/lib/system/liblaunch.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102a00000 -        0x102a06fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102a0b000 -        0x102a0ffff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102a12000 -        0x102a14fff  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <8D9832F9-E4A9-38C3-B880-E5210B2353C7> /usr/lib/system/libquarantine.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102a19000 -        0x102a1aff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102a1f000 -        0x102a20ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102a25000 -        0x102b02fef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102b41000 -        0x102b49fff  libsystem_dnssd.dylib (??? - ???) <584B321E-5159-37CD-B2E7-82E069C70AFB> /usr/lib/system/libsystem_dnssd.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102b4f000 -        0x102b8afff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102ba0000 -        0x102bc0fff  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <66C9F9BD-C7B3-30D4-B1A0-03C8A6392351> /usr/lib/system/libsystem_kernel.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102bd1000 -        0x102bd6ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102bdd000 -        0x102be6ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102bed000 -        0x102beeff7  libsystem_sandbox.dylib (??? - ???) <2A09E4DA-F47C-35CB-B70C-E0492BA9F20E> /usr/lib/system/libsystem_sandbox.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102bf3000 -        0x102bf4fff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102bf9000 -        0x102bffff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102c06000 -        0x102c23fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102c37000 -        0x102c38fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102c3d000 -        0x102c4fff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102c58000 -        0x102d5ffe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102d74000 -        0x102d74fff  libOpenScriptingUtil.dylib (??? - ???) <A7847713-F410-39C0-884F-A7188A18E742> /usr/lib/libOpenScriptingUtil.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102d78000 -        0x102d7dfff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102d82000 -        0x102d91ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102d99000 -        0x102da6ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <DFAB8CA8-CC9D-3F58-8C12-CE120442AACD> /usr/lib/libbz2.1.0.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x102dab000 -        0x1030c7fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <4FC1AB30-022C-3C67-AC46-FDCBFCB7EEDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103141000 -        0x1031c4fef  com.apple.Metadata (10.7.0 - 627.37) <B9BEB598-B6F2-3BFF-A8F3-C3C87CD076AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x10321a000 -        0x1032feff7  com.apple.CoreServices.OSServices (478.49 - 478.49) <E5BF2069-ED1A-31F5-AFC2-4A530BD467AA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103377000 -        0x103411ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103451000 -        0x103490fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1034ab000 -        0x10354cfff  com.apple.LaunchServices (480.40 - 480.40) <C936A07F-0CF8-3F8E-BDB3-76AA7611B4CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103598000 -        0x1035c8ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <5E2EBBFD-D520-3379-A431-11DAA844B8D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1035e6000 -        0x1035ecfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1035f6000 -        0x1035fdfff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103604000 -        0x103612ff7  libkxld.dylib (??? - ???) <01161870-E3B3-3F87-BA4A-0AA7A081F409> /usr/lib/system/libkxld.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103617000 -        0x103625fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103631000 -        0x1036a1fff  com.apple.datadetectorscore (3.0 - 179.4) <4AB32B7F-8EC2-327E-BAC8-80129AA36E7B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1036db000 -        0x1037e7fff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103850000 -        0x103852fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103857000 -        0x10386efff  com.apple.CFOpenDirectory (10.7 - 146) <F321AE12-9592-3E56-AB8D-A47BA4696A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103889000 -        0x1038b4ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1038bf000 -        0x1038e3fff  com.apple.RemoteViewServices (1.5 - 44.2) <A0417D7F-22E9-3FD8-AC55-67654D8E93EB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103904000 -        0x103904fff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103907000 -        0x103a64fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <5F1E4695-BC74-3ADD-8345-627BCD68201A> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103ae6000 -        0x103ae6fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103aec000 -        0x103d16fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103e01000 -        0x103f1afff  com.apple.DesktopServices (1.6.5 - 1.6.5) <5E7DD5F4-B4DA-3F75-A14A-3494E81CFBA0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x103f75000 -        0x1042a1fff  com.apple.HIToolbox (1.9 - ???) <CCB32DEA-D0CA-35D1-8019-E599C8007AB6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x1043e8000 -        0x104588ff7  com.apple.QuartzCore (1.7 - 270.5) <19E5E0AB-DAA9-3F97-988C-D9A46AFB9C04> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x104630000 -        0x10463bff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    Mar 28 19:25:31 localhost ReportCrash[679]:        0x104644000 -        0x1046acff7  co

    You may be having a problem using WIFI to connect to internet recovery. Try using an ethernet connection. If you wiped the entire hard drive you need a GUID partition to install on. You also are supposed  to have a recovery partition on the internal drive to start recovery off from. When going to internet recovery you will be asked for your apple ID to confirm your download.https://support.apple.com/en-us/HT201314

  • My Mid-2010 Macbook Pro is stuck in a crash loop after recovery

    Yesterday I have used Internet Recovery to restore Mavericks after trying out the Yosemite beta. Didn't have an extra drive for a TM backup.
    Anyway, since restoring Mavericks I have an endless loop of crashes, wifi won't reconnect automatically after sleep, fans are on all the time and ReportCrash is using 100% CPU. Looks like there are 4 processes crashing.
    I haven't found a solution online anywhere as it seems it's connected to Yosemite somehow, possibly some files from that are broken now. There was one case on some Chinese forum with the same issue, but no solution.
    I haven't tried reinstalling again.
    Any help would be much appreciated.
    Here are the logs:
    Process:         bird [18475]
    Path:            /System/Library/PrivateFrameworks/CloudDocsDaemon.framework/Versions/A/Support/ bird
    Identifier:      bird
    Version:         ???
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [254]
    Responsible:     bird [18475]
    User ID:         501
    Date/Time:       2014-08-05 23:35:30.582 +0200
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  **
    Sleep/Wake UUID: E02CDF31-AA77-4F24-AF01-AE42A4B75A48
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries, ignoring DYLD_* env vars
    Dyld Error Message:
      Symbol not found: _NSMetadataItemContainerIdentifierKey
      Referenced from: /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
      Expected in: /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    in /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    Second:
    Process:         CallHistorySyncHelper [18466]
    Path:            /System/Library/PrivateFrameworks/CallHistory.framework/Support/CallHistorySync Helper
    Identifier:      CallHistorySyncHelper
    Version:         2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [254]
    Responsible:     CallHistorySyncHelper [18466]
    User ID:         501
    Date/Time:       2014-08-05 23:35:24.705 +0200
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  0481286A-E756-099E-491A-2B0265E7EE31
    Sleep/Wake UUID: E02CDF31-AA77-4F24-AF01-AE42A4B75A48
    Crashed Thread:  1  Dispatch queue: com.apple.root.default-priority
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Dyld Error Message:
      Symbol not found: _dispatch_queue_attr_make_with_qos_class
      Referenced from: /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
      Expected in: /usr/lib/libSystem.B.dylib
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib               0x0000000100c6340a getMethodNoSuper_nolock(objc_class*, objc_selector*) + 22
    1   libobjc.A.dylib               0x0000000100c6333d lookUpImpOrForward + 403
    2   libobjc.A.dylib               0x0000000100c56169 objc_msgSend + 233
    3   CallHistorySyncHelper         0x00000001003d8872 0x1003d7000 + 6258
    4   CallHistorySyncHelper         0x00000001003d869f 0x1003d7000 + 5791
    5   CallHistorySyncHelper         0x00000001003e18ed 0x1003d7000 + 43245
    6   CallHistorySyncHelper         0x00000001003e04df 0x1003d7000 + 38111
    7   libdyld.dylib                 0x00000001018cc5fd start + 1
    Thread 1 Crashed:: Dispatch queue: com.apple.root.default-priority
    0   dyld                           0x00007fff6159309d dyld_fatal_error + 1
    1   dyld                           0x00007fff61595df6 dyld::fastBindLazySymbol(ImageLoader**, unsigned long) + 171
    2   libdyld.dylib                 0x00000001018ca2dd dyld_stub_binder_ + 13
    3   ???                           0x0000000100494008 0 + 4299767816
    4   com.apple.cloudkit.CloudKit   0x0000000100406fad __24+[CKASLClient ASLClient]_block_invoke + 24
    5   libdispatch.dylib             0x000000010189428d _dispatch_client_callout + 8
    6   libdispatch.dylib             0x00000001018941fc dispatch_once_f + 79
    7   com.apple.cloudkit.CloudKit   0x0000000100406f93 +[CKASLClient ASLClient] + 46
    8   com.apple.cloudkit.CloudKit   0x000000010040780d CKShouldLogAtLevel + 37
    9   com.apple.cloudkit.CloudKit   0x00000001004082c1 _CKLogV + 87
    10  com.apple.cloudkit.CloudKit   0x0000000100406adf _CKLog + 221
    11  com.apple.cloudkit.CloudKit   0x00000001004378cc __43-[CKBehaviorOptions isAppleInternalInstall]_block_invoke + 91
    12  libdispatch.dylib             0x00000001018971bb _dispatch_call_block_and_release + 12
    13  libdispatch.dylib             0x000000010189428d _dispatch_client_callout + 8
    14  libdispatch.dylib             0x0000000101896082 _dispatch_root_queue_drain + 326
    15  libdispatch.dylib             0x0000000101897177 _dispatch_worker_thread2 + 40
    16  libsystem_pthread.dylib       0x0000000101b78ef8 _pthread_wqthread + 314
    17  libsystem_pthread.dylib       0x0000000101b7bfb9 start_wqthread + 13
    Thread 2:
    0   libsystem_kernel.dylib         0x0000000101a6ee6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x0000000101b78f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x0000000101b7bfb9 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x0000000101a6f662 kevent64 + 10
    1   libdispatch.dylib             0x0000000101896421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x0000000101896136 _dispatch_mgr_thread + 52
    Thread 4:: Dispatch queue: ch.clientdbhandle
    0   libobjc.A.dylib               0x0000000100c64dc3 search_method_list(method_list_t const*, objc_selector*) + 2
    1   libobjc.A.dylib               0x0000000100c63425 getMethodNoSuper_nolock(objc_class*, objc_selector*) + 49
    2   libobjc.A.dylib               0x0000000100c6333d lookUpImpOrForward + 403
    3   libobjc.A.dylib               0x0000000100c56169 objc_msgSend + 233
    4   com.apple.CoreFoundation       0x0000000100e34288 __CFBasicHashAddValue + 424
    5   com.apple.CoreFoundation       0x0000000100e3c8ad CFBasicHashAddValue + 3709
    6   com.apple.Foundation           0x0000000100743405 -[NSObject(NSKeyValueCoding) valueForKey:] + 284
    7   com.apple.Foundation           0x000000010075b4ff -[NSObject(NSKeyValueCoding) valueForKeyPath:] + 334
    8   com.apple.Foundation           0x000000010075a09c _sortedObjectsUsingDescriptors + 394
    9   com.apple.Foundation           0x0000000100759eb9 -[NSArray(NSKeyValueSorting) sortedArrayUsingDescriptors:] + 520
    10  com.apple.CoreData             0x000000010133eb33 -[NSManagedObjectModel(_NSInternalMethods) _sortedEntitiesForConfiguration:] + 147
    11  com.apple.CoreData             0x00000001014215ef -[NSSQLModel _generateModel:error:] + 143
    12  com.apple.CoreData             0x000000010133ea2c -[NSSQLModel initWithManagedObjectModel:configurationName:retainHashHack:brokenHashVersion:] + 348
    13  com.apple.CoreData             0x000000010133e055 -[NSSQLCore initWithPersistentStoreCoordinator:configurationName:URL:options:] + 869
    14  com.apple.CoreData             0x000000010133c9b7 -[NSPersistentStoreCoordinator addPersistentStoreWithType:configuration:URL:options:error:] + 1031
    15  com.apple.CallHistory         0x00000001006c46e6 +[DBManager instanceWithUsingDBAtURL:modelURL:] + 261
    16  com.apple.CallHistory         0x00000001006b0500 +[CallDBManager _create:] + 210
    17  com.apple.CallHistory         0x00000001006b2839 +[CallHistoryDBHandle create] + 27
    18  com.apple.CallHistory         0x00000001006b7f52 __33-[CallHistoryDBClientHandle init]_block_invoke + 38
    19  libdispatch.dylib             0x00000001018971bb _dispatch_call_block_and_release + 12
    20  libdispatch.dylib             0x000000010189428d _dispatch_client_callout + 8
    21  libdispatch.dylib             0x0000000101896673 _dispatch_queue_drain + 451
    22  libdispatch.dylib             0x00000001018979c1 _dispatch_queue_invoke + 110
    23  libdispatch.dylib             0x0000000101895f87 _dispatch_root_queue_drain + 75
    24  libdispatch.dylib             0x0000000101897177 _dispatch_worker_thread2 + 40
    25  libsystem_pthread.dylib       0x0000000101b78ef8 _pthread_wqthread + 314
    26  libsystem_pthread.dylib       0x0000000101b7bfb9 start_wqthread + 13
    Thread 1 crashed with X86 Thread State (64-bit):
      rax: 0x00007fff615c7db0  rbx: 0x00007f9d484168e0  rcx: 0x0000000000000000  rdx: 0x0000000000000000
      rdi: 0x00007fff615c7f20  rsi: 0x0000000000000000  rbp: 0x000000010f8809f0  rsp: 0x000000010f8809d8
       r8: 0x00007fff615b2b4c   r9: 0x0000000000000000  r10: 0x00007fff615b5ce6  r11: 0x00007fff615c7f20
      r12: 0x000000010049b880  r13: 0x0000000000000006  r14: 0x00007fff615c7f20  r15: 0x00007f9d4840ea20
      rip: 0x00007fff6159309d  rfl: 0x0000000000000246  cr2: 0x00000001005a5000
    Logical CPU:     3
    Error Code:      0x00000000
    Trap Number:     3
    Third:
    Process:         callservicesd [18677]
    Path:            /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd
    Identifier:      callservicesd
    Version:         ???
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [254]
    Responsible:     callservicesd [18677]
    User ID:         501
    Date/Time:       2014-08-05 23:38:27.874 +0200
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  0481286A-E756-099E-491A-2B0265E7EE31
    Sleep/Wake UUID: E02CDF31-AA77-4F24-AF01-AE42A4B75A48
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries, ignoring DYLD_* env vars
    Dyld Error Message:
      Symbol not found: _OBJC_CLASS_$_IDSSession
      Referenced from: /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd
      Expected in: /System/Library/PrivateFrameworks/IDS.framework/Versions/A/IDS
    in /System/Library/PrivateFrameworks/TelephonyUtilities.framework/callservicesd
    Fourth:
    Process:         WiFiAgent [18535]
    Path:            /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent
    Identifier:      WiFiAgent
    Version:         ???
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [254]
    Responsible:     WiFiAgent [18535]
    User ID:         501
    Date/Time:       2014-08-05 23:36:25.942 +0200
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  0481286A-E756-099E-491A-2B0265E7EE31
    Sleep/Wake UUID: E02CDF31-AA77-4F24-AF01-AE42A4B75A48
    Crashed Thread:  0
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    dyld: launch, loading dependent libraries, ignoring DYLD_* env vars
    Dyld Error Message:
      Symbol not found: _OBJC_CLASS_$_SFRemoteHotspotSession
      Referenced from: /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent
      Expected in: /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    in /System/Library/CoreServices/WiFiAgent.app/Contents/MacOS/WiFiAgent

    Did you repartition the drive and reformat before reinstalling Mavericks? Here's what you should have done:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    You may need to do a firmware update in order to do a full Internet Recovery: Computers that can be upgraded to use OS X Internet Recovery

  • Safari quits unexpetedly on startup after having to do a "Recovery" from Time Machine backup

    I had to do a "recovery" from Time Machine backup and since Safari will quit unexpectedly every time and I have to use Firefox.
    The must do "recovery" came about because the system was hanging with the gearbox spinning and never starting up the system.
    My system is: Mac Pro early 2008 running on OS X 10.9.4. Before the permanent hangs system as running very, very slow.
    Any suggestions out there? 

    Hope this is what you wanted to see:
    29/08/2014 15:43:22.927 ReportCrash[2081]: Saved crash report for Safari[2074] version 7.0.6 (9537.78.2) to /Users/Siegfried/Library/Logs/DiagnosticReports/Safari_2014-08-29-154322_Mandau .crash
    Process:    
    Safari [2074]
    Path:       
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: 
    com.apple.Safari
    Version:    
    7.0.6 (9537.78.2)
    Build Info: 
    WebBrowser-7537078002000000~3
    Code Type:  
    X86-64 (Native)
    Parent Process:  launchd [172]
    Responsible:
    Safari [2074]
    User ID:    
    501
    Date/Time:  
    2014-08-29 15:43:22.479 +1000
    OS Version: 
    Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  89B8BF8A-0E55-DAB2-5826-F70B4415069C
    Crashed Thread:  11
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000110888f9c
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x110888f9c:
    __DATA            
    00000001105a2000-00000001105a6000 [   16K] rw-/rwx SM=PRV  /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    --> __LINKEDIT        
    00000001105a6000-0000000110d50000 [ 7848K] r--/rwx SM=COW  /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    MALLOC (admin)    
    0000000110d50000-0000000110d51000 [
    4K] ---/rwx SM=NUL 
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib  
    0x000000010c11ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x000000010c11bd18 mach_msg + 64
    2   com.apple.CoreGraphics  
    0x0000000108f249ab _CGSSynchronizeWindowBackingStore + 97
    3   com.apple.CoreGraphics  
    0x0000000108ea647c _CGSLockWindow + 3765
    4   com.apple.CoreGraphics  
    0x0000000108ea538f CGSDeviceLock + 240
    5   libRIP.A.dylib          
    0x0000000112b88487 ripd_Lock + 43
    6   libRIP.A.dylib          
    0x0000000112b88027 RIPLayerBltShape + 463
    7   libRIP.A.dylib          
    0x0000000112b86468 ripc_Render + 304
    8   libRIP.A.dylib          
    0x0000000112b822e1 ripc_DrawRects + 399
    9   com.apple.CoreGraphics  
    0x0000000108ea1d2a CGContextFillRects + 96
    10  com.apple.AppKit        
    0x0000000109a90d46 NSRectFillUsingOperation + 299
    11  com.apple.AppKit        
    0x0000000109b4d0bd NSDrawWindowBackground + 253
    12  com.apple.AppKit        
    0x0000000109a6fd04 -[NSThemeFrame drawWindowBackgroundRect:] + 129
    13  com.apple.AppKit        
    0x0000000109a6f5d0 -[NSFrameView drawThemeContentFill:inView:] + 293
    14  com.apple.AppKit        
    0x0000000109b4c715 -[NSFrameView drawRect:] + 1124
    15  com.apple.AppKit        
    0x0000000109b4c28a -[NSThemeFrame drawRect:] + 302
    16  com.apple.AppKit        
    0x0000000109a6b0b1 -[NSView _drawRect:clip:] + 3846
    17  com.apple.AppKit        
    0x0000000109a6803c -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3199
    18  com.apple.AppKit        
    0x0000000109a66eb1 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    19  com.apple.AppKit        
    0x0000000109a63e9f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 2828
    20  com.apple.AppKit        
    0x0000000109a432da -[NSView displayIfNeeded] + 1680
    21  com.apple.AppKit        
    0x0000000109aa874e _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 884
    22  com.apple.AppKit        
    0x000000010a07e061 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke1331 + 46
    23  com.apple.CoreFoundation
    0x00000001087b8d67 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    24  com.apple.CoreFoundation
    0x00000001087b8cd7 __CFRunLoopDoObservers + 391
    25  com.apple.CoreFoundation
    0x00000001087aa3b8 __CFRunLoopRun + 776
    26  com.apple.CoreFoundation
    0x00000001087a9e75 CFRunLoopRunSpecific + 309
    27  com.apple.HIToolbox     
    0x000000010b4cba0d RunCurrentEventLoopInMode + 226
    28  com.apple.HIToolbox     
    0x000000010b4cb685 ReceiveNextEventCommon + 173
    29  com.apple.HIToolbox     
    0x000000010b4cb5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    30  com.apple.AppKit        
    0x000000010990c24e _DPSNextEvent + 1434
    31  com.apple.AppKit        
    0x000000010990b89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    32  com.apple.Safari.framework  
    0x0000000105513c00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    33  com.apple.AppKit        
    0x0000000109c6ae2e -[NSApplication _realDoModalLoop:peek:] + 642
    34  com.apple.AppKit        
    0x0000000109c6954e -[NSApplication runModalForWindow:] + 117
    35  com.apple.AppKit        
    0x0000000109c690fd -[NSAlert runModal] + 145
    36  com.apple.AppKit        
    0x0000000109911119 __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 1054
    37  com.apple.AppKit        
    0x0000000109910cbe -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    38  com.apple.AppKit        
    0x0000000109910c5f -[NSPersistentUIRestorer promptToIgnorePersistentState] + 213
    39  com.apple.AppKit        
    0x0000000109910b83 -[NSPersistentUIManager promptToIgnorePersistentState] + 28
    40  com.apple.AppKit        
    0x00000001099109a4 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 252
    41  com.apple.AppKit        
    0x0000000109913867 -[NSApplication _sendFinishLaunchingNotification] + 142
    42  com.apple.AppKit        
    0x000000010990c18a _DPSNextEvent + 1238
    43  com.apple.AppKit        
    0x000000010990b89b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    44  com.apple.Safari.framework  
    0x0000000105513c00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    45  com.apple.AppKit        
    0x00000001098ff99c -[NSApplication run] + 553
    46  com.apple.AppKit        
    0x00000001098ea783 NSApplicationMain + 940
    47  com.apple.Safari.framework  
    0x00000001056e5c6d SafariMain + 267
    48  libdyld.dylib           
    0x000000010bf825fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib  
    0x000000010c120e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010c238f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010c23bfb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x000000010c121662 kevent64 + 10
    1   libdispatch.dylib       
    0x000000010bf4c421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib       
    0x000000010bf4c136 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib  
    0x000000010c120e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010c238f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010c23bfb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x000000010c120e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010c238f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010c23bfb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x000000010c120e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010c238f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010c23bfb9 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x000000010c120716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib 
    0x000000010c239c3b _pthread_cond_wait + 727
    2   com.apple.WebCore       
    0x000000010f5983fb WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore       
    0x000000010f594f8f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore
    0x0000000105f93f4f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib 
    0x000000010c237899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x000000010c23772a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x000000010c23bfc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x000000010c120e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010c238f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010c23bfb9 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib  
    0x000000010c120e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x000000010c238f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib 
    0x000000010c23bfb9 start_wqthread + 13
    Thread 9:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x000000010c11ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x000000010c11bd18 mach_msg + 64
    2   com.apple.QuartzCore    
    0x0000000107091377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore    
    0x00000001070912ad thread_fun + 25
    4   libsystem_pthread.dylib 
    0x000000010c237899 _pthread_body + 138
    5   libsystem_pthread.dylib 
    0x000000010c23772a _pthread_start + 137
    6   libsystem_pthread.dylib 
    0x000000010c23bfc9 thread_start + 13
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x000000010c11ca1a mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x000000010c11bd18 mach_msg + 64
    2   com.apple.CoreFoundation
    0x00000001087aaf15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation
    0x00000001087aa539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation
    0x00000001087a9e75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation    
    0x0000000107ea9967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation    
    0x0000000107ea976b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib 
    0x000000010c237899 _pthread_body + 138
    8   libsystem_pthread.dylib 
    0x000000010c23772a _pthread_start + 137
    9   libsystem_pthread.dylib 
    0x000000010c23bfc9 thread_start + 13
    Thread 11 Crashed:
    0   ???                     
    0x0000000110888f9c 0 + 4572352412
    Thread 12:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib  
    0x000000010c120a3a __semwait_signal + 10
    1   libsystem_c.dylib       
    0x000000010c071dc0 nanosleep + 200
    2   libsystem_c.dylib       
    0x000000010c071cb2 usleep + 54
    3   com.apple.AppKit        
    0x0000000109b7017d -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation    
    0x0000000107ea976b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib 
    0x000000010c237899 _pthread_body + 138
    6   libsystem_pthread.dylib 
    0x000000010c23772a _pthread_start + 137
    7   libsystem_pthread.dylib 
    0x000000010c23bfc9 thread_start + 13
    Thread 13:
    Thread 11 crashed with X86 Thread State (64-bit):
      rax: 0x0000011e0044a0f3  rbx: 0x0000000000000054  rcx: 0x000000010837e000  rdx: 0x0000000000000054
      rdi: 0x000000010837e000  rsi: 0x00000001067bc000  rbp: 0x000000010837fff0  rsp: 0x000000010837ff68
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x00000001106dc420  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00000001067bc000
      rip: 0x0000000110888f9c  rfl: 0x0000000000010206  cr2: 0x0000000110888f9c
    Logical CPU:
    2
    Error Code: 
    0x00000014
    Trap Number:
    14
    Binary Images:
    0x1054ab000 -   
    0x1054abffd  com.apple.Safari (7.0.6 - 9537.78.2) <91D289A2-9E2F-3197-A702-06B527DC7918> /Applications/Safari.app/Contents/MacOS/Safari
    0x1054b7000 -   
    0x1059bdfff  com.apple.Safari.framework (9537 - 9537.78.2) <364A0CA6-18C3-3449-875B-40F0F054F5EB> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x105dab000 -   
    0x105dacff7  libSystem.B.dylib (1197.1.1) <E303F2F8-A8CF-3DF3-84B3-F2D0EE41CCF6> /usr/lib/libSystem.B.dylib
    0x105db6000 -   
    0x105dd4ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
    0x105df2000 -   
    0x105df3fff  libquit.dylib (161.2) <7B9C07B6-8993-32C8-89C2-23D2E7FA85BA> /usr/lib/libquit.dylib
    0x105dfc000 -   
    0x105e19ff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x105e26000 -   
    0x105e26fff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x105e2a000 -   
    0x105e2afff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x105e2e000 -   
    0x105e8cff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x105ece000 -   
    0x105ed8ff7  com.apple.CrashReporterSupport (10.9 - 539) <B25A09EC-A021-32EC-86F8-05B4837E0EDE> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x105ee6000 -   
    0x105f52fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x105f8b000 -   
    0x106302ff6  com.apple.JavaScriptCore (9537 - 9537.78.1) <B105E4F8-5964-39A6-A09C-3897339EEE6E> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x106401000 -   
    0x1065b9ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
    0x106660000 -   
    0x10674afff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
    0x106762000 -   
    0x106793ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
    0x1067a4000 -   
    0x1067b1ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
    0x1067bd000 -   
    0x1067cbfff  com.apple.opengl (9.6.1 - 9.6.1) <B22FA400-5824-36AF-9945-5FEC31995A0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x1067d3000 -   
    0x106814fff  com.apple.PerformanceAnalysis (1.47 - 47) <7B73DFF4-75DB-3403-80D2-0F3FE48764C3> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x10706a000 -   
    0x107206ff3  com.apple.QuartzCore (1.8 - 332.3) <72003E51-1287-395B-BCBC-331597D45C5E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x1072e1000 -   
    0x10753bff9  com.apple.security (7.0 - 55471.14.8) <EA03E140-2509-3A07-8440-2DC97C0D478B> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x107685000 -   
    0x1076f8fff  com.apple.securityfoundation (6.0 - 55122.3) <8575DF7A-EC79-3FCE-A737-7512363A5B12> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x10773f000 -   
    0x10776dff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x10779c000 -   
    0x1077ffffb  com.apple.SystemConfiguration (1.13.1 - 1.13.1) <2C8E1A73-5AD6-3A7D-8ED8-D6755555A993> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x10783c000 -   
    0x107972ff5  com.apple.WebKit (9537 - 9537.78.2) <AE0AAF97-AA56-3817-AA30-A0B7A766F0B9> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x107a69000 -   
    0x107c5affc  com.apple.WebKit2 (9537 - 9537.78.2) <353EC5AA-8F73-3B6D-9E2F-0B34C69302BF> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x107e43000 -   
    0x108141fff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x108383000 -   
    0x108530f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
    0x108554000 -   
    0x1085a6fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
    0x108603000 -   
    0x1086c5ff5  com.apple.CoreText (367.20 - 367.20) <B80D086D-93A9-3C35-860E-9C3FDD027F3B> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x10873a000 -   
    0x10891ffff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x108a95000 -   
    0x108c05ff4  com.apple.CFNetwork (673.4 - 673.4) <F3BF6020-99BE-3844-A7B8-352B93AD02F3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x108d11000 -   
    0x108d11fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x108d14000 -   
    0x108d15ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
    0x108d1d000 -   
    0x108e23ff7  com.apple.ImageIO.framework (3.3.0 - 1043) <C4ADE5B1-A540-34E1-A043-118185489C9D> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x108e8d000 -   
    0x1097ad32b  com.apple.CoreGraphics (1.600.0 - 599.25.10.1) <EC14B831-96BB-3A50-A451-E36BDC8F59FB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x1098e0000 -   
    0x1098e0fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x1098e8000 -   
    0x10a45eff7  com.apple.AppKit (6.9 - 1265.21) <9DC13B27-841D-3839-93B2-3EDE66157BDE> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x10abe8000 -   
    0x10ac17ff9  com.apple.GSS (4.0 - 2.0) <44E914BE-B0D0-3E05-9451-CA9E539AFA52> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x10ac3c000 -   
    0x10ac4dff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
    0x10ac59000 -   
    0x10ac5bfff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
    0x10ac64000 -   
    0x10ac9cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x10acdb000 -   
    0x10ae2fff3  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <69B273E8-5A8E-3FC7-B807-C16B657662FE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x10aec5000 -   
    0x10aec5ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <68B21135-55A6-3563-A3D6-3E692A7DEB7F> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x10aed2000 -   
    0x10b11aff7  com.apple.CoreData (107 - 481.3) <E78734AA-E3D0-33CB-A014-620BBCAB2E96> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x10b244000 -   
    0x10b2a8fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x10b2ea000 -   
    0x10b41aff7  com.apple.desktopservices (1.8.3 - 1.8.3) <225BEC20-F8E0-3F22-9560-890A1A5B9050> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x10b49d000 -   
    0x10b747ff5  com.apple.HIToolbox (2.1.1 - 698) <A388E773-AE7B-3FD1-8662-A98E6E24EA16> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x10b8a1000 -   
    0x10b8a9ff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x10b8ba000 -   
    0x10b8fcff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
    0x10b919000 -   
    0x10ba00ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
    0x10ba3c000 -   
    0x10bb20fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x10bbe9000 -   
    0x10bc3aff7  com.apple.audio.CoreAudio (4.2.1 - 4.2.1) <BE13E840-FB45-3BC2-BCF5-031629754FD5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x10bc63000 -   
    0x10bc68fff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x10bc74000 -   
    0x10bc75fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
    0x10bc7e000 -   
    0x10bc90ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <E51DE5CA-9859-3C13-A24F-37EF4385C1D6> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x10bca1000 -   
    0x10bcb9ff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x10bccc000 -   
    0x10bcd9fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x10bcee000 -   
    0x10bdb2ff7  com.apple.backup.framework (1.5.4 - 1.5.4) <195DA868-47A5-37E6-8CF0-9BCF11846899> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x10be3c000 -   
    0x10be57ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
    0x10be61000 -   
    0x10be8aff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
    0x10be99000 -   
    0x10be9dff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
    0x10bea2000 -   
    0x10beacfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
    0x10bebc000 -   
    0x10bec3fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
    0x10bed3000 -   
    0x10bedaffb  libcopyfile.dylib (103.92.1) <CF29DFF6-0589-3590-834C-82E2316612E8> /usr/lib/system/libcopyfile.dylib
    0x10bee6000 -   
    0x10bf34fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
    0x10bf49000 -   
    0x10bf63fff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
    0x10bf7f000 -   
    0x10bf82ff7  libdyld.dylib (239.4) <7C9EC3B7-DDE3-33FF-953F-4067C743951D> /usr/lib/system/libdyld.dylib
    0x10bf8b000 -   
    0x10bf8bff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
    0x10bf91000 -   
    0x10bf98ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
    0x10bfa6000 -   
    0x10bfabfff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
    0x10bfb7000 -   
    0x10bfb9ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
    0x10bfc3000 -   
    0x10bfc4ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
    0x10bfcb000 -   
    0x10bfdcff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
    0x10bfed000 -   
    0x10bfeeff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
    0x10bff6000 -   
    0x10c07fff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
    0x10c0b1000 -   
    0x10c0b3ff3  libsystem_configuration.dylib (596.15) <4998CB6A-9D54-390A-9F57-5D1AC53C135C> /usr/lib/system/libsystem_configuration.dylib
    0x10c0b9000 -   
    0x10c0c1fff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
    0x10c0cd000 -   
    0x10c0f4ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
    0x10c10b000 -   
    0x10c127ff7  libsystem_kernel.dylib (2422.110.17) <873931CE-D1AF-3596-AADB-D2E63C9AB29F> /usr/lib/system/libsystem_kernel.dylib
    0x10c150000 -   
    0x10c17ffd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
    0x10c18f000 -   
    0x10c1aaff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
    0x10c1b6000 -   
    0x10c1ddff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
    0x10c200000 -   
    0x10c209ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
    0x10c218000 -   
    0x10c21eff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
    0x10c236000 -   
    0x10c23dff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    0x10c24b000 -   
    0x10c24cfff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
    0x10c251000 -   
    0x10c255ff7  libsystem_stats.dylib (93.90.3) <4E51D5B0-92A0-3D0D-B90E-495A1ED3E391> /usr/lib/system/libsystem_stats.dylib
    0x10c25f000 -   
    0x10c260fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    0x10c268000 -   
    0x10c26dff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
    0x10c275000 -   
    0x10c299fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
    0x10c2ba000 -   
    0x10c2cafff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
    0x10c2da000 -   
    0x10c2defff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
    0x10c2ea000 -   
    0x10c2eaffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
    0x10c2f1000 -   
    0x10c2feff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
    0x10c307000 -   
    0x10c5f1fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x10c670000 -   
    0x10c700ff7  com.apple.Metadata (10.7.0 - 800.28) <E85AEB1B-CB17-38BC-B5C6-AAB50B47AF05> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x10c767000 -   
    0x10c7defff  com.apple.CoreServices.OSServices (600.4 - 600.4) <C63562F5-6DF5-3EE9-8897-FF61A44C8251> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x10c884000 -   
    0x10c8f1fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x10c93a000 -   
    0x10c995ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x10c9ca000 -   
    0x10ca94fff  com.apple.LaunchServices (572.28 - 572.28) <FDED4724-4CB6-3DE5-B785-AE6D4C261CF6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x10cb0b000 -   
    0x10cb34fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10cb59000 -   
    0x10cb60fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x10cb6c000 -   
    0x10cb77fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
    0x10cb7c000 -   
    0x10cb87ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x10cb99000 -   
    0x10cb9cfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x10cba6000 -   
    0x10cbbdff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <EBC0A1F2-9054-3D39-99AE-A3F655E55D6A> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x10cbde000 -   
    0x10cbe8ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x10cbf3000 -   
    0x10cc1bffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
    0x10cc2a000 -   
    0x10ccb6ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x10cced000 -   
    0x10cd5cff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x10cd89000 -   
    0x10ce12fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x10ce5a000 -   
    0x10ce9fff6  com.apple.HIServices (1.23 - 468) <5970AF5C-F5BD-3B6A-97C9-95B2CA98D71D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x10ced7000 -   
    0x10cee6ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x10cef6000 -   
    0x10cf43ff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x10cf72000 -   
    0x10cfabff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x10cfcd000 -   
    0x10cfd6fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x10cfeb000 -   
    0x10cfeeffc  com.apple.IOSurface (91.1 - 91.1) <D00EEB0C-8AA8-3986-90C1-C97B2486E8FA> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x10cff8000 -   
    0x10cff8fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x10cffe000 -   
    0x10d2d2fc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x10d31b000 -   
    0x10d31bfff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x10d31e000 -   
    0x10d3e9fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x10d3f6000 -   
    0x10d4a6ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x10d4b9000 -   
    0x10d89affe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x10d900000 -   
    0x10da6eff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x10da9a000 -   
    0x10db89fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x10dc04000 -   
    0x10dc4bfff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x10dc71000 -   
    0x10dc95ff7  libJPEG.dylib (1043) <25723F3F-48A6-3AC5-A7A3-58E418FEBF3F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x10dca1000 -   
    0x10dcfafff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x10dd0d000 -   
    0x10dd28ff7  libPng.dylib (1043) <23D2DAB7-C9A9-392F-989A-871E89E7751D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x10dd38000 -   
    0x10dd3cff7  libGIF.dylib (1043) <AF0FE71A-27AB-31E0-8CEA-BC0BF2091FA8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x10dd48000 -   
    0x10de36fff  libJP2.dylib (1043) <C4031D64-6C57-3FB4-9D87-874D387381DB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x10de67000 -   
    0x10de69fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
    0x10de72000 -   
    0x10deb9ff7  libcups.2.dylib (372.4) <36EA4350-43B4-3A5C-9904-10685BFDA7D4> /usr/lib/libcups.2.dylib
    0x10ded0000 -   
    0x10dee9ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x10df04000 -   
    0x10df20fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
    0x10df32000 -   
    0x10e023ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
    0x10e033000 -   
    0x10e098ffb  com.apple.Heimdal (4.0 - 2.0) <F34D6627-9F80-3823-8B57-DB629307DF87> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x10e0c6000 -   
    0x10e0c7fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x10e0d0000 -   
    0x10e0d4ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
    0x10e0dd000 -   
    0x10e0e9ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x10e102000 -   
    0x10e10bffd  com.apple.CommonAuth (4.0 - 2.0) <32BA436F-6319-3A0B-B5D2-2EB75FF36B5B> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x10e114000 -   
    0x10e14ffff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x10e166000 -   
    0x10e18bff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x10e1a7000 -   
    0x10e478ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x10e573000 -   
    0x10e5c6fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x10e5f1000 -   
    0x10e630fff  libGLU.dylib (9.6.1) <AE032555-3E2F-3DBF-A26D-EA4576061605> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x10e644000 -   
    0x10e64cffc  libGFXShared.dylib (9.6.1) <25BBF325-AC57-3BAA-9427-2D14CC243AE6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x10e653000 -   
    0x10e65efff  libGL.dylib (9.6.1) <4B65BF9F-F34A-3CD1-94E8-DB26DAA0A59D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x10e673000 -   
    0x10e6b1ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x10e6bd000 -   
    0x10e6bffff  libCVMSPluginSupport.dylib (9.6.1) <FB37F4C4-1E84-3349-BB03-92CA0A5F6837> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x10e6c6000 -   
    0x10e6c9fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x10e6cf000 -   
    0x10eb02ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x10ed21000 -   
    0x10ed6fff7  com.apple.opencl (2.3.59 - 2.3.59) <044485A4-A50C-34CE-A1F9-35A50CC68313> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x10ed89000 -   
    0x10ed95ffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x10eda2000 -   
    0x10edbbff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x10edd3000 -   
    0x10ee03fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x10ee31000 -   
    0x10ee56ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x10ee65000 -   
    0x10eee6fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x10ef3a000 -   
    0x10ef92ff7  com.apple.Symbolication (1.4 - 129.0.2) <B1F008C4-184D-36A2-922F-4A67A075D512> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x10efe0000 -   
    0x10f00ffff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x10f02a000 -   
    0x10f089fff  com.apple.framework.CoreWLAN (4.3.3 - 433.48) <1F17FA12-6E84-309D-9808-C536D445FA6E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x10f0c7000 -   
    0x10f0f1ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
    0x10f105000 -   
    0x10f16bfff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x10f1d0000 -   
    0x10f1d4fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x10f1e2000 -   
    0x10f1e5fff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x10f1ee000 -   
    0x10f200fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x10f21b000 -   
    0x10f233ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x10f248000 -   
    0x10f249ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x10f24e000 -   
    0x10f250ff7  com.apple.securityhi (9.0 - 55005) <18C42525-688C-3D47-B9C9-1E0F8F58FA64>

  • Suhelperd crashes during Software update after HD recovery

    Hallo All,
    It started with Software update not being able to update. I had to repair my Hard Disk, and I ended up by using the recovery partition to clean the Hard Disk. I'm back by reloading the latest available backup from Time Capsule. The software update dialog says all software is up to date now.
    I would like to know I'm not running into any future problems and checked the system log. Quite a few failes show up, including suhelperd crashing. Does this mean any more problem(s)?
    Thanks,
    14-04-12 11:31:45,994 com.apple.SecurityServer: Failed to authorize right 'system.install.app-store-software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [903] for authorization created by '/System/Library/CoreServices/Software Update.app' [899]
    14-04-12 11:31:45,994 com.apple.SecurityServer: Failed to authorize right 'system.install.software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [903] for authorization created by '/System/Library/CoreServices/Software Update.app' [899]
    14-04-12 11:31:54,273 diskmanagementd: DM ->T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: inHostDiskUDS=0x10ead6c20=disk0s2=Macintosh HD inWhatStr=RecoveryInfoBaseSystemVersion
    14-04-12 11:31:54,412 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did get booterRecoveryUDS=0x10ead6ae0=disk0s3=Recovery HD
    14-04-12 11:31:54,921 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did mount nobrowse; MP=/Volumes/Recovery HD OMS=0x7f9f7342a0c0
    14-04-12 11:31:54,921 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: getting dict from file=/Volumes/Recovery HD/com.apple.recovery.boot/SystemVersion.plist
    14-04-12 11:31:54,929 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
    14-04-12 11:31:54,994 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: got dict (or NULL=will return err): oooInfoDict=0x7f9f73607660
    14-04-12 11:31:55,731 librariand: changing log level to 5
    14-04-12 11:31:57,012 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did if-needed-best-effort unmount
    14-04-12 11:31:57,012 diskmanagementd: DM <-T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: retErr=0 outInfoDict={
        ProductBuildVersion = 11C74;
        ProductCopyright = "1983-2011 Apple Inc.";
        ProductName = "Mac OS X";
        ProductUserVisibleVersion = "10.7.2";
        ProductVersion = "10.7.2";
    14-04-12 11:32:20,058 com.apple.suhelperd: terminate called throwing an exception
    14-04-12 11:32:20,579 ReportCrash: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    14-04-12 11:32:24,378 com.apple.launchd: (com.apple.suhelperd[907]) Job appears to have crashed: Abort trap: 6
    14-04-12 11:32:28,902 ReportCrash: Saved crash report for suhelperd[907] version ??? (???) to /Library/Logs/DiagnosticReports/suhelperd_2012-04-14-113228_localhost.crash
    14-04-12 11:32:46,450 rpcsvchost: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    14-04-12 11:33:28,168 mds: ERROR: _MDSChannelInitForAFP: AFPSendSpotLightRPC failed -1
    14-04-12 11:33:28,000 kernel: AFP_VFS afpfs_mount: /Volumes/Time Capsule van ----, pid 994
    14-04-12 11:33:50,183 com.apple.SecurityServer: Failed to authorize right 'system.install.app-store-software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [1009] for authorization created by '/System/Library/CoreServices/Software Update.app' [1005]
    14-04-12 11:33:50,183 com.apple.SecurityServer: Failed to authorize right 'system.install.software' by client '/System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/Resources/in stalld' [1009] for authorization created by '/System/Library/CoreServices/Software Update.app' [1005]
    14-04-12 11:33:53,555 diskmanagementd: DM ->T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: inHostDiskUDS=0x111498c20=disk0s2=Macintosh HD inWhatStr=RecoveryInfoBaseSystemVersion
    14-04-12 11:33:53,657 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did get booterRecoveryUDS=0x111498ae0=disk0s3=Recovery HD
    14-04-12 11:33:53,881 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did mount nobrowse; MP=/Volumes/Recovery HD OMS=0x7f8453422260
    14-04-12 11:33:53,881 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: getting dict from file=/Volumes/Recovery HD/com.apple.recovery.boot/SystemVersion.plist
    14-04-12 11:33:53,898 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: got dict (or NULL=will return err): oooInfoDict=0x7f8453422710
    14-04-12 11:33:53,925 fseventsd: Logging disabled completely for device:1: /Volumes/Recovery HD
    14-04-12 11:33:54,211 diskmanagementd: DM ..T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: did if-needed-best-effort unmount
    14-04-12 11:33:54,211 diskmanagementd: DM <-T-[DMToolBootPreference recoveryPartitionInfoForVolume:what:dict:]: retErr=0 outInfoDict={
        ProductBuildVersion = 11C74;
        ProductCopyright = "1983-2011 Apple Inc.";
        ProductName = "Mac OS X";
        ProductUserVisibleVersion = "10.7.2";
        ProductVersion = "10.7.2";
    14-04-12 11:34:17,962 com.apple.suhelperd: terminate called throwing an exception
    14-04-12 11:34:18,398 ReportCrash: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    14-04-12 11:34:19,718 com.apple.launchd: (com.apple.suhelperd[1013]) Job appears to have crashed: Abort trap: 6
    14-04-12 11:34:20,002 ReportCrash: Saved crash report for suhelperd[1013] version ??? (???) to /Library/Logs/DiagnosticReports/suhelperd_2012-04-14-113420_localhost.crash
    Crash report:
    Process:         suhelperd [1013]
    Path:            /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/Resources /suhelperd
    Identifier:      suhelperd
    Version:         ??? (???)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    Date/Time:       2012-04-14 11:34:18.014 +0200
    OS Version:      Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    objc[1013]: garbage collection is OFF
    *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'launch path not accessible'
    *** First throw call stack:
              0   CoreFoundation                      0x0000000104318fc6 __exceptionPreprocess + 198
              1   libobjc.A.dylib                     0x000000010418fd5e objc_exception_throw + 43
              2   CoreFoundation                      0x0000000104318dfa +[NSException raise:format:arguments:] + 106
              3   CoreFoundation                      0x0000000104318d84 +[NSException raise:format:] + 116
              4   Foundation                          0x00000001036ff218 -[NSConcreteTask launchWithDictionary:] + 470
              5   Foundation                          0x0000000103813fc0 +[NSTask launchedTaskWithLaunchPath:arguments:] + 203
              6   suhelperd                           0x000000010369c784 suhelperd + 38788
              7   suhelperd                           0x0000000103696f8a suhelperd + 16266
              8   suhelperd                           0x0000000103695d40 suhelperd + 11584
              9   suhelperd                           0x000000010369a557 suhelperd + 30039
              10  suhelperd                           0x0000000103698deb suhelperd + 24043
              11  suhelperd                           0x00000001036965bc suhelperd + 13756
              12  libsystem_kernel.dylib              0x00000001051b128b mach_msg_server + 496
              13  suhelperd                           0x0000000103698608 suhelperd + 22024
              14  suhelperd                           0x000000010369653d suhelperd + 13629
              15  suhelperd                           0x00000001036949bc suhelperd + 6588
    terminate called throwing an exception
    abort() called
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00000001051b2ce2 __pthread_kill + 10
    1   libsystem_c.dylib                       0x000000010506d7d2 pthread_kill + 95
    2   libsystem_c.dylib                       0x000000010505ea7a abort + 143
    3   libc++abi.dylib                         0x0000000104f087bc abort_message + 214
    4   libc++abi.dylib                         0x0000000104f05fcf default_terminate() + 28
    5   libobjc.A.dylib                         0x00000001041901b9 _objc_terminate + 94
    6   libc++abi.dylib                         0x0000000104f06001 safe_handler_caller(void (*)()) + 11
    7   libc++abi.dylib                         0x0000000104f0605c std::terminate() + 16
    8   libc++abi.dylib                         0x0000000104f07152 __cxa_throw + 114
    9   libobjc.A.dylib                         0x000000010418fe7a objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x0000000104318dfa +[NSException raise:format:arguments:] + 106
    11  com.apple.CoreFoundation                0x0000000104318d84 +[NSException raise:format:] + 116
    12  com.apple.Foundation                    0x00000001036ff218 -[NSConcreteTask launchWithDictionary:] + 470
    13  com.apple.Foundation                    0x0000000103813fc0 +[NSTask launchedTaskWithLaunchPath:arguments:] + 203
    14  suhelperd                               0x000000010369c784 0x103693000 + 38788
    15  suhelperd                               0x0000000103696f8a 0x103693000 + 16266
    16  suhelperd                               0x0000000103695d40 0x103693000 + 11584
    17  suhelperd                               0x000000010369a557 0x103693000 + 30039
    18  suhelperd                               0x0000000103698deb 0x103693000 + 24043
    19  suhelperd                               0x00000001036965bc 0x103693000 + 13756
    20  libsystem_kernel.dylib                  0x00000001051b128b mach_msg_server + 496
    21  suhelperd                               0x0000000103698608 0x103693000 + 22024
    22  suhelperd                               0x000000010369653d 0x103693000 + 13629
    23  suhelperd                               0x00000001036949bc 0x103693000 + 6588
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00000001051b37e6 kevent + 10
    1   libdispatch.dylib                       0x0000000104f9c5be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x0000000104f9b14e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00000001051b3192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010506d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x000000010506eb85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00000001051b3192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010506d594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x000000010506eb85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff632916b8  rdx: 0x0000000000000000
      rdi: 0x0000000000009d03  rsi: 0x0000000000000006  rbp: 0x00007fff632916e0  rsp: 0x00007fff632916b8
       r8: 0x0000000105101fb8   r9: 0x00007fff63291148  r10: 0x00000001051b2d0a  r11: 0x0000000000000206
      r12: 0x00007fda41605cc0  r13: 0x0000000104483e40  r14: 0x0000000105104960  r15: 0x00007fff63291830
      rip: 0x00000001051b2ce2  rfl: 0x0000000000000206  cr2: 0x00000001050b31dd
    Logical CPU: 0
    Binary Images:
           0x103693000 -        0x1036a3ff7  suhelperd (??? - ???) <55694424-84ED-3458-A355-5234F6513B29> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Resources/suhelperd
           0x1036ae000 -        0x1039c7ff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x103bb0000 -        0x103bc2ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
           0x103bcc000 -        0x103bfcfff  com.apple.framework.Admin (11.0 - 11.0) <D7C96057-01E2-3D78-B0FF-23976D585408> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
           0x103c21000 -        0x103cb2ff7  com.apple.PackageKit (2.0.2 - 169) <06B68AF6-038E-3634-82F6-84B90CCCCFE9> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
           0x103d10000 -        0x103ff2fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x104112000 -        0x104112fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x104117000 -        0x104117fff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10411d000 -        0x104128ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9807F306-4081-34DA-9970-83A136E1E53F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x104137000 -        0x104164fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
           0x104179000 -        0x10425de5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
           0x104275000 -        0x104449fff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x104599000 -        0x1045e7fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
           0x104603000 -        0x104805fff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
           0x104899000 -        0x10499bff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
           0x1049c6000 -        0x1049d8ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
           0x1049e4000 -        0x104b4bff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
           0x104bf4000 -        0x104c40ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x104c70000 -        0x104c71fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
           0x104c79000 -        0x104ce3ff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x104d11000 -        0x104d24ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
           0x104d31000 -        0x104d4dff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x104d59000 -        0x104dceff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
           0x104e2b000 -        0x104e9efff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
           0x104f00000 -        0x104f0bff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
           0x104f16000 -        0x104f1bfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
           0x104f26000 -        0x104f68ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
           0x104f7d000 -        0x104f82fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
           0x104f8a000 -        0x104f91fff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
           0x104f99000 -        0x104fa7fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
           0x104fb8000 -        0x104fb9fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
           0x104fbd000 -        0x104fc1fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
           0x104fc9000 -        0x104fc9fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
           0x104fd4000 -        0x104fdeff7  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <39EF04F2-7F0C-3435-B785-BF283727FFBD> /usr/lib/system/liblaunch.dylib
           0x104fe6000 -        0x104fecfff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
           0x104ff4000 -        0x104ff8fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
           0x105001000 -        0x105003fff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
           0x10500d000 -        0x10500eff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
           0x105017000 -        0x105018ff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
           0x10501d000 -        0x1050fafef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
           0x105139000 -        0x105141fff  libsystem_dnssd.dylib (??? - ???) <7749128E-D0C5-3832-861C-BC9913F774FA> /usr/lib/system/libsystem_dnssd.dylib
           0x10514b000 -        0x105186fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
           0x10519c000 -        0x1051bcfff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
           0x1051d3000 -        0x1051d8ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
           0x1051df000 -        0x1051e8ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
           0x1051f4000 -        0x1051f5ff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
           0x1051fb000 -        0x1051fcfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
           0x105204000 -        0x10520aff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
           0x105212000 -        0x10522ffff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
           0x10524a000 -        0x10524bfff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
           0x105250000 -        0x105357fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
           0x10536c000 -        0x105371fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
           0x105378000 -        0x105387ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
           0x105392000 -        0x10539fff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
           0x1053aa000 -        0x1056c6ff7  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x105746000 -        0x1057c9fef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x105824000 -        0x105906fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x105983000 -        0x105a1dff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x105a5e000 -        0x105a9dfff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x105ab9000 -        0x105b59fff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x105ba8000 -        0x105bd8ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x105bf7000 -        0x105bfdfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x105c0e000 -        0x105c15fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x105c20000 -        0x105c2eff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
           0x105c33000 -        0x105c41fff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x105c54000 -        0x105cc4fff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x105cff000 -        0x105e0bfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
           0x105e78000 -        0x105e7afff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x105e80000 -        0x105e97fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x105eb5000 -        0x105ee0ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <8051A3FC-7385-3EA9-9634-78FC616C3E94> /usr/lib/libxslt.1.dylib
           0x105ef1000 -        0x105efdfff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x105f06000 -        0x106000ff7  com.apple.DiskImagesFramework (10.7.3 - 331.3) <57A7E46A-5AA4-37FF-B19C-5337CCBCA0CA> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x106060000 -        0x1060a0ff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
           0x1060b3000 -        0x106cb7fff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10733e000 -        0x1073e0ff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x107433000 -        0x107488fff  libCoreStorage.dylib (??? - ???) <329407B8-6700-331E-859E-62AB2242DBDE> /usr/lib/libCoreStorage.dylib
           0x1074a3000 -        0x1074adfff  libcsfde.dylib (??? - ???) <64ABF5C0-6F81-36E7-92F3-AD5A4FFF2F3D> /usr/lib/libcsfde.dylib
           0x1074ba000 -        0x1074bbfff  libodfde.dylib (??? - ???) <87836EDD-1474-3926-916A-A7AE8CA65079> /usr/lib/libodfde.dylib
           0x1074c1000 -        0x1074c2fff  libwebsharing.dylib (??? - ???) <279415F4-2FAD-3D68-BE9A-691D03389662> /usr/lib/libwebsharing.dylib
           0x1074c8000 -        0x107e587a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x107f60000 -        0x10803efff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x10808e000 -        0x108141fff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x108195000 -        0x108219ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x108246000 -        0x10830dff7  com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x108350000 -        0x1083abff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x1083e1000 -        0x1083f5ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x108409000 -        0x108484ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x1084bd000 -        0x1084fefff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10851c000 -        0x108531fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x108543000 -        0x108549fff  IOSurface (??? - ???) <06FA3FDD-E6D5-391F-B60D-E98B169DAB1B> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x108557000 -        0x108557fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x108560000 -        0x108589fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x108596000 -        0x1085eefff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x1085fc000 -        0x10861cfff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10862a000 -        0x10862ffff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x108635000 -        0x108742fff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x108772000 -        0x108775fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x10877e000 -        0x1088b4fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x1088d2000 -        0x1088d2fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x1088db000 -        0x10893bfff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10894a000 -        0x1089e0ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1089f2000 -        0x108e1ffff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x108e83000 -        0x109467fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x1094ab000 -        0x1095b0fff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10960c000 -        0x109660ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x109686000 -        0x1096aafff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x1096c9000 -        0x1096fcff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10971a000 -        0x109739fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
           0x109745000 -        0x10983afff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
           0x10984b000 -        0x1098d0ff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x109900000 -        0x109905fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10990e000 -        0x109919fff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x109927000 -        0x109a05fff  com.apple.DiscRecording (6.0.3 - 6030.4.1) <8DB1BDDD-F066-3E8B-B416-11DF712C6A1E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x109a6a000 -        0x109ab0ff7  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <01DD0773-236C-3AC3-B43B-07911F458767> /usr/lib/libcurl.4.dylib
           0x109abf000 -        0x109b03ff7  com.apple.MediaKit (12 - 589) <7CFF29BF-D907-3593-B338-0BB48643B2A8> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x109b1c000 -        0x109c75fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x109cf9000 -        0x109d61ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x109d8d000 -        0x109d8dfff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x109d96000 -        0x109dcffe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
           0x109deb000 -        0x109e26fff  com.apple.LDAPFramework (3.0 - 120.1) <0C23534F-A8E7-3144-B2B2-50F9875101E2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x109e37000 -        0x109e49ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
           0x109e56000 -        0x109e7afff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x109e9f000 -        0x109e9ffff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x109ea5000 -        0x10a0cdfe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10a1b9000 -        0x10a2d2fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10a334000 -        0x10a65eff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10a7ab000 -        0x10a94afff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10a9f8000 -        0x10aa03ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <7ADAAF5B-1D78-32F2-9FFF-D2E3FBB41C2B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10aa0d000 -        0x10aa73ff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x10aab6000 -        0x10aacdfff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10aadf000 -        0x10ab06fff  com.apple.PerformanceAnalysis (1.10 - 10) <2A058167-292E-3C3A-B1F8-49813336E068> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ab29000 -        0x10ab4fff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10ab6d000 -        0x10ac11fef  com.apple.ink.framework (1.3.2 - 110) <F69DBD44-FEC8-3C14-8131-CC0245DBBD42> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10ac45000 -        0x10ac55ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10ac62000 -        0x10ac8aff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10aca7000 -        0x10af1afff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10b00a000 -        0x10b05eff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10b084000 -        0x10b0d6ff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10b0e8000 -        0x10b0eefff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10b0fa000 -        0x10b110fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10b124000 -        0x10b163ff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10b16c000 -        0x10b16efff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10b173000 -        0x10b176fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10b17b000 -        0x10b1a8ff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10b1b8000 -        0x10b67ffff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x10baa5000 -        0x10baacff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x10baba000 -        0x10bb30fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10bb73000 -        0x10bbd5ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10bc1c000 -        0x10bc56fe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10bc70000 -        0x10bc72fff  com.apple.EFILogin (1.0 - 1) <71D23C08-890D-34B7-B85D-B7F967090FA6> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x10bc7d000 -        0x10bc81fff  libutil.dylib (??? - ???) <28672328-B738-38CE-B231-8A93CA6E6EA4> /usr/lib/libutil.dylib
           0x10bc87000 -        0x10bc93ff7  com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10bca4000 -        0x10bce2fff  com.apple.bom (11.0 - 183) <841FA160-A37A-368D-B14E-27AA9DD1AEDA> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10bcf7000 -        0x10bd06fff  libxar.1.dylib (??? - ???) <58B07AA0-BC12-36E3-94FC-C252719A1BDF> /usr/lib/libxar.1.dylib
           0x10bd14000 -        0x10bd22ff7  com.apple.AppleFSCompression (37 - 1.0) <88C436E8-38AE-3D96-A8C8-2D1805CC47B7> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10c015000 -        0x10c040ff7  com.apple.CoreServicesInternal (113.12 - 113.12) <C37DAC1A-35D2-30EC-9112-5EEECED5C461> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
        0x7fff63293000 -     0x7fff632c7baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
    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: 1774
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=120.2M resident=74.1M(62%) swapped_out_or_unallocated=46.2M(38%)
    Writable regions: Total=38.3M written=7732K(20%) resident=8900K(23%) swapped_out=0K(0%) unallocated=29.6M(77%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             21.3M
    MALLOC guard page                    32K
    Mach message                          8K
    STACK GUARD                        56.0M
    Stack                              9752K
    VM_ALLOCATE                          56K
    __CI_BITMAP                          80K
    __DATA                             12.1M
    __IMAGE                             528K
    __LINKEDIT                         22.8M
    __TEXT                             97.4M
    __UNICODE                           544K
    mapped file                        15.6M
    shared memory                       312K
    ===========                      =======
    TOTAL                             236.3M

    No, if you don't already have a backup (either on the cloud or on your computer's iTunes) then you will lose your content - if it's in recovery mode it's too late to take a backup

  • Kernel Panics on startup and when starting in recovery mode

    I have a brand new Mac mini late 2014 right out of the box (2.8ghz, 8gb ram, fusion drive)
    Upon initial startup the computer froze with a spinning wheel of death during the setup process and then restarted with a kernel panic. The computer kernel panics every time I restart or if I try to go into recovery mode. I live in Ecuador and am about a 10 hr drive from where I bought the computer. Hoping someone might have some insight or can understand any of this panic report. Thanks in advance for any help.
    Anonymous UUID:       1274EFCD-E218-10BE-D151-4A6D21C8611B
    Tue Jan 27 13:27:18 2015
    *** Panic Report ***
    panic(cpu 0 caller 0xffffff800f21e80a): Kernel trap at 0xffffff7f91745895, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x00000000000021f0, CR3: 0x000000000584e00c, CR4: 0x00000000001626e0
    RAX: 0x0000000000000000, RBX: 0xffffff802238c298, RCX: 0xffffff7f91757e00, RDX: 0xffffff802238c298
    RSP: 0xffffff8117af3890, RBP: 0xffffff8117af38a0, RSI: 0x0000000000000002, RDI: 0xffffff8022141000
    R8:  0xffffff8021867600, R9:  0xffffff8117af3be0, R10: 0x0000000000000008, R11: 0xffffff8117af3b90
    R12: 0xffffff8117af3940, R13: 0xffffff7f91757ecc, R14: 0xffffff8117af39e0, R15: 0x0000000000000000
    RFL: 0x0000000000010246, RIP: 0xffffff7f91745895, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x00000000000021f0, Error code: 0x0000000000000002, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8117af3540 : 0xffffff800f13a811
    0xffffff8117af35c0 : 0xffffff800f21e80a
    0xffffff8117af3780 : 0xffffff800f23a443
    0xffffff8117af37a0 : 0xffffff7f91745895
    0xffffff8117af38a0 : 0xffffff7f91757e14
    0xffffff8117af38c0 : 0xffffff7f91757ef5
    0xffffff8117af38e0 : 0xffffff800f6d566e
    0xffffff8117af3920 : 0xffffff7f91757f60
    0xffffff8117af3970 : 0xffffff7f91718d44
    0xffffff8117af3990 : 0xffffff7f91718e81
    0xffffff8117af3a10 : 0xffffff7f918c166d
    0xffffff8117af3a70 : 0xffffff800f6d566e
    0xffffff8117af3ab0 : 0xffffff7f918c19ac
    0xffffff8117af3b00 : 0xffffff7f91718e81
    0xffffff8117af3b80 : 0xffffff7f91718855
    0xffffff8117af3bc0 : 0xffffff800f700003
    0xffffff8117af3d00 : 0xffffff800f1ea517
    0xffffff8117af3e10 : 0xffffff800f13e91c
    0xffffff8117af3e40 : 0xffffff800f1235a3
    0xffffff8117af3e90 : 0xffffff800f133e8d
    0xffffff8117af3f10 : 0xffffff800f20a142
    0xffffff8117af3fb0 : 0xffffff800f23ac66
          Kernel Extensions in backtrace:
             com.apple.AppleGraphicsDeviceControl(3.7.21)[4700601D-3FEB-3B86-B2BA-8D71AF84D1 C4]@0xffffff7f91718000->0xffffff7f9171bfff
             com.apple.driver.AppleIntelFramebufferAzul(10.0)[78B8EBD4-B401-3BB9-BB23-E33F24 B52B69]@0xffffff7f9171c000->0xffffff7f91766fff
                dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f8f84e000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[70E2B65E-A91A-3522-A1A0-79FD63EABB4C]@0xfffff f7f8fe20000
                dependency: com.apple.iokit.IOAcceleratorFamily2(156.4)[20DDCE61-E3EC-3CC1-8B79-170CEF2B603 A]@0xffffff7f916ac000
                dependency: com.apple.iokit.IOReportFamily(31)[781C9DD1-4CE9-3AEB-85EA-D420CEC18916]@0xffff ff7f8f8b0000
                dependency: com.apple.AppleGraphicsDeviceControl(3.7.21)[4700601D-3FEB-3B86-B2BA-8D71AF84D1 C4]@0xffffff7f91718000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f91672000
             com.apple.driver.AppleGraphicsDevicePolicy(3.7.7)[0F1BB75D-C1F8-37BD-A2AE-0CEDB 6083906]@0xffffff7f918bd000->0xffffff7f918c3fff
                dependency: com.apple.driver.AppleGraphicsControl(3.7.21)[62689710-EEA7-307A-AC83-B8F25DA88 A6A]@0xffffff7f918ba000
                dependency: com.apple.iokit.IOACPIFamily(1.4)[70E2B65E-A91A-3522-A1A0-79FD63EABB4C]@0xfffff f7f8fe20000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f8f84e000
                dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f91672000
                dependency: com.apple.AppleGraphicsDeviceControl(3.7.21)[4700601D-3FEB-3B86-B2BA-8D71AF84D1 C4]@0xffffff7f91718000
    BSD process name corresponding to current thread: displaypolicyd
    Mac OS version:
    14A389
    Kernel version:
    Darwin Kernel Version 14.0.0: Fri Sep 19 00:26:44 PDT 2014; root:xnu-2782.1.97~2/RELEASE_X86_64
    Kernel UUID: 89E10306-BC78-3A3B-955C-7C4922577E61
    Kernel slide:     0x000000000ee00000
    Kernel text base: 0xffffff800f000000
    __HIB  text base: 0xffffff800ef00000
    System model name: Macmini7,1 (Mac-35C5E08120C7EEAF)
    System uptime in nanoseconds: 47944526008
    last loaded kext at 29608019997: com.apple.driver.AppleBluetoothHIDKeyboard 175.5 (addr 0xffffff7f8fcdc000, size 16384)
    loaded kexts:
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleHDAHardwareConfigDriver 266.5
    com.apple.driver.AppleMCCSControl 1.2.10
    com.apple.driver.AppleHDA 266.5
    com.apple.driver.AppleGraphicsDevicePolicy 3.7.7
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.iokit.IOBluetoothSerialManager 4.3.0f10
    com.apple.driver.ApplePlatformEnabler 2.1.0d1
    com.apple.driver.AGPM 100.14.37
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.ACPI_SMC_PlatformPlugin 1.0.0
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.0f10
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleIntelFramebufferAzul 10.0.0
    com.apple.nke.webcontentfilter 5
    com.apple.driver.AppleIRController 327.5
    com.apple.driver.CoreStorageFsck 471
    com.apple.driver.AppleFileSystemDriver 3.0.1
    com.apple.driver.DiskImages.SparseDiskImage 389.1
    com.apple.driver.DiskImages.ReadWriteDiskImage 389.1
    com.apple.driver.DiskImages.UDIFDiskImage 389.1
    com.apple.driver.DiskImages.HTTPBackingStore 389.1
    com.apple.driver.DiskImages.FileBackingStore 389.1
    com.apple.driver.DiskImages.RAMBackingStore 389.1
    com.apple.BootCache 35
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.driver.AppleUSBHub 705.4.1
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.5
    com.apple.driver.AirPort.Brcm4360 900.19.8
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.iokit.AppleBCM5701Ethernet 10.1.2b3
    com.apple.driver.AppleAHCIPort 3.0.7
    com.apple.driver.AppleUSBXHCI 705.4.14
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.nke.applicationfirewall 161
    com.apple.kext.MojoKDP 1.0.4
    com.apple.driver.AppleBluetoothHIDKeyboard 175.5
    com.apple.driver.AppleHIDKeyboard 175.5
    com.apple.driver.IOBluetoothHIDDriver 4.3.0f10
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.driver.DspFuncLib 266.5
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.iokit.IOAudioFamily 200.6
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleGraphicsControl 3.7.21
    com.apple.iokit.IOSurface 97
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.IOPlatformPluginLegacy 1.0.0
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.0f10
    com.apple.driver.AppleHDAController 266.5
    com.apple.iokit.IOHDAFamily 266.5
    com.apple.driver.AppleIntelLpssUART 2.0.45
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.9
    com.apple.driver.IOPlatformPluginFamily 5.8.0d49
    com.apple.driver.AppleThunderboltEDMSink 4.0.2
    com.apple.driver.AppleThunderboltDPOutAdapter 4.0.6
    com.apple.AppleGraphicsDeviceControl 3.7.21
    com.apple.iokit.IOAcceleratorFamily2 156.4
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.driver.CoreStorage 471
    com.apple.driver.DiskImages.KernelBacked 389.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.1
    com.apple.iokit.IO80211Family 700.52
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.7.0
    com.apple.driver.AppleIntelLpssGspi 2.0.45
    com.apple.driver.AppleIntelLpssDmac 2.0.45
    com.apple.iokit.IOUSBFamily 705.4.14
    com.apple.driver.AppleIntelLpssI2C 2.0.45
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.DiskImages 389.1
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOBluetoothFamily 4.3.0f10
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.pthread 1
    com.apple.kec.Libm 1
    com.apple.kec.corecrypto 1.0
    Model: Macmini7,1, BootROM MM71.0220.B00, 2 processors, Intel Core i5, 2.8 GHz, 8 GB, SMC 2.24f32
    Graphics: Intel Iris, Intel Iris, Built-In
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x483943434E4E4E424C54414C41522D4E5444
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x13B), Broadcom BCM43xx 1.0 (7.15.124.12.10)
    Bluetooth: Version 4.3.1f2 15015, 3 services, 27 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE SSD SM0128F, 121.33 GB
    Serial ATA Device: APPLE HDD HTS541010A9E662, 1 TB
    USB Device: Microsoft Optical Mouse with Tilt Wheel
    USB Device: IR Receiver
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    Thunderbolt Bus: Mac mini, Apple Inc., 26.1

    If you bought the product in the U.S. directly from Apple (not from a reseller), you have 14 days from the date of delivery in which to exchange or return it for a refund. In other countries, the return policy may be different. If you bought from a reseller, its return policy applies.

  • Recovery/restoration of a .mov file?

    I have a .mov that contains a video I put a fair amount of effort into, that doesn't exist anywhere else on my computer. I cannot open the .mov in quicktime. I get an error message that I believe mentions something about bad access, or bad kernal. I have tried a whole assortment of media players/converters/recovery programs and none of them seem to work. However, the data in the file seems to still be (for the most part?) intact, as I can open it in Itunes and watch it there. I can't edit it or move it while in Itunes, so it doesn't particularly help. I would greatly appreciate advice on how to get the .mov to open, recover the data, or just move the data to another media player that will work. Thanks!

    Date/Time: 2010-11-20 09:58:06.115 -0500
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: QuickTime Player
    Path: /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Parent: WindowServer [62]
    Version: 7.6.4 (7.6.4)
    Build Version: 2
    Project Name: QuickTimePlayer
    Source Version: 5183500
    PID: 406
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0aea1ce0
    Thread 0 Crashed:
    0 libobjc.A.dylib 0x90a410f0 objc_msgSend + 16
    1 com.apple.QTKit 0x9599f164 NSDataDataHandlerCanUseDataRef + 88
    2 ...ple.CoreServices.CarbonCore 0x90bdcf80 CallComponentFunctionCommon + 1076
    3 ...ple.CoreServices.CarbonCore 0x90bdcae8 CallComponent + 260
    4 com.apple.QuickTime 0x948246bc DataHCanUseDataRef + 44
    5 com.apple.QuickTime 0x948244bc GetDataHandler_priv + 188
    6 ...ickTimeComponents.component 0x98b204a0 makeDataHandler + 144
    7 ...ickTimeComponents.component 0x98b206a0 GetIndDataHandler + 144
    8 ...ickTimeComponents.component 0x98b22920 STMediaGetDataHandler + 64
    9 ...ple.CoreServices.CarbonCore 0x90bdcf80 CallComponentFunctionCommon + 1076
    10 ...ple.CoreServices.CarbonCore 0x90bdcae8 CallComponent + 260
    11 ...ple.CoreServices.CarbonCore 0x90bdcae8 CallComponent + 260
    12 com.apple.QuickTime 0x9486781c MediaGetDataHandler + 44
    13 com.apple.QuickTime 0x94858188 PrivateGetMoviePublicMovie_priv + 1384
    14 com.apple.QuickTime 0x948fe0e4 NewMovieFromDataForkDoGuts_priv + 276
    15 com.apple.QuickTime 0x94ab0844 PrivateNewMovieFromDataForkUnicode_priv + 1732
    16 com.apple.QuickTime 0x948fc5f4 NewMovieFromFilePriv + 676
    17 com.apple.QuickTime 0x94822628 NewMovieFromDataRefPriv_priv + 1688
    18 com.apple.QuickTime 0x948214e8 NewMovieFromProperties_priv + 4632
    19 com.apple.QTKit 0x95973e08 -[QTMovie initWithAttributes:error:] + 3836
    20 com.apple.QTKit 0x95972ef0 +[QTMovie movieWithAttributes:error:] + 60
    21 com.apple.quicktimeplayer 0x000057e8 -[QTPMovieDocument readFromFile:ofType:error:] + 276
    22 com.apple.quicktimeplayer 0x00005648 -[QTPMovieDocument initWithContentsOfFile:ofType:isHotPicks:error:] + 116
    23 com.apple.AppKit 0x93ad71fc -[NSDocumentController makeDocumentWithContentsOfURL:ofType:error:] + 332
    24 com.apple.AppKit 0x93ad703c -[NSDocumentController openDocumentWithContentsOfURL:display:error:] + 340
    25 com.apple.quicktimeplayer 0x000479c4 -[QTPApplicationDelegate openFiles:openInNewPlayer:] + 412
    26 com.apple.quicktimeplayer 0x00047810 -[QTPApplicationDelegate application:openFiles:] + 108
    27 com.apple.AppKit 0x939d4bc8 -[NSApplication _doOpenFiles:] + 128
    28 com.apple.AppKit 0x939d4b20 -[NSApplication(NSAppleEventHandling) _handleAEOpenDocuments:] + 88
    29 com.apple.AppKit 0x937a1290 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 296
    30 com.apple.Foundation 0x92bf4e28 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 380
    31 com.apple.Foundation 0x92bf4c88 _NSAppleEventManagerGenericHandler + 92
    32 com.apple.AE 0x914fe960 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 208
    33 com.apple.AE 0x914fe7fc dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    34 com.apple.AE 0x914fe654 aeProcessAppleEvent + 284
    35 com.apple.HIToolbox 0x932bd2e0 AEProcessAppleEvent + 60
    36 com.apple.AppKit 0x9379f90c _DPSNextEvent + 856
    37 com.apple.AppKit 0x9379f3f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    38 com.apple.quicktimeplayer 0x00004e38 -[QTPApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 56
    39 com.apple.AppKit 0x9379b93c -[NSApplication run] + 472
    40 com.apple.AppKit 0x9388c458 NSApplicationMain + 452
    41 com.apple.quicktimeplayer 0x000564fc _start + 760
    42 com.apple.quicktimeplayer 0x00056200 start + 48
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000090a410f0 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x44242228 xer: 0x0000000000000000 lr: 0x000000009599f164 ctr: 0x0000000090a410e0
    r0: 0x000000009599f164 r1: 0x00000000bfffd3a0 r2: 0x00000000a0001fa4 r3: 0x000000000aea1ce0
    r4: 0x0000000090a9fc68 r5: 0x00000000a2bf50cc r6: 0x0000000000000000 r7: 0x0000000000000ff0
    r8: 0x0000000000000001 r9: 0x000000000000000c r10: 0x000000009599efe4 r11: 0x000000006f57fc68
    r12: 0x0000000090a410e0 r13: 0x00000000bfffe130 r14: 0x0000000000000000 r15: 0x00000000003ff8d4
    r16: 0x000000000000019a r17: 0x0000000000000000 r18: 0x00000000003ff294 r19: 0x00000000ffffffff
    r20: 0x0000000000000000 r21: 0x00000000003ff5a8 r22: 0x0000000000000001 r23: 0x0000000000000ff0
    r24: 0x0000000000000003 r25: 0x00000000bfffd5b8 r26: 0x00000000a597f118 r27: 0x00000000a597f118
    r28: 0x0000000090a9fc68 r29: 0x000000000aea1ce0 r30: 0x0000000000469ad0 r31: 0x000000009599f118
    Binary Images Description:
    0x1000 - 0x131fff com.apple.quicktimeplayer 7.6.4 /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    0x37c000 - 0x37dfff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x682000 - 0x6eafff com.DivXInc.DivXDecoder 6.4.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.85 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 (681.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.13 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918eefff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91902000 - 0x91927fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193a000 - 0x9197cfff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91998000 - 0x919acfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ba000 - 0x91a00fff com.apple.ImageIO.framework 1.5.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a17000 - 0x91adefff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2c000 - 0x91b41fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b46000 - 0x91b64fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6a000 - 0x91c21fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c70000 - 0x91c74fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c76000 - 0x91ce0fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce5000 - 0x91d00fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d05000 - 0x91d08fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0a000 - 0x91df8fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e17000 - 0x91e55fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5c000 - 0x91e5cfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e5e000 - 0x91f43fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4b000 - 0x91f6afff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd6000 - 0x92044fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9204f000 - 0x920e4fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920fe000 - 0x92686fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926b9000 - 0x929e4fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a14000 - 0x92b02fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b05000 - 0x92b8dfff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bce000 - 0x92e01fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f34000 - 0x92f52fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f5d000 - 0x92fb7fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd5000 - 0x92fd5fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fd7000 - 0x92febfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93003000 - 0x93013fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9301f000 - 0x93034fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93046000 - 0x930cdfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e1000 - 0x930ecfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930f6000 - 0x93124fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9313e000 - 0x9314dfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93159000 - 0x931bffff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f0000 - 0x9323ffff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9326d000 - 0x9328afff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9329c000 - 0x932a9fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b2000 - 0x935c0fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93710000 - 0x9371cfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93795000 - 0x93795fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93797000 - 0x93dcafff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94157000 - 0x941c9fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94202000 - 0x942c7fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9431a000 - 0x9431afff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9431c000 - 0x944dcfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94526000 - 0x94563fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9456b000 - 0x945bbfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945c4000 - 0x945ddfff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9478b000 - 0x9479afff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a2000 - 0x947affff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f5000 - 0x9480efff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94815000 - 0x94b48fff com.apple.QuickTime 7.6.4 (1327.73) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c30000 - 0x94ca1fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95971000 - 0x95a21fff com.apple.QTKit 7.6.4 (1327.73) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95b54000 - 0x95b86fff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x969e8000 - 0x96a07fff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97264000 - 0x97271fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97cec000 - 0x97dbdfff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97e3a000 - 0x97e3afff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9867c000 - 0x992b5fff com.apple.QuickTimeComponents.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9bc24000 - 0x9bc44fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9fea1000 - 0x9ff43fff com.apple.QuickTimeImporters.component 7.6.4 (1327.73) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9ff61000 - 0x9ffa3fff com.apple.CoreMediaIOServicesPrivate 20.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9ffc8000 - 0x9fff2fff com.apple.CoreMediaPrivate 15.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    Model: PowerMac7,3, BootROM 5.2.4f1, 1 processors, PowerPC G5 (3.0), 2 GHz, 1.5 GB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
    Memory Module: DIMM0/J11, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J12, 256 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM2/J13, 512 MB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM3/J14, 512 MB, DDR SDRAM, PC3200U-30330
    Network Service: Built-in Ethernet, Ethernet, en0
    Serial ATA Device: Maxtor 6B160M0, 152.67 GB
    Parallel ATA Device: SONY DVD RW DW-Q28A, 802.88 MB
    USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
    USB Device: USB/PS2 Wheel Mouse, Kensington, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA

  • Data Recovery from Partitioned and formatted Bit Locker Encrypted Drive

    Recently because of some issues in windows 7 installation from windows 8 installed OS. it was giving as the disc is dynamic windows can not be installed on it. so at last after struggling hard no other solution i partitioned and formatted my whole
    drive so all data gone included the drive which was encrypted by bit lockers.
    For recovery i used many software such as ontrack easy recover, get data back, recovery my files professional edition but still i couldnt able to recover my data from that drive. then i found some suggestion Using CMD to decrypt my data first 
    http://technet.microsoft.com/en-us/library/ee523219(WS.10).aspx
    where it shows it successfully decrypt my data at that moment my drives were in RAW format excluding on which windows is installed and then in CMD i check Chdsk which also shows no problem found. but now problem is still i coudnt able to recover
    my data then i format the drive D and again tried to recover data using above software after decryption still no result. 
    Now i need assistance how i can recover my encrypted drive as it was partitioned and also formatted but decrypted also as i have its recovery key too. thanks

    Hi ,
    I am afraid that we cannot get the data back if the drive has been formatted even if use the
    BitLocker Repair Tool.
    You’d better contact your local data recovery center to try to get data back.
    Tracy Cai
    TechNet Community Support

  • Manage-bde command is not generating recovery key on network location

    Hi,
    I am trying to save the recovery key to the network share location and start up key in the USB drive while enabling bit locker.When the OS drive gets encrypted, the default folder for recovery password shows that it contains 1 file but not getting anything
    inside it when i checked the properties of the folder.
    i have already changed the group policy as "choose default folder for recovery password".
    I am using the command to enable the bit-locker as "manage-bde.exe -on C: -rk
    <network location to save recovery key> -sk <location of the USB drive>
    -rp to enable the bit-locker. It is generating the start up key in the USB but not the recovery key on network share.
    Can anyone suggest what i am missing or what else i should do to generate the recovery key on network share.
    Does manage-bde process be able to save the recovery key on network share or it hand over to some other process to perform this task.
    Thanks
    Gaurav Ranjan

    I got you Manoj, but I want to ask you one think that what if i lost the startup  key or my USB stick. I have my recovery key on the network share.  In order to log-in my machine I need the recovery password. From where i will get the recovery
    password(48 digit). Surely from the recovery key on the network share. So how can i get the recovery password if only we have the recovery key.
    I know both are different in context. Both are two different thing. I have lost my USB stick along with the recovery password and I have to log-in my machine. How can i do that i want to know that. Do there is any method to get recovery password from the
    recovery key on network share. I have retrieved the recovery password when the recovery key in AD. But this time it is on network share.
    Also one think which I need to solve is that the manage-bde -protectors -add command creates a new .bek file along with the older one. So the .bek file which get shown at the time of the start up of the machine is different from that stored in the network.
    So i am getting confused as which .bek file is for which machine and hard to retrieve the password.
    Is there any method to store recovery key on network without the -protectors -add command line so that both the .bek file should be matched and can easily be known for indiviual machine in an OU. As if both the .bek files will be different it would be difficult
    to to retrieve the recovery password for the machines.
    Please do inform if you need some more information about the scenario if i missed something.
    Thanks
    Gaurav Ranjan

  • Did PC Recovery and Dowloaded iTunes, wont open, only get error reports.

    I just did a PC recovery and have all of my music from iTunes backed up on a dock drive. I just re-downloaded iTunes and installed it. iTunes won't open, I just get an error report every time. I clicked on the setup file and tried to repair it. I've uninstalled it and redownloaded it. Still the same result. Does anyone have any ideas on what else I could do?

    does that help anyone?
    dv8000   Windows XP  

  • Data migration b/w r11 and r12

    Hi,
    the place i worked have boht R11 & R12 intances, i need to move some clients (shared service cnetre) from r11 to r12. In terms fo data i.e. AP, AR & GL. i need to find a quick way around.
    My concern is
    1) should i just move the Open POs if yes /no then y
    2) how about customers and suppliers
    3)Open & closed invoices (AR)
    used to do balance tranfer, but there are some complications and is time consuming as well. Please share your thoughts and experience on above and if possible a step by step process that you know or have used

    Dear Renny,
    1) Identify the data source used
    2) Use transaction RSA3 in BW and R/3 for this datasource.
    3) Try to test data for a month say May 2007
    4) If it is the same, may be you are not using proper selection conditions in the Infopackage.
    If it helps even a bit, do allocate *points
    regards
    Vinay

  • My iPhone would just randomly give me a blue screen and then restart--did that a bunch of times between Tuesday and last night. As of last night, it WILL NOT come back on. iTunes says it's in recovery mode....what does all of this mean???

    Tuesday night I was texting a friend and when I went to open her message, my screen went blue and restarted. I just wrote it off as weird and went on about my business. Later that night, I tried to turn on my phone and it would not turn on. I plugged it up, held down the power button, and pressed the home button all numerous times. I looked online and it said to do a "hard reset" by holding down the power and home button at the same time--my phone then came on. Throughout Wednesday, it would give me a blue screen and restart--nothing major just really annoying. I took it to the local Verizon store where I bought the phone from and he said that it was some type of hardware defect and I was still under my year warranty so I could get a new one for free--the free phone won't be here until tomorrow, Saturday. I took it home and it didn't give me any trouble for a couple of hours. The next day it was cooperating and then I left town for a little while and it acted up (blue screen and then restarting) a few times. When I got home, it acted up again and so I restarted the phone and it was working fine. A few minutes later, I tried to check my messages and the phone was off again. No matter what I do, my phone will not come back to life. It had at least 45% battery last time I looked at it. I decided to plug the phone up to my computer and see what it did--my computer recognizes that there is a phone hooked to it and it says that it's in "recovery mode". It also said that if I'm having issues with my phone, that I need to reset the phone via iTunes. I guess the questions that arise are
    1. Why is my phone doing this?
    2. If I reset my phone, will it go back to working again? I ask that because I don't want Verizon to charge me $300 when they send me the replacement phone and I won't need it (assuming that the phone decides to work once it's been reset).
    3. What type of hardware defect is this that is causing this issue, not only with my iPhone 5S but others as well?
    4. Shouldn't people be notifying Apple and letting them know that they need to fix this issue?
    5. Should I report this issue to Apple even though I didn't buy the phone directly from them, but through Verizon?
    Any help that anyone could give me would be greatly appreciated! This whole situation has me stressed out and seriously confused.

    Hi, beth.lau.gr.
    Thank you for visiting Apple Support Communities.  
    I understand you have been experiencing issues with your iPhone restarting and showing you a blue screen.  I wont be able to give you an exact answer as to why this is happening.  However, this is the most relevant troubleshooting article for this issue.  This article also provides options to reach out to us via phone for additional assistance.  
    If your iOS device restarts, displays the Apple logo, or powers off while you're using it
    http://support.apple.com/en-us/HT203899
    Cheers, 
    Jason H.  

  • My iPod Touch is stuck in recovery mode after I left it on while updating!!!

    I was updating my ipod touch 3rd generation (ios 4.3, i think) and I saw a wasp and left the computer on in the middle of the updating process and now the ipod is stuck in recovery mode and it says the only way to get it out is to recover it, but that will erase everything!!! HELP ME!!! until i get an answer      I HATE YOU, APPLE URGG
    operating system: whatever the latest available to itouch is.

    Without knowing what the error message said all I can suggest is:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • HT201263 my iphone 4 went into recovery mode & will not restore. Unknown error 21 comes up on iTunes. Please can someone offer any ideas for a solution?

    I have an iphone 4 nearly 2 yrs old. It has worked perfectly for that time. On Friday last (whilst away on holiday) I took the phone out of my pocket & it was lifeless. I tried switching it on, no joy, I tried the power/home button reset no joy. I plugged it into a mains charger & it came on but had a banner across the screen saying "verification required". I removed the charger & decided I would try again when I got home so I could connect to my PC & iTunes.
    At home I went through the whole above process again but when I plugged it into the mains again it just had the Apple logo going on/off repeatedly. I plugged the phone into my PC & the apple logo appeared followed by the "connect to iTunes". In iTunes I get the banner "iTunes has detected an iPhone in recovery mode. You must restore this iPhone before it can be used with iTunes". So I click on "OK" the "Restore" then a banner asking if I'm sure I want to restopre the iPhone appears, press "Restore & Update". iTunes starts to remove the software, veryfies it with Apple & then another flag "The iPhone could not be restored. An unknown error occurred (21) which appears to be a security issue.
    I thought the above problem was something to do with O2 because I picked up my new iPhone 4S last Tuesday but was unable to set it up until I got back from my holiday, O2 say it isn't anything they've done.
    My question is has it happened to anyone & can anybody offer a solution, is it a hardware or software issue?

    Please see the two articles below:
    http://support.apple.com/kb/TS3694
    http://support.apple.com/kb/TS3125

Maybe you are looking for