Getting Error "too large to archive" while using Tar

Dear All,
I am getting below error while trying to use TAR to acrhive multiple files in one file:
<FileName> too large to archive
The file is of size 2 GB (there are other files with same capacitiy but i am not getting any error for them). Here is waht i am trying to acheive:
(1) Create one tar file from all files in a folder (using tar)
(2) compress the tar file (using compress)
(3) copy the compressed file to the tape (using tar)
One more question, when i use compress (or gzip) command, it create comressed files but original files are not preserved. For example; if i use compress for files a.txt & b .txt it creates a new file (say ab.Z) but removes the files a.txt and b.txt. Is there any option (or any other command) using which i can comress the files without getting them removed?
Thanks in Advance.

Dear Robert,
Thanks for your help. While trying to create tar file using gtar i am now getting below error:
No space left device
So appearantly i don't have enough free space on my file system on which i am trying to create two questions:
(1) Is it possible to compress the tar file resulting from gtar in one command (tar file creation + compress). I don't want files get removed after compression.
(2) Can we directly write to Tape Drive using gtar? Will the size of file resulting from gtar will be same as that of total size of all files or it will be less?
regards,

Similar Messages

  • Flarcreate error:  too large to archive in current mode

    Hi guys,
    I try to create a flash archive of a LDOM that holds an Oracle DB. I use the following command:
    >
    -bash-3.00# flarcreate -n ho811 -S /net/remoteserver/vol1/shared/hor_811.flar
    Full Flash
    Checking integrity...
    Integrity OK.
    Running precreation scripts...
    Precreation scripts done.
    Creating the archive...
    cpio: cpio: u01/app/oracle/data/hor811/hor811_data: too large to archive in current mode
    cpio: cpio: u01/app/oracle/data/hor811/hor811_index: too large to archive in current mode
    20687935 blocks
    2 error(s)
    Archive creation complete.
    Running postcreation scripts...
    Postcreation scripts done.
    Running pre-exit scripts...
    Pre-exit scripts done.
    >
    /u01/app/oracle/data/hor811/hor811_data and /u01/app/oracle/data/hor811/hor811_index each have 5GB.
    Any ideas how to get rid of this errors?
    Thank you,
    kido
    Edited by: kido on May 11, 2011 6:10 PM

    Solved in using :
    >
    flarcreate -n hor811 -L pax -S /net/remote_server/vol1/shared/hor_811_pax.flar
    >
    which is kinda weird, cause I thought that pax was the default archiver - from man pages:
    >
    -L archiver
    By default, the value for the files_archived_method
    field in the identification section is pax(1). If you
    specify -L, the archiver (cpio(1) and pax) is used
    instead.
    >
    Well, I guess it's not like that...or maybe I got it wrong...
    Now I'm just curious to see if Jumpstart can unpack this archive :)
    kido

  • Getting Error in SM58 and IDX2 while using IDOC from

    Dear All,
    Getting error when trying to send FIDCCP02 Idoc from ECC to PI system.
    "Basic Type 'FIDCCP02' is unknown"
    Getting the same error while trying to import metadata using IDX2 from PI side.
    All connections and distribution model are created.
    Please help
    Regards

    hey,
    I checked all config again but getting error while checking ocnsistency in BDM5 on ECC system(E1Q).
    It is failing when the messge type FIDCC1 reaches PI QA (X1Q) system and the error states
    Message type FIDCC1 is not defined
    Please check last line of below message:
    E1QCLNT001     Checks in own system E1QCLNT001          
         Message type     @08\QCheck OK@     Message type FIDCC1 is defined
         Segment filtering     @08\QCheck OK@     No segment filtering
         Conversions     @08\QCheck OK@     No conversion
         Partner profile     @08\QCheck OK@     Partner profile has been created
                                      @08\QCheck OK@     .....Port PI_QA
              @08\QCheck OK@     .....Port PI_QA
              @08\QCheck OK@     .....Packet size 0001
              @08\QCheck OK@     .....Basis type FIDCCP02
              @08\QCheck OK@     .....enhancement
         Port     @08\QCheck OK@     Port PI_QA : To PI Quality System
              @08\QCheck OK@     .....Port type: Transactional RFC
              @08\QCheck OK@     .....port version 3: IDoc record types from Version 4.0 onwards
              @08\QCheck OK@     .....Logical address (destination) X1QCLNT001
         Logical address (destination)     @08\QCheck OK@     Logical address (destination) X1QCLNT001 is defined
    X1QCLNT001     Checks in partner system X1QCLNT001          
         Check of own logical system     @08\QCheck OK@     Own logical system is X1QCLNT001
              @08\QCheck OK@     Logical system is the same as the target address
                       Message Type     *@0A\QCheck resulted in error@*     Message type FIDCC1 is not defined
    When I am clicking on error it is taking to WE81 on PI side.
    So do I need to add this message type in PI system as it is present in ECC side?
    Thanks
    Edited by: Chanakya Sharma on Dec 10, 2010 12:10 PM

  • The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.

    The below function is giving me the hours difference what I wanted, but today it is giving us the below error: 
    Msg 535, Level 16, State 0, Line 1
    The datediff function resulted in an overflow. The number of dateparts separating two date/time instances is too large. Try to use datediff with a less precise datepart.
    Please Help..
    ALTER FUNCTION [dbo].[GetHoursExcludingWeekdays](@StartDate datetime2,@EndDate datetime2)
    returns decimal(12,3)
    as
    begin
        if datepart(weekday,@StartDate) = 1
            set @StartDate = dateadd(day,datediff(day,0,@StartDate),1)
        if datepart(weekday,@StartDate) = 7
            set @StartDate = dateadd(day,datediff(day,0,@StartDate),2)
        -- if @EndDate happens on the weekend, set to previous Saturday 12AM
        -- to count all of Friday's hours
        if datepart(weekday,@EndDate) = 1
            set @EndDate = dateadd(day,datediff(day,0,@EndDate),-2)
        if datepart(weekday,@EndDate) = 7
            set @EndDate = dateadd(day,datediff(day,0,@EndDate),-1)
        declare @return decimal(12,3)
        set @return = ((datediff(second,@StartDate,@EndDate)/60.0/60.0) - (datediff(week,@StartDate,@EndDate)*48))
        return @return
    end
    ReportingServices

    You'll get this error if the difference between the start and end date is greater that about 68 years due to the "second" DATEDIFF specification.  Perhaps the dates are greater than the expected range due to a data quality issue. 
    Taking the advice from the error message, you could use minutes instead of seconds like the example below the version below.  This could still result in the error of the difference is greater than a couple of hundred years, though.  You might consider
    validating the dates and returning NULL if outside expected limits.
    ALTER FUNCTION [dbo].[GetHoursExcludingWeekdays](@StartDate datetime2,@EndDate datetime2)
    returns decimal(12,3)
    as
    begin
    if datepart(weekday,@StartDate) = 1
    set @StartDate = dateadd(day,datediff(day,0,@StartDate),1)
    if datepart(weekday,@StartDate) = 7
    set @StartDate = dateadd(day,datediff(day,0,@StartDate),2)
    -- if @EndDate happens on the weekend, set to previous Saturday 12AM
    -- to count all of Friday's hours
    if datepart(weekday,@EndDate) = 1
    set @EndDate = dateadd(day,datediff(day,0,@EndDate),-2)
    if datepart(weekday,@EndDate) = 7
    set @EndDate = dateadd(day,datediff(day,0,@EndDate),-1)
    declare @return decimal(12,3)
    set @return = ((datediff(minute,@StartDate,@EndDate)/60.0) - (datediff(week,@StartDate,@EndDate)*48))
    return @return
    end
    GO
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • When I open itunes i get this message, itunes quit unexpectedly while using MobileDevice plug-ins. how do I fix it!

    When I am opening up my itunes I am getting this screen
    iTunes quit unexpectedly while using MobileDevice plug-ins.
    Process:         iTunes [1759]
    Path:            /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier:      com.apple.iTunes
    Version:         11.1.3 (11.1.3)
    Build Info:      iTunes-1113011001003008~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [168]
    Responsible:     iTunes [1759]
    User ID:         501
    PlugIn Path:       /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
    PlugIn Identifier: com.apple.mobiledevice
    PlugIn Version:    710.1 (710.1)
    Date/Time:       2013-11-07 12:19:26.707 -0500
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  D4AA1838-5144-3CD8-B19D-504E049E227D
    Sleep/Wake UUID: CB859467-E8AE-49F2-87F7-D52BE92D2F1F
    Crashed Thread:  0  iTunes main  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000010bb21e00
    VM Regions Near 0x10bb21e00:
        __LINKEDIT             000000010ba18000-000000010baa1000 [  548K] r--/rwx SM=COW  /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    --> __TEXT                 000000010baa1000-000000010bb93000 [  968K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
        __DATA                 000000010bb93000-000000010bbb6000 [  140K] rw-/rwx SM=PRV  /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
    Thread 0 Crashed:: iTunes main  Dispatch queue: com.apple.main-thread
    0   com.apple.mobiledevice                  0x000000010bb4052a DYLD-STUB$$pthread_mutex_lock + 0
    1   com.apple.mobiledevice                  0x000000010bb21e71 AMRestorableDeviceEnableExtraDFUDevices + 28
    2   com.apple.iTunes                        0x00000001059d5cf5 0x104ff8000 + 10345717
    3   com.apple.iTunes                        0x0000000105be2386 0x104ff8000 + 12493702
    4   com.apple.iTunes                        0x0000000104ffe19e 0x104ff8000 + 24990
    5   com.apple.iTunes                        0x000000010526dbd1 0x104ff8000 + 2579409
    6   com.apple.iTunes                        0x000000010526d6f0 0x104ff8000 + 2578160
    7   com.apple.iTunes                        0x000000010526d5a7 0x104ff8000 + 2577831
    8   com.apple.iTunes                        0x000000010575ba92 0x104ff8000 + 7748242
    9   com.apple.iTunes                        0x000000010575b1b6 0x104ff8000 + 7745974
    10  com.apple.iTunes                        0x000000010575ce51 0x104ff8000 + 7753297
    11  com.apple.iTunes                        0x000000010575cdd3 0x104ff8000 + 7753171
    12  com.apple.CoreFoundation                0x00007fff89196fcc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    13  com.apple.CoreFoundation                0x00007fff8908ac5d _CFXNotificationPost + 2893
    14  com.apple.Foundation                    0x00007fff8da294aa -[NSNotificationCenter postNotificationName:object:userInfo:] + 68
    15  com.apple.AppKit                        0x00007fff93828d0e -[NSApplication finishLaunching] + 440
    16  com.apple.AppKit                        0x00007fff93828823 -[NSApplication run] + 128
    17  com.apple.iTunes                        0x0000000105905c57 0x104ff8000 + 9493591
    18  com.apple.iTunes                        0x0000000105388d4c 0x104ff8000 + 3738956
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff88c65e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8aa95f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8aa98fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff88c66662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8d37243d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8d372152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff88c65e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8aa95f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8aa98fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff88c65e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff8aa95f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff8aa98fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff88c61a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88c60d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff890eb315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff890ea939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff890ea275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff8919f9d1 CFRunLoopRun + 97
    6   com.apple.iTunes                        0x000000010501351f 0x104ff8000 + 111903
    7   com.apple.iTunes                        0x0000000104ffd0f3 0x104ff8000 + 20723
    8   libsystem_pthread.dylib                 0x00007fff8aa94899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff8aa9472a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff8aa98fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff88c61a56 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff8d374a15 _dispatch_semaphore_wait_slow + 206
    2   libxpc.dylib                            0x00007fff8c159733 xpc_connection_send_message_with_reply_sync + 195
    3   com.apple.SystemConfiguration           0x00007fff94c2ae73 __SCNetworkReachabilityServer_targetStatus + 198
    4   com.apple.SystemConfiguration           0x00007fff94c29d21 __SCNetworkReachabilityGetFlags + 393
    5   com.apple.SystemConfiguration           0x00007fff94c299f8 SCNetworkReachabilityGetFlags + 237
    6   com.apple.iTunes                        0x000000010521a236 0x104ff8000 + 2236982
    7   com.apple.iTunes                        0x00000001052192ea 0x104ff8000 + 2233066
    8   com.apple.iTunes                        0x00000001050106d2 0x104ff8000 + 100050
    9   com.apple.iTunes                        0x000000010547e449 0x104ff8000 + 4744265
    10  com.apple.iTunes                        0x0000000104ffd0f3 0x104ff8000 + 20723
    11  libsystem_pthread.dylib                 0x00007fff8aa94899 _pthread_body + 138
    12  libsystem_pthread.dylib                 0x00007fff8aa9472a _pthread_start + 137
    13  libsystem_pthread.dylib                 0x00007fff8aa98fc9 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x00007fff88c65716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff8aa96c3b _pthread_cond_wait + 727
    2   com.apple.iTunes                        0x0000000104ffc40f 0x104ff8000 + 17423
    3   com.apple.iTunes                        0x000000010547a04b 0x104ff8000 + 4726859
    4   com.apple.iTunes                        0x000000010547a77a 0x104ff8000 + 4728698
    5   com.apple.iTunes                        0x0000000104ffd0f3 0x104ff8000 + 20723
    6   libsystem_pthread.dylib                 0x00007fff8aa94899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff8aa9472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff8aa98fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x000000010bb21e00  rbx: 0x0000600000450800  rcx: 0x000000010bb21e55  rdx: 0x00007fff787ac110
      rdi: 0x000000010bb94e58  rsi: 0x0000970000009700  rbp: 0x00007fff5ac06a00  rsp: 0x00007fff5ac069a8
       r8: 0x0000000000000040   r9: 0x00007fff5ac06500  r10: 0x000000010bbc7540  r11: 0x0000000000124540
      r12: 0x0000600000450830  r13: 0x00000001069a9928  r14: 0x0000600000474ec0  r15: 0x000000010620c070
      rip: 0x000000010bb4052a  rfl: 0x0000000000010202  cr2: 0x000000010bb21e00
    Logical CPU:     1
    Error Code:      0x00000007
    Trap Number:     14
    Binary Images:
           0x104ff8000 -        0x10669afef  com.apple.iTunes (11.1.3 - 11.1.3) <A2A98806-87A0-3DC1-9B56-49D082615D15> /Applications/iTunes.app/Contents/MacOS/iTunes
           0x106a77000 -        0x106af7ff7  com.apple.iTunes.iPodUpdater (10.7 - 10.7) <6DF8BE48-75E5-36DE-AD39-59B0B5A57E0F> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
           0x106b39000 -        0x106b63ffb  com.apple.avfoundationcf (2.0 - 133) <385B4AC1-12A3-3ECC-98CD-31D391FCCEFE> /System/Library/PrivateFrameworks/AVFoundationCF.framework/Versions/A/AVFoundat ionCF
           0x106ba0000 -        0x106d74fff  com.apple.iad.iAdCore (1.0 - 1) <0AC49774-2E81-31D7-B2BA-F272E16FD430> /Applications/iTunes.app/Contents/Frameworks/iAdCore.framework/Versions/A/iAdCo re
           0x106e42000 -        0x106e46fff  com.apple.agl (3.2.3 - AGL-3.2.3) <1B85306F-D2BF-3FE3-9915-165237B491EB> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x106e54000 -        0x106e57fff  com.apple.iPod (1.7 - 20) <9B9FD104-A8EE-3884-8610-B06700AC344E> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
           0x106e5f000 -        0x10718bff7 +libgnsdk_dsp.1.9.5.dylib (1.9.5) <14636B08-4D26-54CA-3EE8-247B2B708AF0> /Applications/iTunes.app/Contents/MacOS/libgnsdk_dsp.1.9.5.dylib
           0x1071b6000 -        0x1071edff7 +libgnsdk_musicid.1.9.5.dylib (1.9.5) <C034C2ED-6A46-315F-89C8-8D54A937B255> /Applications/iTunes.app/Contents/MacOS/libgnsdk_musicid.1.9.5.dylib
           0x107205000 -        0x1072dbfe7 +libgnsdk_sdkmanager.1.9.5.dylib (1.9.5) <D144E870-FABC-E19E-452E-A33D19595B19> /Applications/iTunes.app/Contents/MacOS/libgnsdk_sdkmanager.1.9.5.dylib
           0x1072fe000 -        0x107341ff7 +libgnsdk_submit.1.9.5.dylib (1.9.5) <6689251D-098B-0F8D-08CC-785271E98540> /Applications/iTunes.app/Contents/MacOS/libgnsdk_submit.1.9.5.dylib
           0x107557000 -        0x107559ff7  com.apple.textencoding.unicode (2.6 - 2.6) <0EEF0283-1ACA-3147-89B4-B4E014BFEC52> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10755e000 -        0x107562ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) <DEB558B7-BACF-3871-A021-B3A904F4FB44> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x107a8a000 -        0x1087fffff  com.apple.CoreFP (2.5.16 - 2.5.16) <1C390A93-4187-37E7-8A7E-4417876F069B> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
           0x10b6eb000 -        0x10b81fff7  com.apple.CoreADI (1.34.0 - 1.34.0) <33B6ECA7-680E-3517-A1C1-9785BA022516> /System/Library/PrivateFrameworks/CoreADI.framework/CoreADI
           0x10b826000 -        0x10b9f7fff  com.apple.audio.units.Components (1.9 - 1.9) <80991B19-4B07-3DBF-A4B3-597DA1AA65B2> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10baa1000 -        0x10bb92ff7  com.apple.mobiledevice (710.1 - 710.1) <356F402B-7499-3EA6-8541-A3D89F6D119F> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
        0x7fff5fe20000 -     0x7fff5fe53817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8784a000 -     0x7fff87b18ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff87b1f000 -     0x7fff87b70ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff87b71000 -     0x7fff87b7efff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff87f5b000 -     0x7fff882d1ffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff88af5000 -     0x7fff88b3efff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff88b3f000 -     0x7fff88b47fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff88b57000 -     0x7fff88c3bfff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff88c46000 -     0x7fff88c4fff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff88c50000 -     0x7fff88c6cff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff88c71000 -     0x7fff88c7ffff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff88de7000 -     0x7fff88e67fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff88e68000 -     0x7fff88fa8fff  com.apple.QTKit (7.7.3 - 2826) <7A110F61-D4DD-3C84-950D-E5F486DE5765> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff89007000 -     0x7fff89012ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff89034000 -     0x7fff89079ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8907a000 -     0x7fff8925fff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8926d000 -     0x7fff8933eff1  com.apple.DiskImagesFramework (10.9 - 371.1) <D456ED08-4C1D-341F-BAB8-85E34A7275C5> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8933f000 -     0x7fff89349fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff895b5000 -     0x7fff895f4fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8961b000 -     0x7fff8966efff  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
        0x7fff8966f000 -     0x7fff896adff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff896ae000 -     0x7fff897b3fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff897b4000 -     0x7fff8984fff7  com.apple.PDFKit (2.9 - 2.9) <AD968A31-6567-30A7-A699-154C88DB56D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff89867000 -     0x7fff89869fff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8986a000 -     0x7fff8987affb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff89885000 -     0x7fff8990eff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff89916000 -     0x7fff89aceff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff89ae9000 -     0x7fff89d41ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff89d42000 -     0x7fff89da8fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff89db9000 -     0x7fff89dc1ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff89dc2000 -     0x7fff89dddff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff89dde000 -     0x7fff89de1ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8a074000 -     0x7fff8a0adff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a106000 -     0x7fff8a107ff7  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
        0x7fff8a117000 -     0x7fff8a13cff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8a13d000 -     0x7fff8a18bfff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8a18c000 -     0x7fff8a5dafff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8a621000 -     0x7fff8a6eafff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8a783000 -     0x7fff8a788fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8a7dc000 -     0x7fff8a7deff7  com.apple.SecCodeWrapper (3.0 - 1) <F5107AD0-20CD-328C-8B2E-74CB6F3169F6> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff8a7df000 -     0x7fff8a813fff  libssl.0.9.8.dylib (50) <B15F967C-B002-36C2-9621-3456D8509F50> /usr/lib/libssl.0.9.8.dylib
        0x7fff8a82a000 -     0x7fff8a85bfff  com.apple.MediaKit (15 - 709) <23E33409-5C39-3F93-9E73-2B0E9EE8883E> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8a95c000 -     0x7fff8a964ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8a965000 -     0x7fff8a96fff7  libcsfde.dylib (380) <3A54B430-EC05-3DE9-86C3-00C1BEAC7F9B> /usr/lib/libcsfde.dylib
        0x7fff8a970000 -     0x7fff8aa92ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8aa93000 -     0x7fff8aa9aff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff8aad9000 -     0x7fff8ab3dff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8ab47000 -     0x7fff8ab4bfff  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
        0x7fff8ab4c000 -     0x7fff8ab57fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff8ab58000 -     0x7fff8ab69ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff8ab6a000 -     0x7fff8abc2ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8abc3000 -     0x7fff8abc3fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b11d000 -     0x7fff8b1cdff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8b1dc000 -     0x7fff8b214ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8b215000 -     0x7fff8b224ff8  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
        0x7fff8b225000 -     0x7fff8b4f9fc7  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
        0x7fff8b4fa000 -     0x7fff8b50dff7  com.apple.AppContainer (3.0 - 1) <A90C058D-46E8-3BAB-AF17-AF9C7C273069> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff8b50e000 -     0x7fff8ba7efff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff8bb5d000 -     0x7fff8bb5dfff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8bb64000 -     0x7fff8bb67fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8bb72000 -     0x7fff8bb8dff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8bb8e000 -     0x7fff8bb92ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8bb93000 -     0x7fff8bb97ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff8bbc2000 -     0x7fff8bc0fff2  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
        0x7fff8bc10000 -     0x7fff8bc52ff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8bc65000 -     0x7fff8bdd5ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8bdd6000 -     0x7fff8bdd7ffb  libScreenReader.dylib (333.2) <0172E6E2-9D4B-36BF-81DC-428FF0668E78> /usr/lib/libScreenReader.dylib
        0x7fff8bdd8000 -     0x7fff8bddcfff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff8be5e000 -     0x7fff8c00bf27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8c06d000 -     0x7fff8c13eff7  com.apple.QuickLookUIFramework (5.0 - 622.3) <9741E66B-3978-35F6-8846-B6C528945611> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8c13f000 -     0x7fff8c141ffb  libutil.dylib (34) <DAC4A6CF-A1BB-3874-9569-A919316D30E8> /usr/lib/libutil.dylib
        0x7fff8c142000 -     0x7fff8c14eff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8c14f000 -     0x7fff8c173fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff8c174000 -     0x7fff8c181ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8c182000 -     0x7fff8c187ff7  com.apple.MediaAccessibility (1.0 - 43) <D309D83D-5FAE-37A4-85ED-FFBDA8B66B82> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessi bility
        0x7fff8c188000 -     0x7fff8c2f6ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8c2f7000 -     0x7fff8c2feff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff8c2ff000 -     0x7fff8c323fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8c327000 -     0x7fff8c34bff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8c3ed000 -     0x7fff8c6d7fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8c6d8000 -     0x7fff8c6daff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8c6db000 -     0x7fff8c728fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <D01B7D87-4BDC-3E48-A79B-951D05075F9D> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8c729000 -     0x7fff8c742ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8c743000 -     0x7fff8c791fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8c792000 -     0x7fff8c793ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8c800000 -     0x7fff8c800fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8c801000 -     0x7fff8c806fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8c87c000 -     0x7fff8c87dfff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8ca90000 -     0x7fff8cad5ff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8d080000 -     0x7fff8d0adff2  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <43A137C4-3E72-37DC-945F-92569C12AAD4> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff8d0b8000 -     0x7fff8d118ff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff8d131000 -     0x7fff8d145fff  com.apple.aps.framework (4.0 - 4.0) <F529A05B-FB03-397E-B06A-3A60B808FA11> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8d14e000 -     0x7fff8d1adfff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8d1ed000 -     0x7fff8d1edfff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff8d1ee000 -     0x7fff8d258ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d259000 -     0x7fff8d270ffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff8d326000 -     0x7fff8d328fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8d36f000 -     0x7fff8d389fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff8d553000 -     0x7fff8d5dfff7  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
        0x7fff8d5e0000 -     0x7fff8d610fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8d611000 -     0x7fff8d9f2ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8d9f3000 -     0x7fff8da05ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8da06000 -     0x7fff8da0cff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8da0d000 -     0x7fff8da25ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8da26000 -     0x7fff8dd25fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8dd26000 -     0x7fff8de10fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8de11000 -     0x7fff8de3aff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff8de3b000 -     0x7fff8de64fff  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
        0x7fff8de65000 -     0x7fff8de67fff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8de68000 -     0x7fff8de7ffff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8de80000 -     0x7fff8de9bff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8de9c000 -     0x7fff8deadff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8dec7000 -     0x7fff8e7e305f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8eb84000 -     0x7fff8eb84ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8eb88000 -     0x7fff8ebcffff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8ec51000 -     0x7fff8ed86ffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8ed87000 -     0x7fff8eda3fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff8ee40000 -     0x7fff8f364fff  com.apple.QuartzComposer (5.1 - 316) <B20E93C3-8517-3E5C-83B6-C312C839C5D0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8f3e3000 -     0x7fff8f40dff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8f40e000 -     0x7fff8f467fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8f468000 -     0x7fff8f4f1fff  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
        0x7fff8f4f2000 -     0x7fff8f4f5ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff8f4f6000 -     0x7fff8f4f9fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8f4fa000 -     0x7fff8f5e8fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8f5ec000 -     0x7fff8f61bff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8f628000 -     0x7fff8f6f3fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8f6f4000 -     0x7fff8f6f4fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8f6f5000 -     0x7fff8f750ffb  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
        0x7fff8f751000 -     0x7fff8f778ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff8f779000 -     0x7fff8f781fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8f87f000 -     0x7fff8f937ff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8f971000 -     0x7fff8f989ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8f9ad000 -     0x7fff8f9b1ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8f9b2000 -     0x7fff8f9b3ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8fa07000 -     0x7fff8faf8ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff8faf9000 -     0x7fff8faffff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff8fb36000 -     0x7fff8fe50ff7  com.apple.MediaToolbox (1.0 - 1273.29) <6260E68B-7E50-3D49-8C0A-7145614C13D8> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8fe51000 -     0x7fff8fe51ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8fe52000 -     0x7fff8fe5bfff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8ff16000 -     0x7fff8ffd9ff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8ffed000 -     0x7fff8fff9ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8fffa000 -     0x7fff90000fff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff90261000 -     0x7fff90263fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff902be000 -     0x7fff902c2fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff902c3000 -     0x7fff90352ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff90353000 -     0x7fff9035bff7  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
        0x7fff9035c000 -     0x7fff90372fff  com.apple.CoreMediaAuthoring (2.2 - 947) <B01FBACC-DDD5-30A8-BCCF-57CE24ABA329> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff90373000 -     0x7fff903adff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff903c2000 -     0x7fff903d2fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff903d3000 -     0x7fff903d5ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff903d6000 -     0x7fff903dffff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff90610000 -     0x7fff90871ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff90872000 -     0x7fff9087cfff  com.apple.AppSandbox (3.0 - 1) <55717299-8164-3D79-918F-BD64706735CF> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff9087d000 -     0x7fff9096cfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff9096d000 -     0x7fff917b9ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff917ba000 -     0x7fff917c3fff  com.apple.DisplayServicesFW (2.8 - 360.8.14) <816A9CED-1BC0-3C76-8103-1B9BE0F723BB> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff91846000 -     0x7fff91846fff  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
        0x7fff91884000 -     0x7fff919d7ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff91c43000 -     0x7fff91e8bfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff91e8c000 -     0x7fff91e93ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff91e94000 -     0x7fff9213effd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff92184000 -     0x7fff92196fff  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
        0x7fff921e7000 -     0x7fff92232fff  com.apple.ImageCaptureCore (5.0 - 5.0) <F529EDDC-E2F5-30CA-9938-AF23296B5C5B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff922a5000 -     0x7fff922a6ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff922a7000 -     0x7fff922a8ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff922a9000 -     0x7fff92334fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff92335000 -     0x7fff92335ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff9238a000 -     0x7fff92401fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff92569000 -     0x7fff925b0ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff925b1000 -     0x7fff925b8fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff925b9000 -     0x7fff926e5fff  com.apple.MediaControlSender (1.9 - 190.4) <F5E934E1-D004-3C84-815A-961319F8C522> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff9305b000 -     0x7fff9305efff  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
        0x7fff9305f000 -     0x7fff93060ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff93061000 -     0x7fff9306eff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff93119000 -     0x7fff93141ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff93142000 -     0x7fff93204ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff93205000 -     0x7fff933a1ff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff933a2000 -     0x7fff933afff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff933b0000 -     0x7fff93414ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff93415000 -     0x7fff93461ffe  com.apple.CoreMediaIO (401.0 - 4544) <44EBC0FE-DAD5-3711-96CB-05250F350A16> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff93462000 -     0x7fff9347bff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff9350f000 -     0x7fff93536ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff93537000 -     0x7fff935a6ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff935ab000 -     0x7fff935ecfff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff935ed000 -     0x7fff935f4fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff935f5000 -     0x7fff93624ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff93625000 -     0x7fff93673ff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff93680000 -     0x7fff93682ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff93683000 -     0x7fff9368dff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff9368e000 -     0x7fff93693ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff93694000 -     0x7fff936e6fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff93722000 -     0x7fff93773fff  com.apple.QuickLookFramework (5.0 - 622.3) <AB6CCD09-ECDF-3F01-9C42-34B37DDCF12D> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff937a3000 -     0x7fff937a6fff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff937f3000 -     0x7fff93810ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff93811000 -     0x7fff94385ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff94653000 -     0x7fff94682fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff946cd000 -     0x7fff9473afff  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
        0x7fff9473b000 -     0x7fff9476afd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff9476b000 -     0x7fff94b9effb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff94bd1000 -     0x7fff94bd2fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
        0x7fff94bd3000 -     0x7fff94bfdff7  libsandbox.1.dylib (278.10) <B4183FA8-F7E2-3301-8BF9-0EEFB793A5D5> /usr/lib/libsandbox.1.dylib
        0x7fff94c26000 -     0x7fff94c89ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff94c8a000 -     0x7fff94d71ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff94d7f000 -     0x7fff94eafff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff94eb0000 -     0x7fff94ee5ffc  com.apple.LDAPFramework (2.4.28 - 194.5) <7E31A674-C6AB-33BE-BD5E-F5E3C6E22894> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff94ee6000 -     0x7fff94fc5fff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff94fc8000 -     0x7fff95050ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff95092000 -     0x7fff95093fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff950c5000 -     0x7fff950d0fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff9512e000 -     0x7fff9512efff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff9512f000 -     0x7fff95154ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff9518a000 -     0x7fff95194ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff95195000 -     0x7fff951c1fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff9544b000 -     0x7fff954beffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    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: 1275
        thread_create: 3
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=255.8M resident=181.2M(71%) swapped_out_or_unallocated=74.6M(29%)
    Writable regions: Total=80.9M written=14.1M(17%) resident=15.4M(19%) swapped_out=0K(0%) unallocated=65.5M(81%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG shared images                    140K
    Kernel Alloc Once                     4K
    MALLOC                             63.4M
    MALLOC (admin)                       32K
    Memory Tag 242                       12K
    STACK GUARD                        56.0M
    Stack                              11.1M
    VM_ALLOCATE                         348K
    __DATA                             35.3M
    __IMAGE                             528K
    __LINKEDIT                         67.9M
    __TEXT                            187.9M
    __UNICODE                           544K
    mapped file                        40.1M
    shared memory                         4K
    ===========                      =======
    TOTAL                             463.3M
    Model: MacBookPro6,2, BootROM MBP61.0057.B0F, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f17
    Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
    Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x802C, 0x31364A53463235363634485A2D3147314631
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Hitachi HTS545032B9SA02, 320.07 GB
    USB Device: Hub
    USB Device: IR Receiver
    USB Device: Built-in iSight
    USB Device: Hub
    USB Device: BRCM2070 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Internal Memory Card Reader
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus:
    I have no idea how to fix it.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post other kinds of diagnostic report — they're very long and not helpful.

  • Cant open Safari, AppStore. Error Message "Safari quit unexpectedly while using the WebKit2 plug-in." Please help

    Help me out guys why is this doing this? I just downloaded Maverick a couple days ago. Today I noticed Safari was really erratic, running fast one webpage then the next very slowwwwwwwww loading or not loading a page at all. Sometimes reloading worked sometimes not. I ran a test a speedtest.net, this came back with 33mbps download and 10mbps upload over my home wifi. So I restarted my mac (mid June 2012 MBP) I believe this is the first time I have restarted it since I installed maverick. Now I cant open Safari or Appstore I get the message "Safari quit unexpectedly while using the WebKit2 plug-in." immediately when I try to open these. I have the error report if that helps:
    Process:        Safari [709]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:        7.0 (9537.71)
    Build Info:      WebBrowser-7537071000000000~3
    Code Type:      X86-64 (Native)
    Parent Process:  launchd [162]
    Responsible:    Safari [709]
    User ID:        501
    PlugIn Path:      /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    PlugIn Identifier: com.apple.WebKit2
    PlugIn Version:    9537 (9537.71)
    Date/Time:      2013-11-09 14:35:23.384 -0800
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  502E1150-8386-DCBE-C9DB-1915D0B9BDD8
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (Code Signature Invalid)
    Exception Codes: 0x0000000000000032, 0x00007fff740dd5b8
    VM Regions Near 0x7fff740dd5b8:
        __DATA                00007fff740da000-00007fff740db000 [    4K] rw-/rwx SM=COW  /usr/lib/system/libsystem_m.dylib
    --> __DATA                00007fff740db000-00007fff740f7000 [  112K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        __DATA                00007fff740f7000-00007fff740fa000 [  12K] rw-/rwx SM=COW  /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0  com.apple.WebKit2              0x00007fff8778e9e0 DYLD-STUB$$WebCore::RunLoop::initializeMainRunLoop() + 0
    1  com.apple.WebKit2              0x00007fff875f903f WKContextCreateWithInjectedBundlePath + 21
    2  com.apple.Safari.framework    0x00007fff8da4bf5d Safari::WK::Context::create(Safari::WK::String const&) + 17
    3  com.apple.Safari.framework    0x00007fff8d94ffbf Safari::Application::initializeProcessContext() + 99
    4  com.apple.Safari.framework    0x00007fff8d946423 +[AppController initialize] + 278
    5  libobjc.A.dylib                0x00007fff8a99d371 _class_initialize + 645
    6  libobjc.A.dylib                0x00007fff8a9a9254 lookUpImpOrForward + 170
    7  libobjc.A.dylib                0x00007fff8a99c169 objc_msgSend + 233
    8  com.apple.AppKit              0x00007fff9006160d -[NSCustomObject nibInstantiate] + 89
    9  com.apple.AppKit              0x00007fff90061550 -[NSIBObjectData instantiateObject:] + 309
    10  com.apple.AppKit              0x00007fff90060845 -[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:] + 413
    11  com.apple.AppKit              0x00007fff900555fe loadNib + 327
    12  com.apple.AppKit              0x00007fff90054b9c +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 288
    13  com.apple.AppKit              0x00007fff9005498c -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 197
    14  com.apple.AppKit              0x00007fff9005477b +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 357
    15  com.apple.AppKit              0x00007fff90050617 NSApplicationMain + 448
    16  com.apple.Safari.framework    0x00007fff8db6976d SafariMain + 267
    17  libdyld.dylib                  0x00007fff90e2f5fd start + 1
    Thread 1:
    0  libsystem_kernel.dylib        0x00007fff86225e6a __workq_kernreturn + 10
    1  libsystem_pthread.dylib        0x00007fff893c1f08 _pthread_wqthread + 330
    2  libsystem_pthread.dylib        0x00007fff893c4fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0  libsystem_kernel.dylib        0x00007fff86226662 kevent64 + 10
    1  libdispatch.dylib              0x00007fff8516543d _dispatch_mgr_invoke + 239
    2  libdispatch.dylib              0x00007fff85165152 _dispatch_mgr_thread + 52
    Thread 3:
    0  libsystem_kernel.dylib        0x00007fff86225e6a __workq_kernreturn + 10
    1  libsystem_pthread.dylib        0x00007fff893c1f08 _pthread_wqthread + 330
    2  libsystem_pthread.dylib        0x00007fff893c4fb9 start_wqthread + 13
    Thread 4:
    0  libsystem_kernel.dylib        0x00007fff86225e6a __workq_kernreturn + 10
    1  libsystem_pthread.dylib        0x00007fff893c1f08 _pthread_wqthread + 330
    2  libsystem_pthread.dylib        0x00007fff893c4fb9 start_wqthread + 13
    Thread 5:
    0  libsystem_kernel.dylib        0x00007fff86225e6a __workq_kernreturn + 10
    1  libsystem_pthread.dylib        0x00007fff893c1f08 _pthread_wqthread + 330
    2  libsystem_pthread.dylib        0x00007fff893c4fb9 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff57615450  rcx: 0x00007fff75d913a0  rdx: 0x00006080000861d8
      rdi: 0x00007fff73edfe58  rsi: 0x00007fff86090430  rbp: 0x00007fff57615330  rsp: 0x00007fff57615308
      r8: 0x00007fff73ee3c20  r9: 0x2f730a5f9dd87707  r10: 0x00007f89ec802de0  r11: 0xffff8001b11a4c08
      r12: 0x00007fff755e46d0  r13: 0x000060800000b6e0  r14: 0x00000001087a6238  r15: 0x00007fff57615348
      rip: 0x00007fff8778e9e0  rfl: 0x0000000000010202  cr2: 0x00007fff740dd5b8
    Logical CPU:    2
    Error Code:      0x00000004
    Trap Number:    14
    Binary Images:
          0x1085ea000 -        0x1085eaffd  com.apple.Safari (7.0 - 9537.71) <1FBFDDAA-B0FF-30F5-B819-9175B219593D> /Applications/Safari.app/Contents/MacOS/Safari
        0x7fff6ce65000 -    0x7fff6ce98817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff83905000 -    0x7fff839ecff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff839ed000 -    0x7fff83a51ff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff83a52000 -    0x7fff83beeff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff83c79000 -    0x7fff84ac5ff5  com.apple.WebCore (9537 - 9537.70) <7A90E9D3-4F26-3049-9C96-C6B8CB1395C8> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff84ad6000 -    0x7fff84f09ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff84f0a000 -    0x7fff84f13fff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8507e000 -    0x7fff850a2fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff850a3000 -    0x7fff850afff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff850b0000 -    0x7fff850e1ff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
        0x7fff850e2000 -    0x7fff850ecff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff850fd000 -    0x7fff85161ff3  com.apple.datadetectorscore (5.0 - 354.0) <9ACF24B8-3268-3134-A5BC-D72C9371A195> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff85162000 -    0x7fff8517cfff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff8517d000 -    0x7fff8526cfff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff852a7000 -    0x7fff852c0ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff852c1000 -    0x7fff852cdff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff852ce000 -    0x7fff852f5ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
        0x7fff852f6000 -    0x7fff854aeff3  libicucore.A.dylib (511.25) <3ED7B656-416E-3071-AEC8-E85C90232F78> /usr/lib/libicucore.A.dylib
        0x7fff85744000 -    0x7fff8575fff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
        0x7fff85965000 -    0x7fff8596bff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff8596c000 -    0x7fff859a4ff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff859a5000 -    0x7fff859c3ff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff859c4000 -    0x7fff859d5ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff85a48000 -    0x7fff85a77ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff85a82000 -    0x7fff85a9efff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff85aac000 -    0x7fff85b6fff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff85b70000 -    0x7fff85c61ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff85c62000 -    0x7fff85c73ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff85da8000 -    0x7fff85db5ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff85db6000 -    0x7fff85e45ff7  com.apple.Metadata (10.7.0 - 800.12) <04486C95-3E49-36C4-89B6-925E925BB417> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff85e46000 -    0x7fff85e98fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff85e99000 -    0x7fff8620fffa  com.apple.JavaScriptCore (9537 - 9537.65) <7E76880C-832E-385B-9591-ACCF57A68385> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff86210000 -    0x7fff8622cff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
        0x7fff863af000 -    0x7fff86493fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8658c000 -    0x7fff8696dffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8696e000 -    0x7fff86975ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
        0x7fff86976000 -    0x7fff86ae4ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86ae5000 -    0x7fff86aecfff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff875c7000 -    0x7fff875f6fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff875f7000 -    0x7fff877e6ffc  com.apple.WebKit2 (9537 - 9537.71) <B8FFCE39-9DC6-304E-953A-0BAFDCD19D2F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
        0x7fff878b9000 -    0x7fff879befff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff879e6000 -    0x7fff87a3eff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff87a3f000 -    0x7fff87aaeff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff87ab8000 -    0x7fff87ab8fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff87ae0000 -    0x7fff87ae3fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff87d3f000 -    0x7fff87d5cff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff87dc2000 -    0x7fff87dc2fff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff87e87000 -    0x7fff87e91fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff88202000 -    0x7fff88204ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
        0x7fff88520000 -    0x7fff8854ffff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8857c000 -    0x7fff885aaff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff885b6000 -    0x7fff885bbff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
        0x7fff885bc000 -    0x7fff888bbfff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff88958000 -    0x7fff889cffff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff889d0000 -    0x7fff889f8ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff88b13000 -    0x7fff88bd5ff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88bd6000 -    0x7fff88bdbfff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff88bdc000 -    0x7fff88bdcfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff88bdd000 -    0x7fff88c1bff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff88e7e000 -    0x7fff88e96ff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff88e97000 -    0x7fff88e9afff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff88e9b000 -    0x7fff88e9cff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
        0x7fff88e9d000 -    0x7fff88edfff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff892bc000 -    0x7fff892d7ff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff893bf000 -    0x7fff893c6ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
        0x7fff893c7000 -    0x7fff893f1ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff893f2000 -    0x7fff894bdfff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff894be000 -    0x7fff8978cff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff897a3000 -    0x7fff897ccfff  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
        0x7fff897cd000 -    0x7fff89826fff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff898c1000 -    0x7fff898d3ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff898e6000 -    0x7fff898eafff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
        0x7fff89972000 -    0x7fff899b9ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
        0x7fff899c8000 -    0x7fff899ccff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff89a0a000 -    0x7fff89a0ffff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff89a10000 -    0x7fff89a1aff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff89a1e000 -    0x7fff89a5dfff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff89a5e000 -    0x7fff89a5fff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff89a8f000 -    0x7fff89ad0fff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff89b07000 -    0x7fff89b07fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff89cc9000 -    0x7fff89d10fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff89d50000 -    0x7fff89d58ff7  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
        0x7fff89d59000 -    0x7fff8a043fff  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <21324540-8B84-3333-ADB8-D3D5181D4639> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8a0a7000 -    0x7fff8a0a8ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8a1a6000 -    0x7fff8a219ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8a21a000 -    0x7fff8a225fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff8a591000 -    0x7fff8a5b5ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8a5b6000 -    0x7fff8a6e6ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a6e7000 -    0x7fff8a991ffd  com.apple.HIToolbox (2.1 - 695) <C4DE35FF-D0AC-35C3-A7E6-F54CD153825C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff8a992000 -    0x7fff8a996ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8a997000 -    0x7fff8ab44f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
        0x7fff8ab45000 -    0x7fff8ab46fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8ab9f000 -    0x7fff8acd4ffa  com.apple.WebKit (9537 - 9537.71) <8A07478D-B2CA-3724-81E4-ADC10E1AD3EA> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8acd5000 -    0x7fff8acd7fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8acd8000 -    0x7fff8acf3ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff8ad3e000 -    0x7fff8adc7fff  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
        0x7fff8adc8000 -    0x7fff8ae48fff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8ae49000 -    0x7fff8ae57fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8ae5f000 -    0x7fff8aee8ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff8af43000 -    0x7fff8af47fff  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
        0x7fff8af48000 -    0x7fff8afa3ffb  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
        0x7fff8afc6000 -    0x7fff8afc6ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8b275000 -    0x7fff8b284ff8  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
        0x7fff8b329000 -    0x7fff8b387ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff8b481000 -    0x7fff8b482fff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
        0x7fff8b49b000 -    0x7fff8b4d5ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8b4d6000 -    0x7fff8b4d8fff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b4d9000 -    0x7fff8b721fff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8b724000 -    0x7fff8b736fff  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
        0x7fff8b737000 -    0x7fff8b737fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8b738000 -    0x7fff8b73aff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff8b73b000 -    0x7fff8b829fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8b82d000 -    0x7fff8bb01fc7  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
        0x7fff8bb02000 -    0x7fff8bb06ff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
        0x7fff8bb07000 -    0x7fff8bc77ff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8bc78000 -    0x7fff8bc78ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8bc7f000 -    0x7fff8bcecfff  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
        0x7fff8bee7000 -    0x7fff8bef4fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff8c344000 -    0x7fff8c347fff  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
        0x7fff8c36a000 -    0x7fff8c372fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8c3ba000 -    0x7fff8ccd605f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8ccd7000 -    0x7fff8cda0fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8cda1000 -    0x7fff8cdeffff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8d315000 -    0x7fff8d3c5ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8d3c6000 -    0x7fff8d430ff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8d575000 -    0x7fff8d65ffff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8d660000 -    0x7fff8d8b8ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8d8b9000 -    0x7fff8d8c4fff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
        0x7fff8d8c5000 -    0x7fff8d8ceff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8d93d000 -    0x7fff8de3dffb  com.apple.Safari.framework (9537 - 9537.71) <C27DBF3C-7BE7-3422-9081-DE09461F9B62> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff8de3e000 -    0x7fff8de67ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
        0x7fff8df58000 -    0x7fff8dfb7fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8dfb8000 -    0x7fff8dfbffff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8e01d000 -    0x7fff8e01efff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8e046000 -    0x7fff8e093ff2  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
        0x7fff8e094000 -    0x7fff8e0a1ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8e103000 -    0x7fff8e11bff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8e11c000 -    0x7fff8e26fff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8e3d7000 -    0x7fff8e3d8ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8e3db000 -    0x7fff8e400ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8eba1000 -    0x7fff8ebb8fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8ebb9000 -    0x7fff8ebe9fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8ec30000 -    0x7fff8ec38ff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff8ec39000 -    0x7fff8ec8aff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8ec91000 -    0x7fff8ec93ff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8ec94000 -    0x7fff8ec9eff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8f457000 -    0x7fff8f4a5fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
        0x7fff8f4a6000 -    0x7fff8f4cbff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8f4e8000 -    0x7fff8f4e9ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8f918000 -    0x7fff8f944fff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8f945000 -    0x7fff8f952ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8f953000 -    0x7fff8f9b9fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8f9c5000 -    0x7fff8f9d0ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8f9fb000 -    0x7fff8fa02ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
        0x7fff90013000 -    0x7fff90013ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff90014000 -    0x7fff9004dff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff9004e000 -    0x7fff90bc2ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff90c2a000 -    0x7fff90c6fff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff90c70000 -    0x7fff90c71ff7  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
        0x7fff90c72000 -    0x7fff90c7bfff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff90c9b000 -    0x7fff90cb4ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff90cb5000 -    0x7fff90cdcffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff90cdd000 -    0x7fff90cdffff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff90ce0000 -    0x7fff90d6cff7  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
        0x7fff90d90000 -    0x7fff90df3ff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff90e2c000 -    0x7fff90e2fff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff90e30000 -    0x7fff90e30fff  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
        0x7fff90e31000 -    0x7fff90e84fff  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
        0x7fff90ed8000 -    0x7fff90ee0ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff90ef1000 -    0x7fff90ef5fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
        0x7fff90ef6000 -    0x7fff90ef9ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff90f08000 -    0x7fff910edff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff910ee000 -    0x7fff912a9ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0-9AF3B88C5C8E> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff912d3000 -    0x7fff912e3fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff912e4000 -    0x7fff912e5fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 760
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=182.4M resident=122.4M(67%) swapped_out_or_unallocated=60.0M(33%)
    Writable regions: Total=1.1G written=2796K(0%) resident=2992K(0%) swapped_out=0K(0%) unallocated=1.1G(100%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG shared images                      140K
    JS JIT generated code                  8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    Kernel Alloc Once                      8K
    MALLOC                              45.2M
    MALLOC (admin)                        32K
    STACK GUARD                          56.0M
    Stack                                10.1M
    VM_ALLOCATE                          348K
    WebKit Malloc                        1232K
    __DATA                              23.2M
    __IMAGE                              528K
    __LINKEDIT                          65.4M
    __TEXT                              117.0M
    __UNICODE                            544K
    mapped file                          32.7M
    shared memory                          4K
    ===========                        =======
    TOTAL                                1.3G
    TOTAL, minus reserved VM space      352.5M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i5, 2.5 GHz, 16 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x859B, 0x435438473353313630424D2E4D3136464444
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x859B, 0x435438473353313630424D2E4D3136464444
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.0f6 12982, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB
    Serial ATA Device: MATSHITADVD-R  UJ-8A8
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    The problem has been fixed with the most recent OS X software update.

  • Impossible to open a website, Crash + Error message: Safari quit unexpectedly while using the trf.dylib plug-in.

    Hi everybody,
    I cannot open the following URL: http://www.mmamania.com/ , it crashes and I have the following error message:  Safari quit unexpectedly while using the trf.dylib plug-in. I do not get it because I have not installed any plug in or have not installed any software update. Can you please help me guys? I am going to post the report in another post.
    Thanks.

    Here is the report from the error message:
    Process:         Safari [1261]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0.5 (9537.77.4)
    Build Info:      WebBrowser-7537077004000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [148]
    Responsible:     Safari [1261]
    User ID:         501
    PlugIn Path:       /Library/Rapport/*/trf.dylib
    PlugIn Identifier: trf.dylib
    PlugIn Version:    ??? (1)
    Date/Time:       2014-08-14 13:58:43.974 +0100
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  B10C4646-B7B1-9EA5-D967-01AB20D4A7D5
    Crashed Thread:  3
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    External Modification Warnings:
    Thread creation by external task.
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.sidetree.Translate-S64NDGV2C5 (6 - 1.1.1) Translate
    org.adblockplus.adblockplussafari-GRYYZR985A (1.8.3 - 1.8.3) Adblock Plus
    com.spigot.safari.searchme-B652554955 (1.3 - 1.3) Searchme
    com.spigot.safari.amazonshopassist-B652554955 (1.1 - 1.1) Amazon Shopping Assistant
    com.spigot.safari.ebayshopassist-B652554955 (1.1 - 1.1) Ebay Shopping Assistant
    com.spigot.safari.slicksavings-B652554955 (2.0 - 2.0) Slick Savings
    terminating with uncaught exception of type std::logic_error: basic_string::_S_construct NULL not valid
    abort() called
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.JavaScriptCore       0x00007fff87e35689 JSC::JSValue::get(JSC::ExecState*, JSC::PropertyName, JSC::PropertySlot&) const + 233
    1   com.apple.JavaScriptCore       0x00007fff87f46034 operationGetById + 100
    2   ???                           0x00000001004db4e7 0 + 4300059879
    3   com.apple.JavaScriptCore       0x00007fff87e0e443 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    4   com.apple.JavaScriptCore       0x00007fff87e0e1e5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    5   com.apple.JavaScriptCore       0x00007fff87fe8443 JSC::boundFunctionCall(JSC::ExecState*) + 547
    6   ???                           0x0000000100313345 0 + 4298191685
    7   com.apple.JavaScriptCore       0x00007fff87e0e443 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 595
    8   com.apple.JavaScriptCore       0x00007fff87e0e1e5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    9   com.apple.JavaScriptCore       0x00007fff87fe8443 JSC::boundFunctionCall(JSC::ExecState*) + 547
    10  com.apple.JavaScriptCore       0x00007fff87e0e45e JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 622
    11  com.apple.JavaScriptCore       0x00007fff87e0e1e5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    12  com.apple.JavaScriptCore       0x00007fff87fe8443 JSC::boundFunctionCall(JSC::ExecState*) + 547
    13  com.apple.JavaScriptCore       0x00007fff87e0e45e JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 622
    14  com.apple.JavaScriptCore       0x00007fff87e0e1e5 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 69
    15  com.apple.WebCore             0x00007fff8b8b983a WebCore::JSMainThreadExecState::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 154
    16  com.apple.WebCore             0x00007fff8b8fdf82 WebCore::ScheduledAction::executeFunctionInContext(JSC::JSGlobalObject*, JSC::JSValue, WebCore::ScriptExecutionContext*) + 450
    17  com.apple.WebCore             0x00007fff8b8fdce7 WebCore::ScheduledAction::execute(WebCore::Document*) + 151
    18  com.apple.WebCore             0x00007fff8b8fda70 WebCore::DOMTimer::fired() + 304
    19  com.apple.WebCore             0x00007fff8b6be21f WebCore::ThreadTimers::sharedTimerFiredInternal() + 175
    20  com.apple.WebCore             0x00007fff8b6be0fa WebCore::timerFired(__CFRunLoopTimer*, void*) + 58
    21  com.apple.CoreFoundation       0x00007fff895823e4 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    22  com.apple.CoreFoundation       0x00007fff89581f1f __CFRunLoopDoTimer + 1151
    23  com.apple.CoreFoundation       0x00007fff895f35aa __CFRunLoopDoTimers + 298
    24  com.apple.CoreFoundation       0x00007fff8953d6a5 __CFRunLoopRun + 1525
    25  com.apple.CoreFoundation       0x00007fff8953ce75 CFRunLoopRunSpecific + 309
    26  com.apple.HIToolbox           0x00007fff896fca0d RunCurrentEventLoopInMode + 226
    27  com.apple.HIToolbox           0x00007fff896fc7b7 ReceiveNextEventCommon + 479
    28  com.apple.HIToolbox           0x00007fff896fc5bc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    29  com.apple.AppKit               0x00007fff9305324e _DPSNextEvent + 1434
    30  com.apple.AppKit               0x00007fff9305289b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    31  com.apple.Safari.framework     0x00007fff8d879d00 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    32  com.apple.AppKit               0x00007fff9304699c -[NSApplication run] + 553
    33  com.apple.AppKit               0x00007fff93031783 NSApplicationMain + 940
    34  com.apple.Safari.framework     0x00007fff8da4bc8d SafariMain + 267
    35  libdyld.dylib                 0x00007fff9423e5fd start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff949a8662 kevent64 + 10
    1   libdispatch.dylib             0x00007fff896b6421 _dispatch_mgr_invoke + 239
    2   libdispatch.dylib             0x00007fff896b6136 _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff949a3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff949a2d18 mach_msg + 64
    2   RapportUtil1.dylib             0x00000001422214c7 exception_handler::exception_messages_handler(void*) + 167
    3   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    4   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    5   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 3 Crashed:
    0   libsystem_kernel.dylib         0x00007fff949a7866 __pthread_kill + 10
    1   libsystem_pthread.dylib       0x00007fff94ef735c pthread_kill + 92
    2   libsystem_c.dylib             0x00007fff882cbb1a abort + 125
    3   libc++abi.dylib               0x00007fff9199bf31 abort_message + 257
    4   libc++abi.dylib               0x00007fff919c193a default_terminate_handler() + 240
    5   libobjc.A.dylib               0x00007fff9424d322 _objc_terminate() + 124
    6   libc++abi.dylib               0x00007fff919bf1d1 std::__terminate(void (*)()) + 8
    7   libc++abi.dylib               0x00007fff919bec5b __cxa_throw + 124
    8   libstdc++.6.dylib             0x00007fff88635923 std::__throw_logic_error(char const*) + 85
    9   libstdc++.6.dylib             0x00007fff88654b30 char* std::string::_S_construct<char const*>(char const*, char const*, std::allocator<char> const&, std::forward_iterator_tag) + 140
    10  libstdc++.6.dylib             0x00007fff8865d6de std::basic_string<char, std::char_traits<char>, std::allocator<char> >::basic_string(char const*, std::allocator<char> const&) + 56
    11  trf.dylib                     0x000000014203186e wstring2string(std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> > const&) + 160
    12  RapportDaishi.dylib           0x0000000141bedf3b web_page_monitor::handle_get_document_response(char const*) + 265
    13  RapportDaishi.dylib           0x0000000141be75ed kobo_daishi_java_script_result + 573
    14  RapportDaishi.dylib           0x0000000141bf5216 _Xkobo_daishi_java_script_result + 166
    15  RapportDaishi.dylib           0x0000000141bf3e22 kobo_daishi_mig_server + 146
    16  libsystem_kernel.dylib         0x00007fff949a3599 mach_msg_server + 422
    17  RapportDaishi.dylib           0x0000000141bf5a03 mig_rpc_server::server_working_thread(void*) + 67
    18  libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    19  libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    20  libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff949a7a3a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff882eadc0 nanosleep + 200
    2   libsystem_c.dylib             0x00007fff882eacb2 usleep + 54
    3   RapportUtil1.dylib             0x000000014216de18 bp_heartbeat_thread + 392
    4   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff949a7a3a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff882eadc0 nanosleep + 200
    2   libsystem_c.dylib             0x00007fff882eacb2 usleep + 54
    3   RapportDaishi.dylib           0x0000000141bea7e0 active_monitor_finish_thread(void*) + 160
    4   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.WebCore             0x00007fff8b69d79b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore             0x00007fff8b69a32f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 7:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff949a3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff949a2d18 mach_msg + 64
    2   com.apple.QuartzCore           0x00007fff8ec66377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore           0x00007fff8ec662ad thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff949a3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff949a2d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8953df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8953d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8953ce75 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation           0x00007fff8d493967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation           0x00007fff8d49376b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff949a79aa __select + 10
    1   com.apple.CoreFoundation       0x00007fff89589a03 __CFSocketManager + 867
    2   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    3   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    4   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 10:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9116 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore       0x00007fff87da8c35 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff87da95c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff87da95c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 13:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff87da95c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 15:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da8cc5 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    5   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    6   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff87da95c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 17:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff87da95c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 18:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da9737 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore       0x00007fff87da95c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff949a3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff949a2d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8953df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8953d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8953ce75 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit               0x00007fff931f305e _NSEventThread + 144
    6   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 24:: WebCore: Database
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da90dd ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore             0x00007fff8bcb0848 ***::PassOwnPtr<WebCore::DatabaseTask> ***::MessageQueue<WebCore::DatabaseTask>::waitForMessageFilteredWithTimeout<boo l (WebCore::DatabaseTask*)>(***::MessageQueueWaitResult&, bool (&)(WebCore::DatabaseTask*), double) + 168
    4   com.apple.WebCore             0x00007fff8bcafb1c WebCore::DatabaseThread::databaseThread() + 172
    5   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 25:: WebCore: LocalStorage
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da90dd ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore             0x00007fff8c2594d8 ***::PassOwnPtr<***::Function<void ()> > ***::MessageQueue<***::Function<void ()> >::waitForMessageFilteredWithTimeout<bool (***::Function<void ()>*)>(***::MessageQueueWaitResult&, bool (&)(***::Function<void ()>*), double) + 168
    4   com.apple.WebCore             0x00007fff8c258ba3 WebCore::StorageThread::threadEntryPoint() + 179
    5   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 26:: WebCore: LocalStorage
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore       0x00007fff87da90dd ***::ThreadCondition::timedWait(***::Mutex&, double) + 61
    3   com.apple.WebCore             0x00007fff8c2594d8 ***::PassOwnPtr<***::Function<void ()> > ***::MessageQueue<***::Function<void ()> >::waitForMessageFilteredWithTimeout<bool (***::Function<void ()>*)>(***::MessageQueueWaitResult&, bool (&)(***::Function<void ()>*), double) + 168
    4   com.apple.WebCore             0x00007fff8c258ba3 WebCore::StorageThread::threadEntryPoint() + 179
    5   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    6   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    7   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    8   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 27:: Safari: SafeBrowsingManager
    0   libsystem_kernel.dylib         0x00007fff949a3a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff949a2d18 mach_msg + 64
    2   com.apple.CoreFoundation       0x00007fff8953df15 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation       0x00007fff8953d539 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation       0x00007fff8953ce75 CFRunLoopRunSpecific + 309
    5   com.apple.Safari.framework     0x00007fff8d9fb323 Safari::MessageRunLoop::threadBody() + 119
    6   com.apple.JavaScriptCore       0x00007fff87d9df5f ***::wtfThreadEntryPoint(void*) + 15
    7   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    8   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    9   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 29:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff949a7716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib       0x00007fff94ef8c3b _pthread_cond_wait + 727
    2   trf.dylib                     0x0000000142007732 posix_waitable_condition::wait(int) + 262
    3   trf.dylib                     0x000000014203a85e async_tasks_scheduler::work() + 612
    4   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    5   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    6   libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    7   libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 31:
    0   libsystem_kernel.dylib         0x00007fff949a7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff94ef7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff94efafb9 start_wqthread + 13
    Thread 32:
    0   libsystem_kernel.dylib         0x00007fff949a7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff94ef7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff94efafb9 start_wqthread + 13
    Thread 33:
    0   libsystem_kernel.dylib         0x00007fff949a7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff94ef7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff94efafb9 start_wqthread + 13
    Thread 34:
    0   libsystem_kernel.dylib         0x00007fff949a7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff94ef7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff94efafb9 start_wqthread + 13
    Thread 35:
    0   libsystem_kernel.dylib         0x00007fff949a7a3a __semwait_signal + 10
    1   libsystem_c.dylib             0x00007fff882eadc0 nanosleep + 200
    2   libsystem_c.dylib             0x00007fff882eacb2 usleep + 54
    3   RapportDaishi.dylib           0x0000000141bec164 web_page_monitor::wait_for_document() + 120
    4   RapportDaishi.dylib           0x0000000141bec29c web_page_monitor::prepare_document() + 222
    5   RapportDaishi.dylib           0x0000000141bed6a6 web_page_monitor::async_finish_document_load() + 140
    6   RapportUtil1.dylib             0x00000001421f1ab2 osx_async_tasks_scheduler::execute_task(tasks_scheduler::task*) + 66
    7   trf.dylib                     0x000000014203a81e async_tasks_scheduler::work() + 548
    8   RapportUtil1.dylib             0x00000001421f1b8a posix_async_tasks_scheduler::async_task_thread_wrapper(void*) + 10
    9   libsystem_pthread.dylib       0x00007fff94ef6899 _pthread_body + 138
    10  libsystem_pthread.dylib       0x00007fff94ef672a _pthread_start + 137
    11  libsystem_pthread.dylib       0x00007fff94efafc9 thread_start + 13
    Thread 36:
    0   libsystem_kernel.dylib         0x00007fff949a7e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff94ef7f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib       0x00007fff94efafb9 start_wqthread + 13
    Thread 3 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00000001425af000  rcx: 0x00000001425ae5c8  rdx: 0x0000000000000000
      rdi: 0x0000000000004f03  rsi: 0x0000000000000006  rbp: 0x00000001425ae5f0  rsp: 0x00000001425ae5c8
       r8: 0x00007fff919c292c   r9: 0x00007fff882f38d0  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00000001425ae750  r13: 0x0000600000304f18  r14: 0x0000000000000006  r15: 0x00000001425ae630
      rip: 0x00007fff949a7866  rfl: 0x0000000000000206  cr2: 0x00007fff94efc1ad
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x100046000 -        0x100046ffd  com.apple.Safari (7.0.5 - 9537.77.4) <1798D677-1B85-3638-AB90-E5AD749F86E7> /Applications/Safari.app/Contents/MacOS/Safari
           0x1000ed000 -        0x1000f3ff7  libCGXCoreImage.A.dylib (599.25.10.1) <1AB1B2B2-55A9-3780-BCB9-1B3CE375D739> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCo reImage.A.dylib
           0x1000fa000 -        0x1000fafeb +cl_kernels (???) <B0BBC7E0-E296-4C6A-8462-31EF7E24E844> cl_kernels
           0x141991000 -        0x141994fff  libspindump.dylib (161.2) <E16E9BFB-8F34-366F-BE10-48993F5843BC> /usr/lib/libspindump.dylib
           0x14199a000 -        0x14199bfff  com.apple.AddressBook.LocalSourceBundle (8.0 - 1371) <B3C35936-EE5F-3C40-95FF-2AE6C5D35638> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x1419a0000 -        0x1419a4ff7  com.apple.DirectoryServicesSource (8.0 - 1371) <AF6429A6-608F-36B2-BC58-51A0C2B17C31> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x141a63000 -        0x141a6bff3  libCGCMS.A.dylib (599.25.10.1) <9A4FAAD7-1C16-33F8-A615-1DCAB0546E31> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x141ad8000 -        0x141ad8fff  com.apple.WebInspectorUI (9537 - 9537.77.1) <AE060E19-150A-3194-A45F-0599B21CF702> /System/Library/PrivateFrameworks/WebInspectorUI.framework/Versions/A/WebInspec torUI
           0x141adc000 -        0x141b5afef +librooksbas.dylib (1) <F5F49CE8-16BB-A963-3A43-3A8421DAC47A> /Library/Rapport/*/librooksbas.dylib
           0x141bc6000 -        0x141bd3fff +librooksmce.dylib (1) <89DC3FBF-981E-1DC2-733C-64D22DA7A616> /Library/Rapport/*/librooksmce.dylib
           0x141be3000 -        0x141c0bfff +RapportDaishi.dylib (1) <D4540294-5AF5-312F-9DB8-4C9DABC5CE53> /Library/Rapport/*/RapportDaishi.dylib
           0x142003000 -        0x1420a2fff +trf.dylib (1) <B4C4BD32-39F4-B2F3-255D-09EB1AD1A686> /Library/Rapport/*/trf.dylib
           0x142156000 -        0x1423fdff7 +RapportUtil1.dylib (1) <5C1193A5-FAC6-1739-E4EE-F6AD9666ECB8> /Library/Rapport/*/RapportUtil1.dylib
           0x142a18000 -        0x142a2dff3  com.apple.WebInspector (9537 - 9537.77.1) <8D5325D9-EA25-33D1-A3E4-5FAD21CF89DF> /System/Library/PrivateFrameworks/WebInspector.framework/Versions/A/WebInspecto r
           0x142ec0000 -        0x142fb1ff7  com.apple.mobiledevice (710.5 - 710.5) <C250816A-3B97-329D-9F6B-38DACA981CED> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x1431da000 -        0x1431ddffa  libCGXType.A.dylib (599.25.10.1) <9E609F91-BD17-3C51-A877-C80E7183A867> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x143748000 -        0x143770ffb  libRIP.A.dylib (599.25.10.1) <623091DF-5769-3326-90EB-44EFC8087660> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x1438da000 -        0x1438e1fff  com.apple.SyncedDefaults (1.3 - 91.30.1) <26F0AD10-86CC-31A4-899C-097269680E05> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x1438f7000 -        0x1438ffff7  com.apple.xpcobjects (103 - 103) <268F4950-61A2-3A14-9697-C121E1798D18> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
           0x1464b3000 -        0x1464e8fff  com.apple.sociald.Social (87 - 87) <25F8FA83-E8DB-3082-93AC-0868A7B46607> /System/Library/Frameworks/Social.framework/Social
           0x146524000 -        0x14656fff7  com.apple.accounts.AccountsDaemon (113 - 113) <248F6C14-DDEA-3E8F-B016-E760E9B1E599> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
           0x146ce0000 -        0x146ce1ff9 +cl_kernels (???) <3E62E748-4AAB-4DE9-A58D-C90598B438E2> cl_kernels
           0x146ce8000 -        0x146ce9ff0  ATSHI.dylib (363.3) <236B636F-A8E9-37A9-BEF0-7FE68BC58436> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x146cff000 -        0x146de5fef  unorm8_bgra.dylib (2.3.58) <B267C5AB-20A1-3AF9-938D-5F9F9078E4F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x146e37000 -        0x146e38ffa +cl_kernels (???) <5A42AA7E-CBC3-4D0C-8D15-3EDED083E25A> cl_kernels
           0x14734c000 -        0x14734dfe4 +cl_kernels (???) <99254743-BBE9-4287-B6D2-4CD4227B7A2F> cl_kernels
           0x1477f4000 -        0x1477f8ffd  libFontRegistryUI.dylib (127) <57DE4E73-B65B-3712-9815-81018E72501A> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
        0x7fff694a8000 -     0x7fff694db817  dyld (239.4) <042C4CED-6FB2-3B1C-948B-CAF2EE3B9F7A> /usr/lib/dyld
        0x7fff8762b000 -     0x7fff87635ff7  libcsfde.dylib (380) <A5CF6F85-0537-399F-968B-1536B1235E65> /usr/lib/libcsfde.dylib
        0x7fff87636000 -     0x7fff87662fff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff877ca000 -     0x7fff87a5bff7  com.apple.AOSKit (1.06 - 176) <35525B2F-B02F-31FD-A3B2-FD6AE6D32C11> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff87a5c000 -     0x7fff87a8aff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff87bdc000 -     0x7fff87d94ffb  libicucore.A.dylib (511.34) <616A65D6-3F20-3EAB-8CA8-273AD890261C> /usr/lib/libicucore.A.dylib
        0x7fff87d95000 -     0x7fff8810cff6  com.apple.JavaScriptCore (9537 - 9537.77.1) <F588191A-25E6-31AC-A325-B7779DC6D1EC> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff8810d000 -     0x7fff881ecfff  libcrypto.0.9.8.dylib (50) <B95B9DBA-39D3-3EEF-AF43-44608B28894E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff881ed000 -     0x7fff881f5ff7  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
        0x7fff8824a000 -     0x7fff8826efff  com.apple.quartzfilters (1.8.0 - 1.7.0) <39C08086-9866-372F-9420-81F5689149DF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8826f000 -     0x7fff882f8ff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
        0x7fff882f9000 -     0x7fff8862ffff  com.apple.MediaToolbox (1.0 - 1273.54) <CB6F6690-D44C-30B5-93AB-CAB198D51884> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff88630000 -     0x7fff8867eff9  libstdc++.6.dylib (60) <0241E6A4-1368-33BE-950B-D0A175C41F54> /usr/lib/libstdc++.6.dylib
        0x7fff88f43000 -     0x7fff88f9ffff  com.apple.coredav (1.0.1 - 229.6) <6D2B49E8-E81D-36C7-BC24-FD54FA35E5BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff88fe1000 -     0x7fff88fedff7  com.apple.KerberosHelper (4.0 - 1.0) <6D64703B-D7A3-3EF7-89AB-16F7F89333FC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8900a000 -     0x7fff8900bffc  com.apple.SafariServices.framework (9537 - 9537.77.4) <67413E9A-14B6-3404-8493-DACE9E1EE4ED> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
        0x7fff8900c000 -     0x7fff89247fff  com.apple.CalendarPersistence (7.0 - 138.4) <BDD9B054-F274-357F-8343-6F8DAC7B0B36> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff89248000 -     0x7fff89277fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff89282000 -     0x7fff89293fff  com.apple.idsfoundation (10.0 - 1000) <D3E6646B-4118-30D3-B4F7-DA9A28B396E4> /System/Library/PrivateFrameworks/IDSFoundation.framework/Versions/A/IDSFoundat ion
        0x7fff89294000 -     0x7fff892abffa  libAVFAudio.dylib (32.2) <52DA516B-DE79-322C-9E1B-2658019289D7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAu dio.dylib
        0x7fff892ac000 -     0x7fff89318fff  com.apple.framework.IOKit (2.0.1 - 907.100.13) <057FDBA3-56D6-3903-8C0B-849214BF1985> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff89319000 -     0x7fff8931fff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
        0x7fff89320000 -     0x7fff89324ff7  libheimdal-asn1.dylib (323.92.1) <CAE21FFF-5763-399C-B7C5-EEBFFEEF2242> /usr/lib/libheimdal-asn1.dylib
        0x7fff89325000 -     0x7fff89416ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
        0x7fff89417000 -     0x7fff89424ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff89425000 -     0x7fff89463ff7  libGLImage.dylib (9.6.1) <5E02B38C-9F36-39BE-8746-724F0D8BBFC0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff89464000 -     0x7fff89465fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff89466000 -     0x7fff8946efff  libsystem_dnssd.dylib (522.92.1) <17B03FFD-92C5-3282-9981-EBB28B456207> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8946f000 -     0x7fff8947bffb  com.apple.AppleFSCompression (56.92.1 - 1.0) <066255FD-DBD1-3041-8DDA-7AFC41C9096D> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8947c000 -     0x7fff8947dfff  com.apple.AddressBook.ContactsData (8.0 - 1371) <917BFD6E-9489-36FE-BFFD-DA29B0183686> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff8947e000 -     0x7fff894ccff7  com.apple.opencl (2.3.59 - 2.3.59) <B49916BA-1D02-3BA6-9986-5A935A3C009B> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff894cd000 -     0x7fff896b2fff  com.apple.CoreFoundation (6.9 - 855.17) <729BD6DA-1F63-3E72-A148-26F21EBF52BB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff896b3000 -     0x7fff896cdfff  libdispatch.dylib (339.92.1) <C4E4A18D-3C3B-3C9C-8709-A4270D998DE7> /usr/lib/system/libdispatch.dylib
        0x7fff896ce000 -     0x7fff89978ff5  com.apple.HIToolbox (2.1.1 - 698) <26FF0E2C-1CD7-311F-ACF0-84F3D5273AD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff89a76000 -     0x7fff89a91ff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
        0x7fff89a92000 -     0x7fff89abaffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
        0x7fff89c5c000 -     0x7fff89c82ff7  com.apple.iCalendar (7.0 - 162.2) <8715F4AA-3E35-3E36-B085-128C3DC332B1> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
        0x7fff89c96000 -     0x7fff89c96fff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff89dfe000 -     0x7fff89e07ffb  libCGInterfaces.dylib (271) <68EFBEFE-7506-3235-99A2-5B69EDBFD7B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/Resources/libCGInterfaces.dylib
        0x7fff89e08000 -     0x7fff89e24fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
        0x7fff89e25000 -     0x7fff89e3dff7  com.apple.GenerationalStorage (2.0 - 160.3) <64749B08-0212-3AC8-9B49-73D662B09304> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff89e58000 -     0x7fff89f22fff  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
        0x7fff89f23000 -     0x7fff89f87fff  com.apple.datadetectorscore (5.0 - 354.5) <0AE9749A-6BFC-3032-B802-210DF59AEDB0> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff89f88000 -     0x7fff89fe3ffb  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
        0x7fff89fe4000 -     0x7fff89ff1ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff89ff2000 -     0x7fff8a044fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
        0x7fff8a045000 -     0x7fff8a046fff  libsystem_sandbox.dylib (278.11.1) <0D0B13EA-6B7A-3AC8-BE60-B548543BEB77> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8a047000 -     0x7fff8a07fff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8a080000 -     0x7fff8a082fff  libRadiance.dylib (1043) <9813995C-DEAA-3992-8DF8-320E4E4E288B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8a0a5000 -     0x7fff8a0a7fff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8a0a8000 -     0x7fff8a0b0ff7  com.apple.AppleSRP (5.0 - 1) <ABC7F088-1FD5-3768-B9F3-847F355E90B3> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff8a0b1000 -     0x7fff8a182fff  com.apple.QuickLookUIFramework (5.0 - 622.7) <13841701-34C2-353D-868D-3E08D020C90F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8a183000 -     0x7fff8a18ffff  com.apple.CalendarAgentLink (7.0 - 138.2) <D56910F9-5CC0-32D8-BA85-0631240F9B71> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8a190000 -     0x7fff8a461ff4  com.apple.CoreImage (9.4.0) <2C636ECD-0F1A-357C-9EFF-0452476FDDF5> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8a462000 -     0x7fff8a47aff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8a47b000 -     0x7fff8a4abfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff8abfc000 -     0x7fff8ac07fff  libkxld.dylib (2422.110.17) <B6140BAB-0EAF-3E4F-B055-314068056BB4> /usr/lib/system/libkxld.dylib
        0x7fff8ac08000 -     0x7fff8ac4aff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
        0x7fff8ac65000 -     0x7fff8aec2ffa  com.apple.RawCamera.bundle (5.05 - 743) <362EA30F-3B5A-35C4-9455-339B0FDC89C6> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8aec8000 -     0x7fff8aeceff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8aecf000 -     0x7fff8af20fff  com.apple.QuickLookFramework (5.0 - 622.7) <17685CEC-C94B-3F83-ADE1-B24840B35E44> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff8af21000 -     0x7fff8af3dfff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
        0x7fff8af44000 -     0x7fff8b0b2ff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8b0b3000 -     0x7fff8b0b3ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
        0x7fff8b0b4000 -     0x7fff8b13dfff  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
        0x7fff8b13e000 -     0x7fff8b197fff  libTIFF.dylib (1043) <D7CAE68F-6087-3B40-9CB8-EC6DB47BF877> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8b1a1000 -     0x7fff8b1a4fff  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
        0x7fff8b1a5000 -     0x7fff8b1b0ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8b1b1000 -     0x7fff8b1f1ff7  com.apple.CalDAV (7.0 - 155.2) <B96DAB4A-7431-3FD2-971B-726A67F6E004> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
        0x7fff8b1f2000 -     0x7fff8b1f3ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
        0x7fff8b1f4000 -     0x7fff8b21eff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8b242000 -     0x7fff8b24eff7  com.apple.OpenDirectory (10.9 - 173.90.1) <256C265B-7FA6-326D-9F60-18DADF5F3A0E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8b24f000 -     0x7fff8b256ff8  liblaunch.dylib (842.92.1) <A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A> /usr/lib/system/liblaunch.dylib
        0x7fff8b257000 -     0x7fff8b2e3ff7  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
        0x7fff8b683000 -     0x7fff8b694ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
        0x7fff8b695000 -     0x7fff8c4e8ffb  com.apple.WebCore (9537 - 9537.77.4) <9C4E816A-0DAC-31B2-85C3-910164F3E741> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8c4e9000 -     0x7fff8c506ff7  com.apple.framework.Apple80211 (9.4 - 940.60) <043C7CFD-B57B-3F9D-B0FE-CA4B97C43968> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8c507000 -     0x7fff8c542fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8c558000 -     0x7fff8c57dff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8c5b0000 -     0x7fff8c5b8ffb  com.apple.CloudServices (1.0 - 1) <644772DA-9267-376D-AD90-749D6B692566> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
        0x7fff8c5b9000 -     0x7fff8c61bff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <F95E1174-37B7-300C-8ECE-E67A711B6721> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff8c61c000 -     0x7fff8c706fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
        0x7fff8c707000 -     0x7fff8c788fff  com.apple.CoreSymbolication (3.0.1 - 141.0.5) <20E484C4-9F0E-3DF6-BB27-D509859FF57A> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8c789000 -     0x7fff8c814fff  libCoreStorage.dylib (380) <DE9B3F8C-045C-3010-9A25-C8CD72F1066B> /usr/lib/libCoreStorage.dylib
        0x7fff8c815000 -     0x7fff8c815fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8c81d000 -     0x7fff8c84eff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3

  • My Reminders app will not open. When I try to open it, quits and gives me an error message: "Reminders quit unexpectedly while using the CalDAV plug-in." My Reminders is synced with my iPod touch, and it is fine on that. How do I fix it?

    My Reminders app will not open. When I try to open it, it quits and gives me an error message: "Reminders quit unexpectedly while using the CalDAV plug-in." My Reminders is synced with my iPod touch, and it is fine on that. How do I fix it?
    Also, the Calendar is loading very very slowly, and sometimes it quits and gives me the same error message as above.

    The problem has been fixed with the most recent OS X software update.

  • I have Adobe Photoshop Elements 5.0 and am trying to upgrade to 13 - getting error message that "file archive part" of Adobe 13 is missing. When I try to download installers for older products it only goes back to v7, not v5 what to do next?

    I have Adobe Photoshop Elements 5.0 and am trying to upgrade to 13 - getting error message that "file archive part" of Adobe 13 is missing. When I try to download installers for older products it only goes back to v7, not v5 what to do next?

    TDFields you will want to ensure the 7z and exe file are in the same folder/directory.  You can find more details at Find a download link on Adobe.com.

  • After 9.3 update getting error printing to Adobe PDF while converting from Powerpoint to PDF

    That happened after upgrading Acrobat Pro 9.1.2 to 9.2->9.3 on Windows XP sp2 platform. Converting from other Microsoft Office 2003 products is totally normal(Excel, Word) Did anyone came accross and know how to fix that?? We have many users with exactly same issue.

    thanks...figured out my problem!
    Date: Wed, 3 Feb 2010 12:24:29 -0700
    From: [email protected]
    To: [email protected]
    Subject: Re: After 9.3 update getting error printing to Adobe PDF while converting from Powerpoint to PDF
    What happens if you try to print to the Adobe PDF printer?
    >

  • Getting error- Cannot open as archive for CS6 Master suite collection. How to d/l & install?

    I have an account and a license key code. I purchased a new laptop that doesn't have a dvd drive. I want to download CS6 Master Suite Collection but I keep getting error "cannot open as archive"!!! I have already located the d/l files, but they will NOT install. Does anyone know how to get around this problem?

    if you downloaded an exe and 7z, they should both be in the same folder and click (or double click) the exe.
    do NOT manually try to extract the 7z file.
    if that doesn't solve your problem, what file names and extensions did you download and what are their file sizes?

  • Error message: Mail quit unexpectedly while using the AudioToolbox plug-in.

    I am receiving the following error message: Mail quit unexpectedly while using the AudioToolbox plug-in. I would appreciate any advice about what can be done to solve this problem. Thanks much.

    I am receiving the following error message: Mail quit unexpectedly while using the AudioToolbox plug-in. I would appreciate any advice about what can be done to solve this problem. Thanks much.

  • Getting error "Http 404 not found" while accessing CUCM GUI..

    Hi,
    Please help um getting error "Http 404 not found" while accessing CUCM GUI. Yesterday it was running fine bt nw its showing dis error.
    Please find attached screenshot for ur referance.
    Thanks & R's
    Harish

    Hi Aaron,
    I have restarted dat service bt still the issue is persisting.
    Now its showing attached error.
    Thanks and R's
    Harish

  • I'm getting error as adobe Illustrator crashes while loading the multiple pages PDF file. Please help me. Thanks in advance.

    Hi,
    I'm getting error as adobe Illustrator crashes while loading the multiple pages PDF file.
    Please help me. Thanks in advance.

    Hi Monika,
    I have downloaded the script to load the multiple page of pdf file.
    I tried loading the multiple page PDF file via File Menu -> Scripts -> Other Script...
    After executing the script file -> Browse and enter the page number - > OK
    The PDF file is looks like created from word document. There are total 120 pages in this file.
    PDF file size is 20 MB.
    I'm still searching for the solutions. Please help me.
    Thanks,
    Lavprasad

  • Currency "Difference is too large for clearing" when using t-code F-32

    AR Business process is as follows: Invoices are issued.  When payment is received, it is posted using F-26, with reference to customer but no specific invoice. F-32 is then used to match payments against invoices, and clear them.  When trying to clear foreign currency customer items in local currency we receive error message F5263 "Difference is too large for clearing."  We have set tolerance levels at the highest possible amount in OBA4.  Please advise.

    The forum [FPM - General|Enterprise Performance Management (SAP EPM); in which you originally posted your question deals mainly with the financial performance applications otherwise known as Enterprise Performance Management (EPM) carrying the BusinessObjects brand.   Your question pertains to SAP [ERP Financials|SAP ERP Financials; which is covered by another forum.  Therefore your message has been moved.  Please adjust any bookmarks you might have and post to the appropriate area in the future, that way you are assured you will have the right audience reading your posts.
    Thanks and best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Customer Solutions Adoption (CSA) team

Maybe you are looking for

  • HP Laserjet Pro 200 Color - won't print due to lack of memory

    My new HP Laserjet Pro 200 Color printer won't print and gives me an error message saying it has insufficient memory.   How do I delete the memory on my printer so it will print? And how do I change the settings so it quits saving documents in the fu

  • Podcasts dragged to playlists not able to be deleted

    i listen to a lot of podcasts and find older episodes from the site's archives which i drag to playlists on my ipod. i've been noticing that some of these (while playable and visible within the playlist) are not appearing under music while in itunes,

  • IPad Mini 2 available?

    I'm confused... Is the iPad Mini 2 available now? I keep reading articles that today is the launch day. But I'm not sure... Are they now available???

  • WHAT IS THE DEFAULT LOG IN AND PSWD FOR THE ROUTER?

    WHAT IS THE DEFAULT LOG IN AND PSWD FOR THE ROUTER?

  • Run another application

    hello peepz... i was wondering if it is possible to run another application when the user open another. what i mean is when user open applicationA, it will automatically run applicationB. The reason why i need this is because i want to use applicatio